lookyloo/website/web/static/tree.css

188 lines
2.7 KiB
CSS
Raw Normal View History

2017-09-22 00:26:38 +02:00
.node circle {
fill: #fff;
stroke: steelblue;
stroke-width: 3px;
}
.node text {
font: 12px sans-serif;
}
.flashed-messages {
position: fixed;
2021-05-11 19:52:55 +02:00
bottom: 5px;
text-align: center;
}
2021-05-12 23:13:44 +02:00
.blur {
filter: blur(10px);
}
#screenshot_thumbnail {
scroll-margin: 50px;
}
2024-04-22 16:47:57 +02:00
#help {
text-align: center;
border-style: solid;
border-color: #0d6efd;
border-radius: 25px;
text-decoration: none;
height: 50px;
width: 50px;
background-color: #0d6efd;
color: white;
align-content: center;
}
#help:hover {
background-color: white;
color: blue;
}
2021-05-12 23:13:44 +02:00
/* Generic parts of menus */
hr {
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;
}
2021-04-06 23:34:57 +02:00
2021-05-12 23:13:44 +02:00
/* menu vertical */
2021-04-06 23:34:57 +02:00
#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;
2024-04-23 12:00:13 +02:00
padding: 5px;
2020-07-27 18:37:22 +02:00
}
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;
2024-04-23 12:00:13 +02:00
padding: 5px;
2020-07-27 18:37:22 +02:00
}
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
}
2024-04-23 12:00:13 +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;
2024-04-23 16:02:27 +02:00
text-align: center;;
2020-07-27 18:37:22 +02:00
}
2021-04-06 23:34:57 +02:00
/* menu horizontal */
#menu_horizontal {
position: fixed;
top: 5px;
background: white;
border: 2px solid;
2024-04-22 16:47:57 +02:00
padding: 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;
left: 217px;
2024-04-22 16:47:57 +02:00
padding: 5px;
2024-04-23 12:00:13 +02:00
width: 80%;
2024-04-22 16:47:57 +02:00
}
.hstack{
height: 106.6px;
2021-04-06 23:34:57 +02:00
}
2024-04-23 16:02:27 +02:00
/* Dropdown Menus */
2024-04-22 16:47:57 +02:00
.dropbtn {
background-color: #0d6efd;
color: white;
font-size: 16px;
border: none;
width: 180px;
text-align: center;
2024-04-23 12:00:13 +02:00
height: 50px;
2024-04-22 16:47:57 +02:00
}
.dropbtn:hover, .dropbtn:focus {
background-color: #0067fc;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
width: 180px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
2024-04-23 16:02:27 +02:00
.dropdown-content a:hover {
background-color: #f1f1f1;
}
2024-04-22 16:47:57 +02:00
2024-04-23 12:00:13 +02:00
/* Show the dropdown menus on hover */
2024-04-22 16:47:57 +02:00
#capture-menu:hover #capture-menu-content {
display: block;
}
#actions-menu:hover #actions-menu-content {
display: block;
}
#tools-menu:hover #tools-menu-content {
display: block;
}
#admin-menu:hover #admin-menu-content {
display: block;
}
2024-04-23 12:00:13 +02:00
#extra-menu:hover #extra-menu-content {
display: block;
2024-04-22 16:47:57 +02:00
}
2021-04-06 23:34:57 +02:00
/* 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;
2024-04-23 12:00:13 +02:00
padding: 5px;
2019-04-18 17:34:36 +02:00
}
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;
2024-04-23 12:00:13 +02:00
padding: 5px;
2024-04-22 16:47:57 +02:00
}