mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
Fixing some color elements
This commit is contained in:
parent
578cd73fe4
commit
da04ee1459
@ -271,12 +271,6 @@ body {
|
||||
color: var(--red) !important;
|
||||
}
|
||||
|
||||
/* Useless ?
|
||||
.input_motd {
|
||||
max-width: 10px;
|
||||
max-height: 10px;
|
||||
}*/
|
||||
|
||||
/**************************************************************/
|
||||
|
||||
/**************************************************************/
|
||||
|
@ -1,17 +1,4 @@
|
||||
: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;
|
||||
--indigo: #6610f2;
|
||||
--purple: #ab8ce4;
|
||||
@ -25,6 +12,7 @@
|
||||
--white: var(--white);
|
||||
--white-smoke: var(--white-smoke);
|
||||
--gray: var(--gray);
|
||||
--gray-dark: #292b2c;
|
||||
--gray-light: #8ba2b5;
|
||||
--gray-lightest: var(--gray-lightest);
|
||||
--primary: var(--primary);
|
||||
|
@ -6,7 +6,7 @@ a:hover {
|
||||
}
|
||||
|
||||
.blink-text {
|
||||
color: #000;
|
||||
color: var(--base-text);
|
||||
font-weight: bold;
|
||||
font-size: 2rem;
|
||||
animation: blinkingText 2s infinite;
|
||||
@ -14,15 +14,15 @@ a:hover {
|
||||
|
||||
@keyframes blinkingText {
|
||||
0% {
|
||||
color: grey;
|
||||
color: var(--base-text);
|
||||
}
|
||||
|
||||
50% {
|
||||
color: red;
|
||||
color: var(--red);
|
||||
}
|
||||
|
||||
100% {
|
||||
color: grey;
|
||||
color: var(--base-text);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,19 +1,15 @@
|
||||
/*#creation_wizard {
|
||||
-webkit-filter: grayscale(1);
|
||||
}*/
|
||||
|
||||
.api-alert {
|
||||
position: absolute;
|
||||
top: -5px;
|
||||
left: 0;
|
||||
font-size: 50px !important;
|
||||
color: #fff;
|
||||
background: rgb(0, 170, 170);
|
||||
opacity: .4;
|
||||
color: var(--white);
|
||||
background: var(--blue);
|
||||
/* rgb(0, 170, 170);*/
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 100;
|
||||
opacity: .99;
|
||||
opacity: .95;
|
||||
}
|
||||
|
||||
.api-alert p {
|
||||
@ -25,12 +21,12 @@
|
||||
font-size: 20px;
|
||||
-ms-transform: translate(-50%, -50%);
|
||||
transform: translate(-50%, -50%);
|
||||
color: white !important;
|
||||
color: var(--white) !important;
|
||||
}
|
||||
|
||||
.api-alert p>i,
|
||||
.api-alert p>a {
|
||||
color: red;
|
||||
color: var(--red);
|
||||
}
|
||||
|
||||
button>i.refresh-class {
|
||||
@ -124,24 +120,6 @@ button>i.refresh-class {
|
||||
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 {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
|
Loading…
Reference in New Issue
Block a user