2024-09-18 10:02:32 +02:00
|
|
|
:root {
|
|
|
|
color-scheme: dark light;
|
|
|
|
|
|
|
|
--primary: #cc2027;
|
|
|
|
--primary-darken: #8E161B;
|
|
|
|
--primary-lighten: #D64C52;
|
|
|
|
--primary-text-contrast: #FFF;
|
|
|
|
|
|
|
|
--secondary: #20ccc5;
|
|
|
|
--secondary-darken: #168E89;
|
|
|
|
--secondary-lighten: #4CD6D0;
|
|
|
|
--secondary-text-contrast: #FFF;
|
|
|
|
|
|
|
|
--error: #c43933;
|
|
|
|
--error-darken: #892723;
|
|
|
|
--error-lighten: #CF605B;
|
|
|
|
--error-text-contrast: #FFF;
|
|
|
|
|
|
|
|
--info: #206ccc;
|
|
|
|
--info-darken: #164B8E;
|
|
|
|
--info-lighten: #4C89D6;
|
|
|
|
--info-text-contrast: #FFF;
|
|
|
|
|
|
|
|
--success: #7dcc20;
|
|
|
|
--success-darken: #578E16;
|
|
|
|
--success-lighten: #97D64C;
|
|
|
|
--success-text-contrast: #000;
|
|
|
|
|
|
|
|
--warning: #cc5e20;
|
|
|
|
--warning-darken: #8E4116;
|
|
|
|
--warning-lighten: #D67E4C;
|
|
|
|
--warning-text-contrast: #FFF;
|
|
|
|
|
|
|
|
--background-color: light-dark(#fffbfb, #171414);
|
|
|
|
--background-color-darken: light-dark(#B2AFAF, #100E0E);
|
|
|
|
--background-color-lighten: light-dark(#FFFBFB, #454343);
|
|
|
|
|
|
|
|
--header-background-color: light-dark(#171414, #fffbfb);
|
|
|
|
--header-background-color-darken: light-dark(#100E0E, #B2AFAF);
|
|
|
|
--header-background-color-lighten: light-dark(#454343, #FFFBFB);
|
|
|
|
|
|
|
|
--header-text-color: light-dark(#fffbfb, #171414);
|
|
|
|
--header-text-color-secondary: #ffffffb3;
|
|
|
|
--header-text-color-disable: light-dark(#ffffff80, #454343);
|
|
|
|
|
|
|
|
--text-color: light-dark(#171414, #fffbfb);
|
|
|
|
--text-color-secondary: #ffffffb3;
|
|
|
|
--text-color-disable: light-dark(#454343, #ffffff80);
|
|
|
|
|
|
|
|
--text-color-inverse: light-dark(#fffbfb, #171414);
|
|
|
|
--text-color-secondary-inverse: #ffffffb3;
|
|
|
|
--text-color-disable-inverse: light-dark(#ffffff80, #454343);
|
|
|
|
|
|
|
|
--h1-color: var(--primary);
|
|
|
|
--h2-color: #c33d35;
|
|
|
|
--h3-color: #b94f44;
|
|
|
|
--h4-color: #ae5e52;
|
|
|
|
--h5-color: #a16a61;
|
|
|
|
--h6-color: #927671;
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-theme="light"] {
|
|
|
|
--background-color: #fffbfb;
|
|
|
|
--text-color: #171414;
|
|
|
|
--text-color-inverse: #fffbfb;
|
|
|
|
.title:hover {
|
|
|
|
color: var(--text-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-theme="dark"] {
|
|
|
|
table {
|
|
|
|
color: var(--text-color);
|
|
|
|
}
|
|
|
|
.title:hover {
|
|
|
|
color: var(--text-color-inverse);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-21 11:42:36 +02:00
|
|
|
html {
|
|
|
|
font-family: arial, sans-serif;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 2em;
|
2024-09-18 10:02:32 +02:00
|
|
|
background-color: var(--background-color);
|
|
|
|
overflow: auto;
|
|
|
|
color: var(--text-color);
|
2023-06-21 11:42:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
|
|
|
body,
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
font-family: "Roboto", sans-serif;
|
|
|
|
}
|
|
|
|
|
2024-09-18 10:02:32 +02:00
|
|
|
h1 {
|
|
|
|
color: var(--primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
/*color: var(--primary);*/
|
|
|
|
}
|
|
|
|
|
2023-06-21 11:42:36 +02:00
|
|
|
.w3-sidebar {
|
|
|
|
z-index: 3;
|
|
|
|
width: 250px;
|
|
|
|
height: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2024-09-18 10:02:32 +02:00
|
|
|
color: var(--primary);
|
2023-06-21 11:42:36 +02:00
|
|
|
}
|
|
|
|
|
2024-09-18 10:02:32 +02:00
|
|
|
a:hover {
|
2023-06-21 11:42:36 +02:00
|
|
|
text-decoration: none;
|
2024-09-18 10:02:32 +02:00
|
|
|
color: var(--primary-darken)
|
2023-06-21 11:42:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
2024-09-18 10:02:32 +02:00
|
|
|
color: var(--primary);
|
2023-06-21 11:42:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.centerBlock {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.homeForm {
|
|
|
|
width: 49.9%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.w3-bar {
|
2024-09-18 10:02:32 +02:00
|
|
|
background-color: var(--background-color) !important;
|
2023-06-21 11:42:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#mySidebar {
|
2024-09-18 10:02:32 +02:00
|
|
|
top: 84px;
|
|
|
|
background-color: var(--header-background-color);
|
2023-06-21 11:42:36 +02:00
|
|
|
}
|
|
|
|
|
2024-09-18 10:02:32 +02:00
|
|
|
#mySidebar>:hover {
|
2023-06-21 11:42:36 +02:00
|
|
|
text-decoration: none;
|
2024-09-18 10:02:32 +02:00
|
|
|
color: var(--primary-darken);
|
2023-06-21 11:42:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.w3-bar-block .w3-bar-item {
|
|
|
|
padding: 4px 16px;
|
|
|
|
}
|
|
|
|
|
2023-06-29 11:57:38 +02:00
|
|
|
.w3-bar {
|
2024-09-18 10:02:32 +02:00
|
|
|
background-color: var(--header-background-color) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.w3-bar-item-selected {
|
|
|
|
background-color: var(--secondary);
|
|
|
|
color: var(--secondary-text-contrast);
|
2023-06-29 11:57:38 +02:00
|
|
|
}
|
|
|
|
|
2023-06-21 11:42:36 +02:00
|
|
|
#myFooter {
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.w3-main {
|
2023-06-29 11:57:38 +02:00
|
|
|
margin: 64px auto 46px 270px;
|
2023-06-21 11:42:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.soshot-main {
|
|
|
|
padding-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
form label {
|
|
|
|
width: 48% !important;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: right;
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.w3-input,
|
|
|
|
.w3-select {
|
|
|
|
display: inline-block;
|
|
|
|
width: 48%;
|
|
|
|
}
|
|
|
|
|
2024-09-18 10:02:32 +02:00
|
|
|
.w3-input {
|
|
|
|
background-color: var(--primary-lighten);
|
|
|
|
color: var(--text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
button,
|
|
|
|
.w3-button {
|
|
|
|
background-color: var(--primary) !important;
|
|
|
|
color: var(--text-color) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:hover,
|
|
|
|
.w3-button:hover {
|
|
|
|
background-color: var(--primary-darken) !important;
|
|
|
|
color: var(--text-color-inverse) !important;
|
|
|
|
}
|
|
|
|
|
2024-03-19 17:02:33 +01:00
|
|
|
.zoom {
|
|
|
|
cursor: zoom-in;
|
|
|
|
}
|
|
|
|
|
2024-09-18 10:02:32 +02:00
|
|
|
.delete,
|
|
|
|
.notGen {
|
|
|
|
color: var(--error);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gen {
|
|
|
|
color: var(--success);
|
|
|
|
}
|
|
|
|
|
|
|
|
.pending {
|
|
|
|
color: var(--warning);
|
|
|
|
}
|
|
|
|
|
|
|
|
#myFooter {
|
|
|
|
background-color: var(--header-background-color);
|
|
|
|
color: var(--header-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
#myFooter a:hover {
|
|
|
|
color: var(--primary-darken);
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
color: var(--text-color-inverse);
|
|
|
|
padding: .5em;
|
|
|
|
}
|
|
|
|
|
2023-06-21 11:42:36 +02:00
|
|
|
@media (max-width:768px) {
|
|
|
|
|
|
|
|
#mySidebar {
|
2024-09-18 10:02:32 +02:00
|
|
|
background-color: var(--header-background-color) !important;
|
2023-06-21 11:42:36 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|