Старт
This commit is contained in:
80
observation/index.css
Normal file
80
observation/index.css
Normal file
@ -0,0 +1,80 @@
|
||||
@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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user