Files
fnx_web/res/include/style/layout.css

536 lines
13 KiB
CSS
Raw Normal View History

/*
2017-11-10 12:39:55 +01:00
Created on : Jun 3, 2015, 9:33:11 AM
Author : Fornax
*/
2018-01-24 10:56:53 +01:00
:root {
--highlight_border: inset 0px 0px 5px 1px var(--highlight_color), 0px 0px 1px 0px var(--highlight_color);
}
2018-11-06 21:39:18 +01:00
/* Fonts */
@font-face {
2019-12-23 23:56:57 +01:00
font-family: 'light';
font-display: fallback;
2019-12-23 23:56:57 +01:00
font-style: normal;
font-weight: normal;
src:
2019-12-23 23:56:57 +01:00
local('Cantarell Light'),
local('Cantarell, Light'),
local('Cantarell-Light'),
url("/res/misc/Cantarell-Light.otf") format("opentype");
2018-11-06 21:39:18 +01:00
}
/* Page rendering configuration */
html, body {
2019-09-19 09:40:07 +02:00
overflow-x: hidden;
}
2017-11-10 12:39:55 +01:00
body{
2020-01-28 12:51:21 +01:00
background-color: #111111; /* Fallback */
2019-09-16 23:50:57 +02:00
background-color: var(--body_color);
2017-11-10 12:39:55 +01:00
background-repeat: repeat;
2020-01-17 20:32:21 +01:00
font-family: sans-serif;
2017-11-10 12:39:55 +01:00
margin: 0;
2018-08-06 23:33:03 +02:00
line-height: 1.5em;
2020-01-28 12:51:21 +01:00
color: #b2b2b2; /* Fallback */
2018-01-07 21:42:19 +01:00
color: var(--text_color);
2019-07-06 18:41:16 +02:00
padding: 0;
2017-11-10 12:39:55 +01:00
}
/* Page layout elements */
.page_wrapper {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
2017-11-10 12:39:55 +01:00
2019-09-17 23:38:40 +02:00
.button_toggle_navigation {
2019-09-19 09:35:09 +02:00
position: fixed;
backface-visibility: hidden;
2019-09-17 23:38:40 +02:00
z-index: 300;
top: 0;
left: 0;
padding: 10px 20px 15px 10px;
font-size: 2em;
2019-09-16 23:50:57 +02:00
margin: 0;
2020-01-28 12:51:21 +01:00
background: #3f3f3f;
2019-09-17 23:38:40 +02:00
background: var(--input_color);
border-radius: 0;
border-bottom-right-radius: 90%;
2020-01-28 12:51:21 +01:00
box-shadow: 2px 2px 8px -3px #000000;
2019-09-17 23:38:40 +02:00
box-shadow: 2px 2px 8px -3px var(--shadow_color);
2017-11-10 12:39:55 +01:00
}
2019-09-18 22:23:12 +02:00
.page_navigation {
2019-09-19 09:35:09 +02:00
position: fixed;
backface-visibility: hidden;
2019-09-16 23:50:57 +02:00
z-index: 100;
2019-09-17 23:38:40 +02:00
width: 250px;
height: 100%;
2019-09-18 22:23:12 +02:00
left: 0;
2019-09-16 23:50:57 +02:00
float: left;
2020-01-28 12:51:21 +01:00
background-color: #1c1c1c;
2019-09-16 23:50:57 +02:00
background-color: var(--layer_1_color);
2019-09-17 23:38:40 +02:00
padding: 20px 0 0.5em 0;
2019-09-18 22:23:12 +02:00
box-sizing: border-box;
2019-09-17 23:38:40 +02:00
overflow-y: auto;
overflow-x: hidden;
2019-09-16 23:50:57 +02:00
text-align: left;
2020-01-28 12:51:21 +01:00
box-shadow: inset -10px 0px 10px -10px #000000;
2019-09-17 23:38:40 +02:00
box-shadow: inset -10px 0px 10px -10px var(--shadow_color);
2019-09-16 23:50:57 +02:00
transition: left 0.5s;
}
2019-09-18 22:23:12 +02:00
.page_body {
2019-09-16 23:50:57 +02:00
position: absolute;
2019-09-17 23:38:40 +02:00
z-index: 200;
2019-09-16 23:50:57 +02:00
right: 0;
2019-09-19 09:35:09 +02:00
height: auto;
2019-09-17 23:38:40 +02:00
left: 250px;
2019-09-16 23:50:57 +02:00
min-width: 300px;
display: inline-block;
text-align: center; /* Center the header and body */
2019-09-17 23:38:40 +02:00
overflow-y: auto;
overflow-x: hidden;
2019-09-16 23:50:57 +02:00
z-index: 50;
transition: left 0.5s;
2019-09-18 22:23:12 +02:00
padding: 50px 0 50px 0;
2019-09-16 23:50:57 +02:00
}
2019-09-17 23:38:40 +02:00
@media (max-width: 600px) {
2019-09-18 22:23:12 +02:00
.page_navigation {
2019-09-17 23:38:40 +02:00
left: -250px;
2019-09-16 23:50:57 +02:00
}
2019-09-18 22:23:12 +02:00
.page_body {
2019-09-16 23:50:57 +02:00
left: 0;
2019-09-19 09:43:31 +02:00
width: 100%;
2019-09-16 23:50:57 +02:00
}
}
2019-09-17 23:38:40 +02:00
2019-09-18 22:23:12 +02:00
.page_body > .page_content {
2019-09-17 23:38:40 +02:00
position: relative;
display: inline-block;
width: 100%;
height: auto;
padding: 20px 0 20px 0;
2020-01-28 12:51:21 +01:00
background-color: #212121;
2019-09-17 23:38:40 +02:00
background-color: var(--layer_2_color);
2020-01-28 12:51:21 +01:00
box-shadow: 1px 1px 20px 0 #000000;
2019-09-17 23:38:40 +02:00
box-shadow: 1px 1px 20px 0 var(--shadow_color);
box-sizing: border-box;
clear: both;
}
2020-01-14 17:10:03 +01:00
.limit_width {
2017-11-10 12:39:55 +01:00
position: relative;
display: inline-block;
max-width: 1000px;
width: 100%;
height: auto;
2019-07-16 22:07:10 +02:00
padding: 0;
2018-01-11 23:12:35 +01:00
box-sizing: border-box;
2017-11-10 12:39:55 +01:00
text-align: left;
2019-09-16 23:50:57 +02:00
clear: both;
2017-11-10 12:39:55 +01:00
}
2019-09-18 22:23:12 +02:00
.page_body > h1 {
2019-09-17 23:38:40 +02:00
text-shadow: 1px 1px 25px #000000;
2020-01-28 12:51:21 +01:00
text-shadow: 1px 1px 25px var(--shadow_color);
2019-09-17 23:38:40 +02:00
}
2017-11-10 12:39:55 +01:00
2019-09-16 23:50:57 +02:00
/* Page contents */
.header_image{
width: 100%;
2019-09-18 22:23:12 +02:00
max-width: 1200px;
2019-09-16 23:50:57 +02:00
margin-top: 30px;
margin-bottom: 30px;
}
2019-09-18 22:23:12 +02:00
.page_navigation a {
2018-01-07 23:05:51 +01:00
float: none;
2019-09-17 23:38:40 +02:00
display: block;
2019-09-16 23:50:57 +02:00
box-sizing: border-box;
2020-01-28 12:51:21 +01:00
color: #b2b2b2; /* Fallback */
2018-01-07 23:05:51 +01:00
color: var(--text_color);
text-align: center;
2019-12-23 23:56:57 +01:00
padding: 6px 6px;
2019-09-17 23:38:40 +02:00
margin: 0.3em 15px 0.3em 15px;
2019-12-23 23:56:57 +01:00
font-family: "light";
font-size: 1.6em;
2019-09-17 23:38:40 +02:00
overflow: hidden;
text-overflow: ellipsis;
transition: background-color 0.5s;
border-radius: 5px;
2018-01-07 23:05:51 +01:00
}
2019-09-18 22:23:12 +02:00
.page_navigation a:hover {
2020-01-28 12:51:21 +01:00
background-color: #3f3f3f;
2019-09-17 23:38:40 +02:00
background-color: var(--input_color);
2020-01-28 12:51:21 +01:00
color: #ffffff;
2019-09-18 22:23:12 +02:00
color: var(--input_text_color);
2019-09-17 23:38:40 +02:00
text-decoration: none;
2018-01-07 23:05:51 +01:00
}
2019-09-16 23:50:57 +02:00
.inset {
2020-01-28 12:51:21 +01:00
box-shadow: inset 1px 1px 20px 0 #000000;
2019-09-17 23:38:40 +02:00
box-shadow: inset 1px 1px 20px 0 var(--shadow_color);
2019-09-16 23:50:57 +02:00
}
.checkers {
text-shadow: 0 0 20px #000000;
2019-09-17 23:38:40 +02:00
padding: 30px 10px 30px 10px;
2019-09-16 23:50:57 +02:00
}
2019-12-23 23:56:57 +01:00
body, .checkers {
background-image: url("{{bgPattern}}");
}
2019-09-16 23:50:57 +02:00
2018-01-07 21:42:19 +01:00
.highlight_dark,
.highlight_middle,
.highlight_light,
2019-09-16 23:50:57 +02:00
.highlight_headerbar,
2018-01-07 21:42:19 +01:00
.highlight_green,
.highlight_blue,
2019-11-21 20:25:06 +01:00
.highlight_red,
.highlight_1,
.highlight_2,
.highlight_3,
.highlight_4 {
2017-11-10 12:39:55 +01:00
position: relative;
width: auto;
height: auto;
box-sizing: border-box;
overflow: hidden;
text-align: center;
2019-07-06 18:41:16 +02:00
padding: .5em;
2017-11-10 12:39:55 +01:00
}
2019-11-21 20:25:06 +01:00
.highlight_dark, .highlight_1 {
2019-09-16 23:50:57 +02:00
background-color: var(--layer_1_color);
2019-09-17 23:38:40 +02:00
box-shadow: 1px 1px var(--layer_1_shadow) 0 var(--shadow_color);}
2019-11-21 20:25:06 +01:00
.highlight_middle, .highlight_2 {
2019-09-16 23:50:57 +02:00
background-color: var(--layer_2_color);
2019-09-17 23:38:40 +02:00
box-shadow: 1px 1px var(--layer_2_shadow) 0 var(--shadow_color);}
2019-11-21 20:25:06 +01:00
.highlight_light, .highlight_3 {
2019-09-16 23:50:57 +02:00
background-color: var(--layer_3_color);
2019-09-17 23:38:40 +02:00
box-shadow: 1px 1px var(--layer_3_shadow) 0 var(--shadow_color);}
2019-11-21 20:25:06 +01:00
.highlight_headerbar, .highlight_4 {
2019-09-16 23:50:57 +02:00
background-color: var(--layer_4_color);
2019-09-17 23:38:40 +02:00
box-shadow: 1px 1px var(--layer_4_shadow) 0 var(--shadow_color);}
2019-07-06 18:41:16 +02:00
.highlight_green {
background-color: rgba(0, 255, 0, 0.05);
border-color: #00d000;}
.highlight_blue {
background-color: rgba(32, 32, 255, 0.2);
border-color: rgb(54, 54, 255);}
.highlight_red {
background-color: rgba(255, 0, 0, 0.1);
border-color: #B00000;}
2019-07-17 23:19:57 +02:00
.highlight_green,
.highlight_blue,
.highlight_red {
border-top-width: 1px;
border-top-style: solid;
border-bottom-width: 1px;
border-bottom-style: solid;
2019-07-06 18:41:16 +02:00
}
2018-01-07 21:42:19 +01:00
/* Common elements */
2019-07-16 22:07:10 +02:00
h1, h2, h3, h4, h5, h6 {
line-height: 1em;
margin-left: 10px;
margin-right: 10px;
}
2019-12-23 23:56:57 +01:00
h1{font-size: 2em; font-family: "light"; font-weight: normal;}
h2{font-size: 1.75em; font-family: "light"; font-weight: normal;}
h3{font-size: 1.5em; font-family: "light"; font-weight: normal;}
2020-01-17 20:32:21 +01:00
h4{font-size: 1.25em; font-family: sans-serif; font-weight: normal;}
h5{font-size: 1em; font-family: sans-serif; font-weight: normal;}
h6{font-size: .75em; font-family: sans-serif; font-weight: normal;}
2020-01-13 21:50:53 +01:00
h2, h3{border-bottom: 1px var(--layer_3_color_border) solid;} /* Differentiate it a bit, else it just looks like bold text */
2018-07-09 21:41:17 +02:00
2019-07-16 22:07:10 +02:00
p, .indent {
margin: 10px;
}
2018-01-07 21:42:19 +01:00
hr{
2019-09-17 23:38:40 +02:00
height: 1px;
2018-01-07 21:42:19 +01:00
border: none;
2019-09-17 23:38:40 +02:00
background-color: var(--input_color);
margin: 16px 16px 16px 16px;
2018-01-07 21:42:19 +01:00
}
2018-07-09 23:19:16 +02:00
a {color: var(--highlight_color); text-decoration: none;}
a:hover {color: var(--highlight_color); text-decoration: underline;}
2017-11-10 12:39:55 +01:00
2018-07-09 21:41:17 +02:00
.form{
margin-left: auto;
margin-right: auto;
text-align: left;
2019-09-17 23:38:40 +02:00
max-width: 40em;
2018-07-09 21:41:17 +02:00
}
table:not(.form) {border-collapse: collapse; width: 100%;}
2019-09-16 23:50:57 +02:00
tr:not(.form) {border-bottom: 1px var(--layer_2_color_border) solid;}
2020-01-13 21:50:53 +01:00
tr > td {padding: 0.3em;}
2019-02-07 23:09:54 +01:00
@media(max-width: 30em) {
2020-01-21 17:01:26 +01:00
/* Forms will be stacked on small screens */
tr.form > td {
box-sizing: border-box;
float: left;
width: 100%;
padding: 0.5em;
}
}
2018-07-09 21:41:17 +02:00
pre{
padding: 2px;
2019-09-16 23:50:57 +02:00
border-bottom: 1px var(--layer_2_color_border) solid;
2018-07-09 21:41:17 +02:00
overflow-x: scroll;
}
2018-01-07 21:42:19 +01:00
.big_button{
2017-11-10 12:39:55 +01:00
width: 40%;
min-width: 200px;
max-width: 400px;
2018-01-07 21:42:19 +01:00
margin: 10px !important;
2019-07-17 23:19:57 +02:00
border-radius: 5px;
font-size: 1.8em;
2018-01-07 21:42:19 +01:00
}
2018-01-17 01:16:06 +01:00
.progress_bar{
2018-01-07 21:42:19 +01:00
position: relative;
width: 100%;
height: 0;
background-color: #555;
overflow: hidden;
color: #eeeeee;
text-align: left;
white-space: nowrap;
}
2018-01-17 01:16:06 +01:00
.progressbar_inner{
2018-01-07 21:42:19 +01:00
position: absolute;
top: 0;
width: 0%;
left: 0;
height: 100%;
background-color: var(--highlight_color);;
overflow: hidden;
color: #000;
white-space: nowrap;
}
2018-01-17 01:16:06 +01:00
.progress_text{
2018-01-07 21:42:19 +01:00
overflow: hidden;
width: 100%;
white-space: nowrap;
2017-11-10 12:39:55 +01:00
}
2018-10-08 15:10:55 +02:00
.file_button{
position: relative;
box-sizing: border-box;
2019-08-11 17:16:18 +02:00
width: 300px;
max-width: 90%;
2019-08-11 17:16:18 +02:00
height: 3.6em;
margin: 10px;
padding: 0;
overflow: hidden;
2019-07-18 19:53:09 +02:00
border-radius: 2px;
2019-07-17 23:19:57 +02:00
box-shadow: 2px 2px 8px -3px var(--shadow_color);
2018-07-11 22:46:44 +02:00
background-color: var(--file_background_color);
2019-04-10 20:33:14 +02:00
color: #bfbfbf; /* Fallback */
color: var(--text_color);
word-break: break-all;
text-align: left;
2019-07-18 19:53:09 +02:00
line-height: 1.2em;
2018-07-08 14:40:20 +02:00
display: inline-block;
2019-02-20 22:46:35 +01:00
transition: box-shadow 0.3s, opacity 2s;
2019-07-18 19:53:09 +02:00
white-space: normal;
2019-07-18 20:01:33 +02:00
text-overflow: ellipsis;
2019-07-18 20:24:58 +02:00
vertical-align: top;
2020-01-20 19:55:51 +01:00
cursor: pointer;
}
2019-07-18 19:53:09 +02:00
.file_button:hover,
.file_button_selected {
box-shadow: 0px 0px 3px 3px var(--highlight_color);
2018-10-08 15:10:55 +02:00
text-decoration: none;
2019-04-10 20:33:14 +02:00
color: #bfbfbf; /* Fallback */
2018-10-08 15:10:55 +02:00
color: var(--text_color);
}
.file_button > img{
2019-07-18 19:53:09 +02:00
max-height: 100%;
max-width: 25%;
margin-right: 5px;
float: left;
display: block;
}
2020-01-20 12:43:43 +01:00
.file_button > .file_button_title{
color: var(--highlight_color);
}
2017-11-10 12:39:55 +01:00
/* Form fields */
2018-07-09 21:41:17 +02:00
.form_input {width: 100%;}
2018-01-07 21:42:19 +01:00
/* BUTTONS */
button,
2018-07-09 23:19:16 +02:00
.button,
input[type="submit"],
2018-01-07 21:42:19 +01:00
input[type="button"],
input[type="color"],
2019-12-23 23:56:57 +01:00
select {
2018-07-09 23:19:16 +02:00
display: inline-block;
box-sizing: border-box;
2019-07-17 23:19:57 +02:00
border-radius: 2px;
2018-01-24 10:56:53 +01:00
border: none;
2019-07-17 23:19:57 +02:00
margin: 3px;
2018-07-11 22:46:44 +02:00
background: linear-gradient(var(--input_color), var(--input_color_dark));
padding: .4em .5em .4em .5em;
2019-07-17 23:19:57 +02:00
box-shadow: 2px 2px 6px -3px var(--shadow_color);
font-size: 0.9em;
line-height: 1em;
2019-02-19 12:57:31 +00:00
overflow: hidden;
2018-07-09 23:19:16 +02:00
text-decoration: none;
2019-04-10 20:33:14 +02:00
color: #bfbfbf; /* Fallback */
2018-07-11 22:46:44 +02:00
color: var(--input_text_color);
2018-01-07 21:42:19 +01:00
outline: 0;
vertical-align: middle;
cursor: pointer;
2019-02-19 12:55:40 +00:00
transition: padding 0.25s, box-shadow 0.25s;
2018-01-07 21:42:19 +01:00
}
button:hover,
2018-07-09 23:19:16 +02:00
.button:hover,
input[type="submit"]:hover,
2018-01-07 21:42:19 +01:00
input[type="button"]:hover,
input[type="color"]:hover,
select:hover,
button:focus,
2018-07-09 23:19:16 +02:00
.button:focus,
input[type="submit"]:focus,
2018-01-07 21:42:19 +01:00
input[type="button"]:focus,
input[type="color"]:focus,
2019-12-23 23:56:57 +01:00
select:focus {
2019-04-10 20:33:14 +02:00
color: #bfbfbf; /* Fallback */
2018-07-11 22:46:44 +02:00
color: var(--input_text_color);
2018-07-09 23:19:16 +02:00
text-decoration: none;
2019-07-17 23:19:57 +02:00
box-shadow: var(--highlight_border), 2px 2px 6px -3px var(--shadow_color);
2017-11-10 12:39:55 +01:00
}
2018-01-07 21:42:19 +01:00
button:active,
2018-07-09 23:19:16 +02:00
.button:active,
input[type="submit"]:active,
2018-01-07 21:42:19 +01:00
input[type="button"]:active,
input[type="color"]:active,
select:active{
2018-07-11 22:46:44 +02:00
background: linear-gradient(var(--input_color_dark), var(--input_color));
2019-07-06 18:41:16 +02:00
box-shadow: inset 4px 4px 8px var(--shadow_color);
padding: .6em .3em .2em .7em; /* Exactly .2em offset compared to the inactive padding to give a depth effect */
2018-01-07 21:42:19 +01:00
}
2019-07-17 23:19:57 +02:00
.button_full_width {width: calc(100% - 6px);}
2018-07-11 22:46:44 +02:00
.button_highlight {background: linear-gradient(var(--highlight_color), var(--highlight_color_dark)) !important; color: var(--highlight_text_color) !important;}
.button_highlight:active{background: linear-gradient(var(--highlight_color_dark), var(--highlight_color)) !important; color: var(--highlight_text_color) !important;}
2019-07-17 23:19:57 +02:00
.button_red {background: linear-gradient(var(--danger_color), var(--danger_color_dark)) !important; color: var(--highlight_text_color) !important;}
.button_red:active {background: linear-gradient(var(--danger_color_dark), var(--danger_color)) !important; color: var(--highlight_text_color) !important;}
2017-11-10 12:39:55 +01:00
2018-01-07 21:42:19 +01:00
/* Dropdown list of the select tag */
2019-04-10 20:33:14 +02:00
option{
background-color: var(--input_color_dark);
color: #bfbfbf; /* Fallback */
color: var(--text_color);
}
2018-01-07 21:42:19 +01:00
/* TEXT FIELDS */
textarea,
2018-07-09 23:19:16 +02:00
.groove,
2018-01-07 21:42:19 +01:00
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"]{
border: none;
box-sizing: border-box;
border-radius: 4px;
2018-07-11 22:46:44 +02:00
background: linear-gradient(var(--input_color_dark), var(--input_color));
2019-07-17 23:19:57 +02:00
box-shadow: inset 2px 2px 6px -3px var(--shadow_color);
2018-01-07 21:42:19 +01:00
padding: 3px 5px;
2018-07-11 22:46:44 +02:00
color: var(--input_text_color);
2018-01-07 21:42:19 +01:00
height: 26px;
2019-02-20 22:46:35 +01:00
font-size: 1em;
2019-07-18 20:24:58 +02:00
vertical-align: middle;
2018-01-07 21:42:19 +01:00
outline: 0;
2019-02-19 10:28:40 +01:00
transition: box-shadow 0.3s;
2017-11-10 12:39:55 +01:00
}
2018-01-07 21:42:19 +01:00
textarea:active,
input[type="text"]:active,
input[type="password"]:active,
input[type="email"]:active,
input[type="number"]:active,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus{
2019-07-17 23:19:57 +02:00
box-shadow: var(--highlight_border), inset 3px 3px 6px -3px var(--shadow_color);
2017-11-10 12:39:55 +01:00
}
input[type=file]{
visibility: hidden;
position: static;
width: 0;
height: 0;
}
2020-01-27 16:56:16 +01:00
/* Webkit Scrollbars */
::-webkit-scrollbar{
width: 18px; /* for vertical scrollbars */
height: 18px; /* for horizontal scrollbars */
}
::-webkit-scrollbar-track {
background: var(--scrollbar_background_color);
}
::-webkit-scrollbar-thumb {
background-color: var(--scrollbar_foreground_color);
border-radius: 10px;
border: 5px solid var(--scrollbar_background_color);
}
::-webkit-scrollbar-thumb:hover {
background-color: var(--scrollbar_hover_color);
}
::-webkit-scrollbar-corner{
background-color: var(--scrollbar_background_color);
}
::-webkit-scrollbar-button:single-button {
background-color: var(--scrollbar_background_color);
display: block;
border-style: solid;
height: 10px;
width: 10px;
}
::-webkit-scrollbar-button:single-button:vertical:decrement {
border-width: 0 8px 8px 8px;
border-color: transparent transparent var(--scrollbar_foreground_color) transparent;
}
::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
border-color: transparent transparent var(--scrollbar_hover_color) transparent;
}
::-webkit-scrollbar-button:single-button:vertical:increment {
border-width: 8px 8px 0 8px;
border-color: var(--scrollbar_foreground_color) transparent transparent transparent;
}
::-webkit-scrollbar-button:vertical:single-button:increment:hover {
border-color: var(--scrollbar_hover_color) transparent transparent transparent;
}
::-webkit-scrollbar-button:single-button:horizontal:decrement {
border-width: 8px 8px 8px 0px;
border-color: transparent var(--scrollbar_foreground_color) transparent transparent;
}
::-webkit-scrollbar-button:single-button:horizontal:decrement:hover {
border-color: transparent var(--scrollbar_hover_color) transparent transparent;
}
::-webkit-scrollbar-button:single-button:horizontal:increment {
border-width: 8px 0px 8px 8px;
border-color: transparent transparent transparent var(--scrollbar_foreground_color);
}
::-webkit-scrollbar-button:horizontal:single-button:increment:hover {
border-color: transparent transparent transparent var(--scrollbar_hover_color);
}
/* Firefox Scrollbar */
* {
/* scrollbar-color: var(--scrollbar_foreground_color) var(--scrollbar_background_color); */
scrollbar-color: dark;
}