2020-02-07 07:17:01 +01:00
|
|
|
:root {
|
2020-02-29 17:34:46 +01:00
|
|
|
--SCALE: 1;
|
|
|
|
|
--FS1: calc( 10px * var(--SCALE));
|
|
|
|
|
--FS2: calc( 13px * var(--SCALE));
|
|
|
|
|
--FS3: calc( 17px * var(--SCALE));
|
2020-02-07 07:17:01 +01:00
|
|
|
}
|
|
|
|
|
|
2020-01-03 21:16:40 +01:00
|
|
|
html, body {
|
|
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2020-03-03 22:34:53 +01:00
|
|
|
margin: calc( 0px * var(--SCALE)); padding: calc( 0px * var(--SCALE)); background-color: #F8F8F8; font-family: "Helvetica Neue", Helvetica, Verdana, sans-serif;
|
2020-02-07 07:17:01 +01:00
|
|
|
font-size: var(--FS2); overflow: hidden; height: 100%;
|
2020-01-03 21:16:40 +01:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-07 07:17:01 +01:00
|
|
|
#tableinfo { font-size: var(--FS2); }
|
2020-01-03 21:16:40 +01:00
|
|
|
|
|
|
|
|
#layout_container {
|
|
|
|
|
display: flex;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#selected_infoblock {
|
|
|
|
|
position: absolute;
|
2020-02-29 17:34:46 +01:00
|
|
|
left: calc( 0px * var(--SCALE));
|
|
|
|
|
top: calc( 0px * var(--SCALE));
|
|
|
|
|
width: calc(180px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
height: 100%;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
background-color: #F8F8F8;
|
|
|
|
|
}
|
|
|
|
|
.infoblock-container {
|
|
|
|
|
overflow: auto;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
#sidebar_canvas {
|
2020-02-29 17:34:46 +01:00
|
|
|
padding: calc( 5px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
#sidebar_container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
width: flex;
|
2020-02-29 17:34:46 +01:00
|
|
|
left: calc( 0px * var(--SCALE)) !important;
|
2020-01-03 21:16:40 +01:00
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#map_container {
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#map_canvas {
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#toggle_sidebar_control {
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
2020-02-29 17:34:46 +01:00
|
|
|
top: calc( 3px * var(--SCALE));
|
|
|
|
|
right: calc( 0px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#toggle_sidebar_button {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
float: right;
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc( 30px * var(--SCALE));
|
|
|
|
|
height: calc( 36px * var(--SCALE));
|
|
|
|
|
background-size: calc( 28px * var(--SCALE)) calc( 32px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-repeat: no-repeat;
|
2020-02-29 17:34:46 +01:00
|
|
|
background-position: calc( 0px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-color: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#toggle_sidebar_button.show_sidebar {
|
2020-01-18 00:24:14 +01:00
|
|
|
background-image: url("images/show_sidebar.png");
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#toggle_sidebar_button.hide_sidebar {
|
2020-01-18 00:24:14 +01:00
|
|
|
background-image: url("images/hide_sidebar.png");
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
2020-02-07 07:17:01 +01:00
|
|
|
#large_mode_control {
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
2020-02-29 17:34:46 +01:00
|
|
|
top: calc( 5px * var(--SCALE));
|
|
|
|
|
left: calc( 5px * var(--SCALE));
|
2020-02-29 21:25:18 +01:00
|
|
|
background-color: transparent;
|
2020-03-04 21:39:56 +01:00
|
|
|
z-index: 99;
|
2020-02-07 07:17:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#large_mode_button {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
float: left;
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc( 30px * var(--SCALE));
|
|
|
|
|
height: calc( 30px * var(--SCALE));
|
|
|
|
|
background-size: calc( 30px * var(--SCALE)) calc( 30px * var(--SCALE));
|
2020-02-07 07:17:01 +01:00
|
|
|
background-repeat: no-repeat;
|
2020-02-29 17:34:46 +01:00
|
|
|
background-position: calc( 0px * var(--SCALE));
|
2020-02-07 07:17:01 +01:00
|
|
|
background-color: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
background-image: url("images/zoom-in@3x.png");
|
2020-03-04 21:39:56 +01:00
|
|
|
z-index: 99;
|
2020-02-07 07:17:01 +01:00
|
|
|
}
|
2020-01-03 21:16:40 +01:00
|
|
|
|
|
|
|
|
#expand_sidebar_control {
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
2020-02-29 17:34:46 +01:00
|
|
|
top: calc( 55px * var(--SCALE));
|
|
|
|
|
right: calc( 0px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#expand_sidebar_button {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
float: right;
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc( 30px * var(--SCALE));
|
|
|
|
|
height: calc( 36px * var(--SCALE));
|
|
|
|
|
background-size: calc( 28px * var(--SCALE)) calc( 32px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-repeat: no-repeat;
|
2020-02-29 17:34:46 +01:00
|
|
|
background-position: calc( 0px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-color: transparent;
|
|
|
|
|
border: none;
|
2020-01-18 00:24:14 +01:00
|
|
|
background-image: url("images/show_sidebar.png");
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#splitter {
|
|
|
|
|
cursor: ew-resize;
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
2020-02-29 17:34:46 +01:00
|
|
|
top: calc(108px * var(--SCALE));
|
|
|
|
|
left: calc( -30px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
float: right;
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc( 30px * var(--SCALE));
|
|
|
|
|
height: calc( 30px * var(--SCALE));
|
|
|
|
|
background-size: calc( 30px * var(--SCALE)) calc( 30px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-repeat: no-repeat;
|
2020-02-29 17:34:46 +01:00
|
|
|
background-position: calc( 0px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-color: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
background-image: url("images/toggle-width@2x.png");
|
|
|
|
|
background-size: cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#splitter-infoblock {
|
|
|
|
|
cursor: ns-resize;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: absolute ;
|
2020-02-29 17:34:46 +01:00
|
|
|
top: calc( 0px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
right: 0;
|
|
|
|
|
margin-left: auto;
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc( 24px * var(--SCALE));
|
|
|
|
|
height: calc( 4px * var(--SCALE));
|
|
|
|
|
background-size: calc( 24px * var(--SCALE)) calc( 25px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-repeat: no-repeat;
|
2020-02-29 17:34:46 +01:00
|
|
|
background-position: calc( 0px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
border: none;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-bottom: #234c75;
|
|
|
|
|
background-color: #65819e;
|
2020-02-29 17:34:46 +01:00
|
|
|
border-bottom-width: calc( 1px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
border-bottom-style: solid;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-23 16:20:27 +01:00
|
|
|
/* remove the blue highlighting around the map buttons */
|
|
|
|
|
.ol-control button {
|
|
|
|
|
outline: none;
|
2020-04-04 21:22:34 +02:00
|
|
|
z-index: 999;
|
2020-01-23 16:20:27 +01:00
|
|
|
}
|
|
|
|
|
|
2020-01-03 21:16:40 +01:00
|
|
|
.ol-zoom-in {
|
2020-01-23 16:20:27 +01:00
|
|
|
background-image: url("images/zoom-in@2x.png");
|
2020-01-03 21:16:40 +01:00
|
|
|
background-size: cover;
|
|
|
|
|
color:transparent !important;
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc( 25px * var(--SCALE)) !important;
|
|
|
|
|
height: calc( 25px * var(--SCALE)) !important;
|
2020-01-03 21:16:40 +01:00
|
|
|
background-color: transparent !important;
|
2020-02-29 17:34:46 +01:00
|
|
|
margin-bottom: calc( 5px * var(--SCALE)) !important;
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ol-zoom-out {
|
2020-01-23 16:20:27 +01:00
|
|
|
background-image: url("images/zoom-out@2x.png");
|
2020-01-03 21:16:40 +01:00
|
|
|
background-size: cover;
|
|
|
|
|
color:transparent !important;
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc( 25px * var(--SCALE)) !important;
|
|
|
|
|
height: calc( 25px * var(--SCALE)) !important;
|
2020-01-03 21:16:40 +01:00
|
|
|
background-color: transparent !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ol-zoom {
|
|
|
|
|
background-color: transparent !important;
|
2020-02-29 17:34:46 +01:00
|
|
|
left: calc(100% - calc( 65px * var(--SCALE)));
|
|
|
|
|
top: calc(100% - calc( 85px * var(--SCALE)));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
2020-04-04 21:57:43 +02:00
|
|
|
.ol-attribution {
|
|
|
|
|
font-size: var(--FS1);
|
|
|
|
|
}
|
2020-01-03 21:16:40 +01:00
|
|
|
|
|
|
|
|
|
2020-02-29 17:34:46 +01:00
|
|
|
div#SpecialSquawkWarning { position: absolute; bottom: calc( 25px * var(--SCALE)); right: calc(430px * var(--SCALE)); border: calc( 2px * var(--SCALE)) solid red;
|
|
|
|
|
background-color: #FFFFA3; opacity: 0.75; filter:alpha(opacity=75); padding: calc( 5px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
text-align: center; }
|
|
|
|
|
|
2020-02-29 17:34:46 +01:00
|
|
|
div#update_error { position: absolute; bottom: calc( 25px * var(--SCALE)); left: calc( 25px * var(--SCALE)); border: calc( 2px * var(--SCALE)) solid red;
|
|
|
|
|
background-color: #FFFFA3; opacity: 0.75; filter:alpha(opacity=75); padding: calc( 5px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
text-align: center; }
|
|
|
|
|
|
|
|
|
|
div#loader { z-index: 99; position: absolute; left: 0; top: 0; bottom: 0; right: 0; background: #000; opacity: 0.8; filter: alpha(opacity=80); }
|
2020-02-29 17:34:46 +01:00
|
|
|
#spinny { width: calc(128px * var(--SCALE)); height: calc(128px * var(--SCALE)); position: absolute; top: 50%; left: 50%; margin: calc( -64px * var(--SCALE)) 0 0 calc( -64px * var(--SCALE)); }
|
|
|
|
|
#loader_progress { width: calc(250px * var(--SCALE)); height: calc( 20px * var(--SCALE)); position: absolute; top: 50%; left: 50%; margin: calc(128px * var(--SCALE)) 0 0 - calc(125px * var(--SCALE)); }
|
2020-01-03 21:16:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#sudo_buttons {
|
|
|
|
|
display: flex;
|
2020-02-29 17:34:46 +01:00
|
|
|
padding: calc( 0px * var(--SCALE)) calc( 40px * var(--SCALE)) calc( 0px * var(--SCALE)) calc( 40px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.aircraft_table_header {
|
|
|
|
|
background-color: #00596b;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.aircraft_table_header td {
|
|
|
|
|
font-size: smaller;
|
2020-02-29 17:34:46 +01:00
|
|
|
padding: calc( 5px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.verticalRateTriangle {
|
|
|
|
|
font-family: "Courier New",monospace;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icaoCodeColumn {
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.plane_table_row {
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
2020-02-15 01:36:30 +01:00
|
|
|
|
2020-01-03 21:16:40 +01:00
|
|
|
.plane_table_row a:link, a:visited {
|
|
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
.hidden { display: none; }
|
|
|
|
|
|
|
|
|
|
.infoblock_heading a { text-decoration: none; color: blue; font-size: x-small;}
|
|
|
|
|
|
|
|
|
|
.dim { opacity: 0.3; filter:alpha(opacity=30); /* For IE8 and earlier */ }
|
|
|
|
|
|
|
|
|
|
.pointer { cursor: pointer; }
|
|
|
|
|
|
|
|
|
|
.sidebarButton {
|
|
|
|
|
background-color: #409EDF;
|
2020-02-29 17:34:46 +01:00
|
|
|
padding: calc( 4px * var(--SCALE)) calc( 15px * var(--SCALE)) calc( 4px * var(--SCALE)) calc( 15px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
color: #FFFFFF;
|
|
|
|
|
font-weight: normal;
|
2020-03-22 22:40:17 +01:00
|
|
|
font-size: var(--FS2);
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebarButton:hover {
|
|
|
|
|
background-color: #3c6ea3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.altitudeFilterInput {
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc( 50px * var(--SCALE));
|
|
|
|
|
height: calc(15px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-color: #F8F8F8;
|
|
|
|
|
}
|
|
|
|
|
.searchInput {
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc(100px * var(--SCALE));
|
|
|
|
|
height: calc(15px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-color: #F8F8F8;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-29 17:34:46 +01:00
|
|
|
.formButton {
|
2020-03-22 22:40:17 +01:00
|
|
|
font-size: var(--FS2);
|
2020-02-29 17:34:46 +01:00
|
|
|
}
|
|
|
|
|
|
2020-01-03 21:16:40 +01:00
|
|
|
select.error, textarea.error, input.error {
|
|
|
|
|
color: #FF0000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.layer-switcher {
|
2020-02-29 17:34:46 +01:00
|
|
|
top: calc( 3px * var(--SCALE)) !important;
|
|
|
|
|
right: calc( 47px * var(--SCALE)) !important;
|
2020-01-03 21:16:40 +01:00
|
|
|
z-index: 999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* new css */
|
|
|
|
|
.rangeRingText
|
|
|
|
|
{
|
|
|
|
|
font-weight: bold;
|
2020-02-29 17:34:46 +01:00
|
|
|
font-size: calc( 8px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
color: #333333;
|
|
|
|
|
color: rgb(51, 51, 51);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dateTime
|
|
|
|
|
{
|
|
|
|
|
font-weight: bold;
|
2020-02-29 17:34:46 +01:00
|
|
|
font-size: calc( 12px * var(--SCALE));
|
|
|
|
|
line-height: calc( 26px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
color: #FFFFFF;
|
|
|
|
|
color: rgb(255, 255, 255);
|
|
|
|
|
text-align: right;
|
|
|
|
|
display: inline-block;
|
2020-02-29 17:34:46 +01:00
|
|
|
padding-right: calc( 20px * var(--SCALE));
|
|
|
|
|
padding-left: calc( 20px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
2020-02-29 17:34:46 +01:00
|
|
|
@media screen and (max-width: 1 calc(000px * var(--SCALE))) {
|
2020-01-03 21:16:40 +01:00
|
|
|
.dateTime {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sectionTitle {
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: #003f4b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-title-content {
|
2020-02-29 17:34:46 +01:00
|
|
|
padding: calc( 3px * var(--SCALE)) calc( 20px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.legend
|
|
|
|
|
{
|
|
|
|
|
width: 100%;
|
|
|
|
|
font-size: 110%;
|
|
|
|
|
color: #000000;
|
|
|
|
|
color: rgb(0, 0, 0);
|
|
|
|
|
display: inline-flex;
|
2020-05-31 21:50:17 +02:00
|
|
|
justify-content: space-around;
|
2020-02-29 17:34:46 +01:00
|
|
|
padding-top: calc( 10px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settingsHeading
|
|
|
|
|
{
|
|
|
|
|
font-size: 110%;
|
2020-02-29 17:34:46 +01:00
|
|
|
line-height: calc( 20px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
color: #003f4b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settingsText
|
|
|
|
|
{
|
2020-02-29 19:04:08 +01:00
|
|
|
font-size: calc( 14px * var(--SCALE));
|
2020-02-29 17:34:46 +01:00
|
|
|
line-height: calc( 20px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
color: rgb(0, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.link
|
|
|
|
|
{
|
2020-02-07 07:17:01 +01:00
|
|
|
font-size: var(--FS2);
|
2020-02-29 17:34:46 +01:00
|
|
|
line-height: calc( 20px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
color: #0000C8;
|
|
|
|
|
color: rgb(0, 0, 200);
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#header_side {
|
|
|
|
|
position: absolute;
|
2020-02-29 17:34:46 +01:00
|
|
|
right: calc( 0px * var(--SCALE));
|
|
|
|
|
top: calc(140px * var(--SCALE));
|
|
|
|
|
width: calc( 38px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
height: flex;
|
|
|
|
|
z-index: 9;
|
|
|
|
|
}
|
|
|
|
|
#header_top {
|
|
|
|
|
text-align: right;
|
|
|
|
|
position: absolute;
|
2020-02-29 17:34:46 +01:00
|
|
|
right: calc( 94px * var(--SCALE));
|
|
|
|
|
top: calc( 0px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
width: flex;
|
2020-02-29 17:34:46 +01:00
|
|
|
height: calc( 38px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
z-index: 9;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.adsbLogo {
|
2020-02-29 17:34:46 +01:00
|
|
|
padding-left: calc( 20px * var(--SCALE));
|
|
|
|
|
padding-top: calc( 30px * var(--SCALE));
|
|
|
|
|
padding-bottom: calc( 5px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logoContainer {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.buttonContainer {
|
|
|
|
|
display: block;
|
2020-02-29 17:34:46 +01:00
|
|
|
margin: calc( 1px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.buttonSpacer {
|
2020-02-29 17:34:46 +01:00
|
|
|
margin: calc( 9px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.buttonText
|
|
|
|
|
{
|
|
|
|
|
font-weight: bold;
|
2020-02-29 17:34:46 +01:00
|
|
|
font-size: calc( 15px * var(--SCALE));
|
|
|
|
|
line-height: calc( 30px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
text-align: center;
|
2020-02-29 17:34:46 +01:00
|
|
|
margin: calc( 5px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.activeButton {
|
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inActiveButton {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.button {
|
|
|
|
|
background-color: #00596b;
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc( 28px * var(--SCALE));
|
|
|
|
|
height: calc( 28px * var(--SCALE));
|
|
|
|
|
border-radius: calc( 2px * var(--SCALE));
|
|
|
|
|
-moz-border-radius: calc( 2px * var(--SCALE));
|
|
|
|
|
-webkit-border-radius: calc( 2px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
display: inline-block;
|
2020-02-29 17:34:46 +01:00
|
|
|
margin: calc( 2px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
cursor: pointer;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.button-flex {
|
|
|
|
|
background: #67b6c3;
|
|
|
|
|
width: flex;
|
2020-02-29 17:34:46 +01:00
|
|
|
height: calc( 28px * var(--SCALE));
|
|
|
|
|
border-radius: calc( 2px * var(--SCALE));
|
|
|
|
|
-moz-border-radius: calc( 2px * var(--SCALE));
|
|
|
|
|
-webkit-border-radius: calc( 2px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
display: inline-block;
|
2020-02-29 17:34:46 +01:00
|
|
|
margin: calc( 6px * var(--SCALE));
|
|
|
|
|
margin-top: calc( 11px * var(--SCALE));
|
|
|
|
|
margin-bottom: calc( 11px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
cursor: pointer;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lightblue-link, .lightblue-link a {
|
|
|
|
|
color: #67b6c3;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.buttonTable {
|
2020-02-29 17:34:46 +01:00
|
|
|
margin-bottom: calc( 0px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settingsContainer {
|
2020-04-05 22:55:53 +02:00
|
|
|
width: calc( 36px * var(--SCALE));
|
|
|
|
|
height: calc( 36px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
cursor: pointer;
|
2020-02-29 17:34:46 +01:00
|
|
|
margin-top: calc( 11px * var(--SCALE));
|
|
|
|
|
margin-bottom: calc( 11px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-image: url('images/settings-icon.png');
|
2020-04-05 22:55:53 +02:00
|
|
|
background-size: calc( 33px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#highlighted_infoblock {
|
|
|
|
|
background-color: #F8F8F8;
|
|
|
|
|
position: absolute;
|
2020-02-29 17:34:46 +01:00
|
|
|
left: calc( 40px * var(--SCALE));
|
|
|
|
|
top: calc( 60px * var(--SCALE));
|
|
|
|
|
min-width: calc(168px * var(--SCALE));
|
|
|
|
|
padding-right: calc( 5px * var(--SCALE));
|
|
|
|
|
box-shadow: calc( 4px * var(--SCALE)) calc( 4px * var(--SCALE)) calc( 10px * var(--SCALE)) #444444;
|
2020-01-03 21:16:40 +01:00
|
|
|
cursor: pointer;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.highlightedTitle {
|
2020-02-29 17:34:46 +01:00
|
|
|
height: calc( 50px * var(--SCALE));
|
|
|
|
|
border-bottom: calc( 1px * var(--SCALE)) solid #67b6c3;
|
|
|
|
|
padding-left: calc( 18px * var(--SCALE));
|
|
|
|
|
padding-top: calc( 18px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
display: inline-block;
|
|
|
|
|
width: 83%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.highlightedInfo {
|
2020-02-29 17:34:46 +01:00
|
|
|
padding-left: calc( 10px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.identLarge {
|
2020-03-30 10:46:26 +02:00
|
|
|
font-size: calc( 22px * var(--SCALE));
|
2020-02-29 17:34:46 +01:00
|
|
|
line-height: calc( 24px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
color: #003f4b;
|
|
|
|
|
font-weight: lighter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.identMedium {
|
2020-03-30 10:46:26 +02:00
|
|
|
font-size: calc( 17px * var(--SCALE));
|
2020-02-29 17:34:46 +01:00
|
|
|
line-height: calc( 22px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
color: #003f4b;
|
|
|
|
|
font-weight: lighter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.identSmall {
|
2020-03-30 10:46:26 +02:00
|
|
|
font-size: calc( 14px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
font-weight: bold;
|
2020-02-29 17:34:46 +01:00
|
|
|
line-height: calc( 20px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
color: #003f4b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.highlightedInfo {
|
2020-02-29 17:34:46 +01:00
|
|
|
padding-bottom: calc( 12px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoRowTitle {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoRowContent {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoRowFluid {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoRow {
|
2020-02-29 17:34:46 +01:00
|
|
|
padding-top: calc( 10px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoRowLine {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoRowSpacer {
|
2020-02-29 17:34:46 +01:00
|
|
|
padding-top: calc( 3px * var(--SCALE));
|
|
|
|
|
padding-bottom: calc( 3px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoHeading {
|
2020-02-29 17:34:46 +01:00
|
|
|
margin-top: calc( 2px * var(--SCALE));
|
|
|
|
|
margin-bottom: calc( 2px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoHeading sub {
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoData {
|
2020-02-29 17:34:46 +01:00
|
|
|
margin-top: calc( 2px * var(--SCALE));
|
|
|
|
|
margin-bottom: calc( 2px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
float: right;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.removePadding {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightLink {
|
|
|
|
|
float: right;
|
2020-02-29 17:34:46 +01:00
|
|
|
padding-right: calc( 5px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoBlockTopSection {
|
2020-02-29 17:34:46 +01:00
|
|
|
padding-top: calc( 14px * var(--SCALE));
|
|
|
|
|
padding-bottom: calc( 14px * var(--SCALE));
|
|
|
|
|
padding-left: calc( 8px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoBlock45pxSection {
|
2020-02-29 17:34:46 +01:00
|
|
|
height: calc( 45px * var(--SCALE));
|
|
|
|
|
line-height: calc( 45px * var(--SCALE));
|
|
|
|
|
padding-left: calc( 10px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoBlockSection {
|
2020-02-29 17:34:46 +01:00
|
|
|
padding-top: calc( 8px * var(--SCALE));
|
|
|
|
|
padding-bottom: calc( 8px * var(--SCALE));
|
|
|
|
|
padding-left: calc( 10px * var(--SCALE));
|
|
|
|
|
padding-right: calc( 5px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lightGreyBackground {
|
|
|
|
|
background-color: #efefef;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#dump1090_infoblock {
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-07 14:14:28 +02:00
|
|
|
.largeText a {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #003f4b;
|
|
|
|
|
font-size: var(--FS3);
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-15 01:36:30 +01:00
|
|
|
.largeText {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #003f4b;
|
|
|
|
|
font-size: var(--FS3);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 21:16:40 +01:00
|
|
|
.infoBlockTitleText {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #003f4b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.legendBox {
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc( 15px * var(--SCALE));
|
|
|
|
|
height: calc( 15px * var(--SCALE));
|
|
|
|
|
border: calc( 1px * var(--SCALE)) solid #efefef;
|
|
|
|
|
border-radius: calc( 4px * var(--SCALE));
|
|
|
|
|
-moz-border-radius: calc( 4px * var(--SCALE));
|
|
|
|
|
-webkit-border-radius: calc( 4px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.legendTitle {
|
2020-02-29 17:34:46 +01:00
|
|
|
line-height: calc( 19px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
display: inline-block;
|
2020-05-31 21:50:17 +02:00
|
|
|
padding-right: calc( 5px * var(--SCALE));
|
2020-02-29 17:34:46 +01:00
|
|
|
padding-left: calc( 5px * var(--SCALE));
|
2020-05-31 21:50:17 +02:00
|
|
|
white-space: nowrap;
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#settings_infoblock {
|
|
|
|
|
position: absolute;
|
2020-02-29 17:34:46 +01:00
|
|
|
top: calc( 60px * var(--SCALE));
|
|
|
|
|
right: calc( 60px * var(--SCALE));
|
|
|
|
|
width: calc(398px * var(--SCALE));
|
|
|
|
|
min-height: calc(180px * var(--SCALE));
|
|
|
|
|
box-shadow: calc( 4px * var(--SCALE)) calc( 4px * var(--SCALE)) calc( 10px * var(--SCALE)) #444444;
|
|
|
|
|
padding: calc( 20px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
z-index: 9999;
|
|
|
|
|
display: none;
|
|
|
|
|
background-color: #F8F8F8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settingsColumn {
|
|
|
|
|
display: table-cell;
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc(199px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
.settingsOptionContainer {
|
|
|
|
|
display: table;
|
2020-02-29 17:34:46 +01:00
|
|
|
padding-bottom: calc( 10px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settingsCheckbox {
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc( 20px * var(--SCALE));
|
|
|
|
|
height: calc( 11px * var(--SCALE));
|
2020-04-05 22:46:46 +02:00
|
|
|
margin-right: calc( 5px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-image: url('images/box-empty.png');
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settingsCheckboxChecked {
|
|
|
|
|
background-image: url('images/box-checked.png') !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settingsCloseBox {
|
|
|
|
|
position: absolute;
|
2020-02-29 17:34:46 +01:00
|
|
|
right: calc( 8px * var(--SCALE));
|
|
|
|
|
top: calc( 8px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-image: url('images/close-settings.png');
|
|
|
|
|
background-size: cover;
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc( 20px * var(--SCALE));
|
|
|
|
|
height: calc( 20px * var(--SCALE));
|
2020-07-19 20:36:35 -04:00
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoblockCloseBox {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: calc( 20px * var(--SCALE));
|
|
|
|
|
top: calc( 8px * var(--SCALE));
|
|
|
|
|
background-image: url('images/close-settings.png');
|
|
|
|
|
background-size: cover;
|
|
|
|
|
width: calc( 20px * var(--SCALE));
|
|
|
|
|
height: calc( 20px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settingsText {
|
2020-02-29 17:34:46 +01:00
|
|
|
line-height: calc( 20px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
display: table-cell;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#altitude_chart {
|
|
|
|
|
float: right;
|
2020-02-29 17:34:46 +01:00
|
|
|
width: calc(100% - calc( 5px * var(--SCALE)));
|
|
|
|
|
max-width: calc(800px * var(--SCALE));
|
|
|
|
|
right: calc( 5px * var(--SCALE));
|
|
|
|
|
bottom: calc( 35px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
background-color: transparent !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
#altitude_chart_button {
|
|
|
|
|
background-image: url('images/alt_legend_feet.svg');
|
|
|
|
|
background-size: cover;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
padding-bottom: calc(100% * 56 / 1815);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.altitudeMeters {
|
|
|
|
|
background-image: url('images/alt_legend_meters.svg') !important;
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.bottom-container {
|
|
|
|
|
width: 100%;
|
2020-02-29 17:34:46 +01:00
|
|
|
margin-top: calc( 8px * var(--SCALE));
|
|
|
|
|
padding: calc( 40px * var(--SCALE)) calc( 0px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
text-align: center;
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
}
|
|
|
|
|
#selected_flightaware_link a {
|
|
|
|
|
background-color: #67b6c3;
|
|
|
|
|
color: white;
|
|
|
|
|
text-decoration: none;
|
2020-02-29 17:34:46 +01:00
|
|
|
padding: calc( 4px * var(--SCALE));
|
|
|
|
|
line-height: calc( 22px * var(--SCALE));
|
|
|
|
|
border-radius: calc( 4px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
.bottom-info-container {
|
2020-02-29 17:34:46 +01:00
|
|
|
padding-top: calc( 10px * var(--SCALE));
|
|
|
|
|
padding-bottom: calc( 10px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
text-align: center;
|
|
|
|
|
color: #003f4b;
|
2020-02-29 17:34:46 +01:00
|
|
|
line-height: calc( 18px * var(--SCALE));
|
2020-01-03 21:16:40 +01:00
|
|
|
}
|
|
|
|
|
.bottom-info-container img {
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
.bottom-info-container .bottom-info-text {
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
.selected_airframe a {
|
|
|
|
|
color: #003f4b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoblock-container-small .infoRowFluid {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Retina 2x images */
|
|
|
|
|
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
|
|
|
.settingsCloseBox {
|
|
|
|
|
background-image: url('images/close-settings@2x.png');
|
|
|
|
|
}
|
|
|
|
|
.settingsCheckboxChecked {
|
|
|
|
|
background-image: url('images/box-checked@2x.png') !important;
|
|
|
|
|
}
|
|
|
|
|
.settingsCheckbox {
|
|
|
|
|
background-image: url('images/box-empty@2x.png');
|
|
|
|
|
}
|
|
|
|
|
.ol-zoom-out {
|
|
|
|
|
background-image: url("images/zoom-out@2x.png");
|
|
|
|
|
}
|
|
|
|
|
.ol-zoom-in {
|
|
|
|
|
background-image: url("images/zoom-in@2x.png");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Retina 3x images */
|
|
|
|
|
@media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 192dpi) {
|
|
|
|
|
.settingsCloseBox {
|
|
|
|
|
background-image: url('images/close-settings@3x.png');
|
|
|
|
|
}
|
|
|
|
|
.settingsCheckboxChecked {
|
|
|
|
|
background-image: url('images/box-checked@3x.png') !important;
|
|
|
|
|
}
|
|
|
|
|
.settingsCheckbox {
|
|
|
|
|
background-image: url('images/box-empty@3x.png');
|
|
|
|
|
}
|
|
|
|
|
.ol-zoom-out {
|
|
|
|
|
background-image: url("images/zoom-out@3x.png");
|
|
|
|
|
}
|
|
|
|
|
.ol-zoom-in {
|
|
|
|
|
background-image: url("images/zoom-in@3x.png");
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-22 20:49:11 +01:00
|
|
|
|
|
|
|
|
.greyButton {
|
|
|
|
|
background-color: #ddd;
|
|
|
|
|
cursor: pointer;
|
2020-02-29 17:34:46 +01:00
|
|
|
padding: calc( 4px * var(--SCALE));
|
2020-01-22 20:49:11 +01:00
|
|
|
width: 100%;
|
|
|
|
|
border: none;
|
|
|
|
|
text-align: left;
|
|
|
|
|
outline: none;
|
2020-02-29 17:34:46 +01:00
|
|
|
font-size: calc( 15px * var(--SCALE));
|
2020-01-22 20:49:11 +01:00
|
|
|
font-weight: bold;
|
|
|
|
|
color: #003f4b;
|
|
|
|
|
}
|
|
|
|
|
.greyButton:after {
|
|
|
|
|
content: '\02795\FE0E'; /* Unicode character for "plus" sign (+) */
|
|
|
|
|
float: right;
|
2020-02-29 17:34:46 +01:00
|
|
|
margin-left: calc( 5px * var(--SCALE));
|
2020-01-22 20:49:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Style the button that is used to open and close the collapsible content */
|
|
|
|
|
.collapseButton {
|
|
|
|
|
background-color: #ddd;
|
|
|
|
|
cursor: pointer;
|
2020-02-29 17:34:46 +01:00
|
|
|
padding: calc( 4px * var(--SCALE));
|
2020-01-22 20:49:11 +01:00
|
|
|
width: 100%;
|
|
|
|
|
border: none;
|
|
|
|
|
text-align: left;
|
|
|
|
|
outline: none;
|
2020-02-29 17:34:46 +01:00
|
|
|
font-size: calc( 15px * var(--SCALE));
|
2020-01-22 20:49:11 +01:00
|
|
|
font-weight: bold;
|
|
|
|
|
color: #003f4b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
|
|
|
|
|
.active, .collapseButton:hover {
|
|
|
|
|
background-color: #ccc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Style the collapsible content. Note: hidden by default */
|
|
|
|
|
.collapse {
|
2020-02-29 17:34:46 +01:00
|
|
|
padding: 0 calc( 14px * var(--SCALE));
|
2020-01-22 20:49:11 +01:00
|
|
|
display: none;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
background-color: #f1f1f1;
|
2020-02-29 17:34:46 +01:00
|
|
|
margin-bottom: calc( 8px * var(--SCALE));
|
2020-01-22 20:49:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.collapseButton:after {
|
|
|
|
|
content: '\02795\FE0E'; /* Unicode character for "plus" sign (+) */
|
|
|
|
|
float: right;
|
2020-02-29 17:34:46 +01:00
|
|
|
margin-left: calc( 5px * var(--SCALE));
|
2020-01-22 20:49:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.active:after {
|
|
|
|
|
content: "\2796\FE0E"; /* Unicode character for "minus" sign (-) */
|
|
|
|
|
}
|