2025-05-28 02:10:45 +00:00
|
|
|
/* TAGS */
|
|
|
|
|
|
|
|
html {
|
|
|
|
/*
|
|
|
|
background-color: rgba(64, 64, 64, 0.64);
|
|
|
|
background-color: rgb(40, 44, 52);
|
|
|
|
*/
|
|
|
|
background-color: rgba(40, 44, 52, 0.64);
|
|
|
|
color: rgba(255, 255, 255, 0.64);
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: rgba(64, 64, 64, 0.0)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* IDs */
|
|
|
|
|
|
|
|
|
|
|
|
/* CLASSES */
|
|
|
|
|
2025-06-12 07:45:17 +00:00
|
|
|
.info-bar {
|
|
|
|
font-size: 0.8em;
|
|
|
|
color: rgba(255, 255, 255, 0.84);
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2025-05-28 02:10:45 +00:00
|
|
|
.tabs {
|
|
|
|
display: flex;
|
|
|
|
overflow: auto;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
padding-bottom: 0.4em;
|
|
|
|
padding-top: 0.4em;
|
2025-06-12 07:45:17 +00:00
|
|
|
color: rgba(255, 255, 255, 0.64);
|
2025-06-15 05:43:33 +00:00
|
|
|
margin-left: 0.2em;
|
|
|
|
margin-right: 0.2em;
|
2025-05-28 02:10:45 +00:00
|
|
|
}
|
|
|
|
|
2025-06-30 05:50:32 +00:00
|
|
|
.hr-pane-handle,
|
|
|
|
.vr-pane-handle {
|
|
|
|
border: 2px dashed lightblue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
.hr-pane-handle {
|
|
|
|
}
|
|
|
|
|
|
|
|
.vr-pane-handle {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
.vr-pane-handle {
|
|
|
|
max-width: 0.05em;
|
|
|
|
}
|
|
|
|
|
2025-05-28 02:10:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-06-14 21:50:46 +00:00
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2025-05-28 02:10:45 +00:00
|
|
|
.scroller {
|
|
|
|
/*
|
|
|
|
-webkit-scrollbar-color: #00000084 #ffffff64;
|
|
|
|
scrollbar-color: #00000084 #ffffff64;
|
|
|
|
*/
|
|
|
|
-webkit-scrollbar-color: #00000084 #ffffff06;
|
|
|
|
-webkit-scrollbar-width: thin;
|
|
|
|
scrollbar-color: #00000084 #ffffff06;
|
|
|
|
scrollbar-width: thin;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noselect {
|
|
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
|
|
-webkit-user-select: none; /* Safari */
|
|
|
|
-khtml-user-select: none; /* Konqueror HTML */
|
|
|
|
-moz-user-select: none; /* Old versions of Firefox */
|
|
|
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
|
|
user-select: none; /* Non-prefixed version, currently
|
|
|
|
supported by Chrome, Edge, Opera and Firefox */
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-alert-zone-container {
|
|
|
|
position: sticky;
|
|
|
|
top: 0em;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.searching,
|
|
|
|
.search-success,
|
|
|
|
.search-fail {
|
|
|
|
border-style: solid;
|
|
|
|
color: rgba(125, 125, 125, 1) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searching {
|
|
|
|
border-color: rgba(0, 225, 225, 0.64) !important;
|
|
|
|
}
|
|
|
|
.search-success {
|
|
|
|
background: rgba(136, 204, 39, 0.12) !important;
|
|
|
|
border-color: rgba(136, 204, 39, 1) !important;
|
|
|
|
}
|
|
|
|
.search-fail {
|
|
|
|
background: rgba(170, 18, 18, 0.12) !important;
|
|
|
|
border-color: rgba(200, 18, 18, 1) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Other message text colors */
|
|
|
|
.error { color: rgb(170, 18, 18); }
|
|
|
|
.warning { color: rgb(255, 168, 0); }
|
|
|
|
.success { color: rgb(136, 204, 39); }
|