Files
VOREStation/html/admin/view_variables.css
ShadowLarkens a332e3c554 View Variables Dark Mode (#17762)
* Move VV CSS to an asset

* vv: getFlatIcon and image preview support

* vv: Dark mode and prefs for using said mode and also gfi
2025-05-31 19:15:20 +02:00

62 lines
977 B
CSS

body {
font-family: Verdana, sans-serif;
font-size: 9pt;
}
.value {
font-family: "Courier New", monospace;
font-size: 8pt;
display: inline-block;
}
table.matrix {
border-collapse: collapse; border-spacing: 0;
font-size: 7pt;
}
.matrix td{
text-align: center;
padding: 0 1ex 0ex 1ex;
}
table.matrixbrak {
border-collapse: collapse; border-spacing: 0;
}
table.matrixbrak td.lbrak {
width: 0.8ex;
font-size: 50%;
border-top: solid 0.25ex black;
border-bottom: solid 0.25ex black;
border-left: solid 0.5ex black;
border-right: none;
}
table.matrixbrak td.rbrak {
width: 0.8ex;
font-size: 50%;
border-top: solid 0.25ex black;
border-bottom: solid 0.25ex black;
border-right: solid 0.5ex black;
border-left: none;
}
/* Dark Mode */
.dark body {
background-color: #0d1117;
color: #f0f6fc;
}
.dark a {
color: rgb(68, 147, 248);
}
.dark select {
background-color: black;
color: white;
}
.dark input {
background-color: black;
color: white;
}