2017-09-22 00:26:38 +02:00
|
|
|
.node circle {
|
|
|
|
fill: #fff;
|
|
|
|
stroke: steelblue;
|
|
|
|
stroke-width: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.node text {
|
|
|
|
font: 12px sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.link {
|
|
|
|
fill: none;
|
|
|
|
stroke: #ccc;
|
|
|
|
stroke-width: 2px;
|
|
|
|
}
|
2017-09-25 15:11:01 +02:00
|
|
|
|
2021-02-04 19:51:43 +01:00
|
|
|
.flashed-messages {
|
|
|
|
position: fixed;
|
|
|
|
top: 5px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2021-04-06 23:34:57 +02:00
|
|
|
/* menu vertical */
|
|
|
|
|
|
|
|
#menu_vertical {
|
2019-02-06 18:01:17 +01:00
|
|
|
position: fixed;
|
|
|
|
top: 5px;
|
2020-07-27 18:37:22 +02:00
|
|
|
left: 5px;
|
2021-04-06 23:34:57 +02:00
|
|
|
background: white;
|
|
|
|
border: 2px solid;
|
2020-07-27 18:37:22 +02:00
|
|
|
padding-top: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
2021-04-06 23:34:57 +02:00
|
|
|
#menu_container_vertical {
|
2020-07-27 18:37:22 +02:00
|
|
|
position: fixed;
|
|
|
|
top: 5px;
|
|
|
|
left: 5px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
2021-04-06 23:34:57 +02:00
|
|
|
#menu_container_vertical .menu-header {
|
|
|
|
width: 200px;
|
|
|
|
height: 110px;
|
|
|
|
resize: both;
|
2019-02-06 18:01:17 +01:00
|
|
|
}
|
|
|
|
|
2021-04-06 23:34:57 +02:00
|
|
|
#menu_container_vertical ul.components {
|
|
|
|
padding: 10px 0;
|
2020-07-27 18:37:22 +02:00
|
|
|
}
|
|
|
|
|
2021-04-06 23:34:57 +02:00
|
|
|
#menu_container_vertical ul li a {
|
|
|
|
padding: 5px;
|
2020-07-27 18:37:22 +02:00
|
|
|
font-size: 1.1em;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2021-04-06 23:34:57 +02:00
|
|
|
#menu_container_vertical ul li a:hover {
|
2020-07-27 18:37:22 +02:00
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
2021-04-06 23:34:57 +02:00
|
|
|
/* menu horizontal */
|
|
|
|
|
|
|
|
#menu_horizontal {
|
|
|
|
position: fixed;
|
|
|
|
top: 5px;
|
|
|
|
left: 222px;
|
|
|
|
background: white;
|
|
|
|
border: 2px solid;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-left: 5px;
|
2017-09-25 15:11:01 +02:00
|
|
|
}
|
|
|
|
|
2021-04-06 23:34:57 +02:00
|
|
|
#menu_container_horizontal {
|
|
|
|
position: fixed;
|
|
|
|
top: 5px;
|
|
|
|
left: 5px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu_container_horizontal .container {
|
|
|
|
width: 800px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu_container_horizontal ul.components {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu_container_horizontal ul li a {
|
|
|
|
padding: 1px;
|
|
|
|
font-size: 1.1em;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu_container_horizontal ul li a:hover {
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* legend */
|
|
|
|
|
2019-04-18 17:34:36 +02:00
|
|
|
#legend_container {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 5px;
|
2020-07-30 17:45:07 +02:00
|
|
|
right: 5px;
|
2019-04-18 17:34:36 +02:00
|
|
|
padding-top: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
2017-09-25 15:11:01 +02:00
|
|
|
#legend {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 5px;
|
2020-07-30 17:45:07 +02:00
|
|
|
right: 5px;
|
2017-09-25 15:11:01 +02:00
|
|
|
background: white;
|
|
|
|
border: 2px solid;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
2019-04-19 14:41:04 +02:00
|
|
|
#tree-details_container {
|
2020-07-27 18:37:22 +02:00
|
|
|
position: fixed;
|
2020-07-30 17:45:07 +02:00
|
|
|
top: 5px;
|
2020-07-27 18:37:22 +02:00
|
|
|
right: 5px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
padding-left: 5px;
|
2019-04-19 14:41:04 +02:00
|
|
|
}
|
|
|
|
|
2017-09-25 15:11:01 +02:00
|
|
|
#tree-details {
|
|
|
|
position: fixed;
|
2020-07-30 17:45:07 +02:00
|
|
|
top: 5px;
|
2017-09-25 15:11:01 +02:00
|
|
|
right: 5px;
|
|
|
|
background: white;
|
|
|
|
border: 2px solid;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
2017-10-04 15:13:42 +02:00
|
|
|
|
2020-12-10 16:26:37 +01:00
|
|
|
#tree-details p {
|
|
|
|
margin-top: 0em;
|
|
|
|
margin-bottom: 0em;
|
|
|
|
}
|
|
|
|
|
2017-10-04 15:13:42 +02:00
|
|
|
.tooltip {
|
|
|
|
position: absolute;
|
|
|
|
text-align: left;
|
|
|
|
padding: 2px;
|
|
|
|
font: 12px sans-serif;
|
|
|
|
background: lightsteelblue;
|
|
|
|
border: 0px;
|
|
|
|
border-radius: 8px;
|
2020-07-27 18:37:22 +02:00
|
|
|
z-index: 1;
|
|
|
|
border: 2px solid;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
padding-left: 5px;
|
2017-10-04 15:13:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip text {
|
2020-07-27 18:37:22 +02:00
|
|
|
font: 15px sans-serif;
|
|
|
|
z-index: 2;
|
2017-10-04 15:13:42 +02:00
|
|
|
}
|
2019-04-18 17:34:36 +02:00
|
|
|
|
2020-12-22 18:23:26 +01:00
|
|
|
.tooltip img {
|
|
|
|
background: white;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 5px;
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
|
2019-04-18 17:34:36 +02:00
|
|
|
hr {
|
|
|
|
display: block;
|
|
|
|
margin-top: 0.1em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2019-04-19 15:53:50 +02:00
|
|
|
border-color: black;
|
2019-04-18 17:34:36 +02:00
|
|
|
border-style: inset;
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
2020-02-03 18:30:41 +01:00
|
|
|
|
2021-04-06 23:34:57 +02:00
|
|
|
hr.vertical {
|
|
|
|
display: block;
|
|
|
|
margin-top: 0.1em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
border-color: black;
|
|
|
|
border-style: inset;
|
|
|
|
border-width: 1px;
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
|
2020-02-10 01:55:03 +01:00
|
|
|
table {
|
|
|
|
table-layout: fixed;
|
|
|
|
}
|
|
|
|
|
2020-02-10 11:21:20 +01:00
|
|
|
table td p {
|
2020-02-10 01:55:03 +01:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2020-02-10 11:21:20 +01:00
|
|
|
margin: 0;
|
2020-02-03 18:30:41 +01:00
|
|
|
}
|
2020-07-17 18:39:50 +02:00
|
|
|
|
|
|
|
[data-toggle="collapse"].collapsed .if-not-collapsed {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
[data-toggle="collapse"]:not(.collapsed) .if-collapsed {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-03-30 00:45:24 +02:00
|
|
|
|
|
|
|
#screenshot_thumbnail {
|
|
|
|
scroll-margin: 50px;
|
|
|
|
}
|
2021-04-06 23:34:57 +02:00
|
|
|
|
|
|
|
.blur {
|
|
|
|
filter: blur(10px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.arrow-down {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.arrow-right {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.arrow-left {
|
|
|
|
transform: rotate(270deg);
|
|
|
|
}
|
|
|
|
|
2021-04-09 15:45:20 +02:00
|
|
|
.new-capture-button {
|
|
|
|
width: 300px;
|
2021-04-06 23:34:57 +02:00
|
|
|
height: 60px;
|
|
|
|
font-size: 25px;
|
|
|
|
letter-spacing: 2.5px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: #ffffff;
|
|
|
|
background-color: #0000ff;
|
|
|
|
border: 10px;
|
|
|
|
border-radius: 50px;
|
|
|
|
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
|
|
transition: all 0.3s ease 0s;
|
|
|
|
cursor: pointer;
|
|
|
|
outline: none;
|
|
|
|
padding-right: 15px;
|
|
|
|
padding-left: 15px;
|
2021-04-09 15:45:20 +02:00
|
|
|
padding-bottom: 20px;
|
2021-04-06 23:34:57 +02:00
|
|
|
padding-top: 15px;
|
|
|
|
}
|
|
|
|
|
2021-04-09 15:45:20 +02:00
|
|
|
.new-capture-button:hover {
|
2021-04-06 23:34:57 +02:00
|
|
|
background-color: #007070;
|
|
|
|
box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
|
|
|
|
color: #fff;
|
|
|
|
transform: translateY(-7px);
|
|
|
|
}
|