Старт
This commit is contained in:
62
monitoring/index.css
Normal file
62
monitoring/index.css
Normal file
@ -0,0 +1,62 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
body{
|
||||
background-color: #3a3a3a;
|
||||
|
||||
scrollbar-base-color:#369;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: var(--btn-color) var(--back-color-2);
|
||||
}
|
||||
|
||||
table
|
||||
{
|
||||
font-size: 14px;
|
||||
font-family: Arial;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], textarea {
|
||||
background-color : #454555;
|
||||
}
|
||||
|
||||
select option {
|
||||
background: var(--row-color-2);
|
||||
color: var(--text-color-1);
|
||||
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
select {
|
||||
background: #454555;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
a {
|
||||
color: #adadff;
|
||||
}
|
||||
|
||||
blink {
|
||||
-webkit-animation: 1s linear infinite condemned_blink_effect;
|
||||
animation: 1s linear infinite condemned_blink_effect;
|
||||
}
|
||||
@-webkit-keyframes condemned_blink_effect {
|
||||
0% {
|
||||
visibility: hidden;
|
||||
}
|
||||
50% {
|
||||
visibility: hidden;
|
||||
}
|
||||
100% {
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
@keyframes condemned_blink_effect {
|
||||
0% {
|
||||
visibility: hidden;
|
||||
}
|
||||
50% {
|
||||
visibility: hidden;
|
||||
}
|
||||
100% {
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user