63 lines
1.0 KiB
CSS
63 lines
1.0 KiB
CSS
@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;
|
|
}
|
|
}
|