Fixing some color elements

This commit is contained in:
Silversthorn 2024-08-14 22:29:36 +02:00
parent 578cd73fe4
commit da04ee1459
4 changed files with 11 additions and 51 deletions

View File

@ -271,12 +271,6 @@ body {
color: var(--red) !important; color: var(--red) !important;
} }
/* Useless ?
.input_motd {
max-width: 10px;
max-height: 10px;
}*/
/**************************************************************/ /**************************************************************/
/**************************************************************/ /**************************************************************/

View File

@ -1,17 +1,4 @@
:root { :root {
--blue: #00aeef;
--indigo: #6610f2;
--purple: #ab8ce4;
--pink: #E91E63;
--red: var(--red);
--orange: #fb9678;
--yellow: #ffd500;
--green: #3bd949;
--teal: var(--teal);
--cyan: var(--cyan);
--white: var(--white);
--gray: var(--gray);
--gray-dark: #292b2c;
--blue: #00aeef; --blue: #00aeef;
--indigo: #6610f2; --indigo: #6610f2;
--purple: #ab8ce4; --purple: #ab8ce4;
@ -25,6 +12,7 @@
--white: var(--white); --white: var(--white);
--white-smoke: var(--white-smoke); --white-smoke: var(--white-smoke);
--gray: var(--gray); --gray: var(--gray);
--gray-dark: #292b2c;
--gray-light: #8ba2b5; --gray-light: #8ba2b5;
--gray-lightest: var(--gray-lightest); --gray-lightest: var(--gray-lightest);
--primary: var(--primary); --primary: var(--primary);

View File

@ -6,7 +6,7 @@ a:hover {
} }
.blink-text { .blink-text {
color: #000; color: var(--base-text);
font-weight: bold; font-weight: bold;
font-size: 2rem; font-size: 2rem;
animation: blinkingText 2s infinite; animation: blinkingText 2s infinite;
@ -14,15 +14,15 @@ a:hover {
@keyframes blinkingText { @keyframes blinkingText {
0% { 0% {
color: grey; color: var(--base-text);
} }
50% { 50% {
color: red; color: var(--red);
} }
100% { 100% {
color: grey; color: var(--base-text);
} }
} }

View File

@ -1,19 +1,15 @@
/*#creation_wizard {
-webkit-filter: grayscale(1);
}*/
.api-alert { .api-alert {
position: absolute; position: absolute;
top: -5px; top: -5px;
left: 0; left: 0;
font-size: 50px !important; font-size: 50px !important;
color: #fff; color: var(--white);
background: rgb(0, 170, 170); background: var(--blue);
opacity: .4; /* rgb(0, 170, 170);*/
width: 100%; width: 100%;
height: 100%; height: 100%;
z-index: 100; z-index: 100;
opacity: .99; opacity: .95;
} }
.api-alert p { .api-alert p {
@ -25,12 +21,12 @@
font-size: 20px; font-size: 20px;
-ms-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
color: white !important; color: var(--white) !important;
} }
.api-alert p>i, .api-alert p>i,
.api-alert p>a { .api-alert p>a {
color: red; color: var(--red);
} }
button>i.refresh-class { button>i.refresh-class {
@ -124,24 +120,6 @@ button>i.refresh-class {
overflow-y: auto; overflow-y: auto;
} }
.menu-btn {
font-size: 0.9em;
padding: 2px 10px;
}
.menu {
padding-top: 10px;
z-index: 200;
margin-top: 4px;
position: absolute;
background-color: #2a2c44;
}
.menu-option {
padding: 6px 20px 6px;
color: white;
}
#overlay { #overlay {
position: absolute; position: absolute;
top: 0px; top: 0px;