Files
GEOVizor_PHP/observation/index.css
2023-11-07 19:51:49 +06:00

81 lines
1.5 KiB
CSS

@charset "UTF-8";
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: local('Roboto Light'), local('Roboto-Light'), url('../resources/fonts/Roboto/Roboto-Light.ttf') format('woff')
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url('../resources/fonts/Roboto/Roboto-Medium.ttf') format('woff')
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: local('Roboto Bold'), local('Roboto-Bold'), url('../resources/fonts/Roboto/Roboto-Bold.ttf') format('woff')
}
body{
scrollbar-base-color:#369;
background-color: #3a3a3a;
}
table
{
font-size: 14px;
font-family: 'Roboto',sans-serif;
}
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;
}
}