Старт

This commit is contained in:
2023-11-07 19:51:49 +06:00
commit 86542a157f
5002 changed files with 199551 additions and 0 deletions

62
monitoring/index.css Normal file
View 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;
}
}