Problem-2038-site/style.css

99 lines
2.2 KiB
CSS
Raw Normal View History

2022-06-03 19:20:55 +00:00
@font-face {
font-family: 'Eurostile Round';
src: local('Eurostile Round Medium'), local('EurostileRound-Medium'), url('fonts/EurostileRound-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Eurostile Round Extended';
src: local('Eurostile Round Extended Regular'), local('EurostileRoundExtended-Regular'), url('fonts/EurostileRoundExtended-Regular.ttf') format('truetype');
font-weight: normal;
2022-06-03 19:20:55 +00:00
font-style: normal;
}
@font-face {
font-family: 'Eurostile Round Extended';
src: local('Eurostile Round Extended Black'), local('EurostileRoundExtended-Black'), url('fonts/EurostileRoundExtended-Black.ttf') format('truetype');
font-weight: 900;
font-style: normal;
}
body{
background-color: #000;
color: #fff;
2022-06-03 19:20:55 +00:00
font-family: 'Eurostile Round';
font-weight: 500;
font-style: normal;
}
#prog{
width: 100%;
}
#time{
text-align: center;
font-size: 10em;
2022-06-03 19:20:55 +00:00
font-family: 'Eurostile Round Extended';
font-weight: 900;
font-style: normal;
cursor: pointer;
}
#time-left-msec{
font-size: 2rem;
}
#time-left-readable{
text-align: center;
cursor: pointer;
}
#button-to-fullscreen, #button-fullscreen-exit{
transition: 500ms;
position: absolute;
left: 25px;
top: 35px;
cursor: pointer;
color: #333;
}
#button-to-fullscreen:hover, #button-fullscreen-exit:hover{
color: #fff;
}
#button-fullscreen-exit, #title_en, #description_en{
display: none;
}
#title_ru, #title_en{
text-align: center;
2022-06-03 19:20:55 +00:00
font-family: 'Eurostile Round Extended';
font-weight: 900;
font-style: normal;
}
h3{
font-family: 'Eurostile Round Extended';
font-weight: 900;
font-style: normal;
}
a{
transition: 500ms;
color: #333;
text-decoration: none;
}
a:hover{
color: #fff;
}
a:visited{
color: #999;
}
a:visited:hover{
color: #fff;
}
#language-selector{
position: absolute;
right: 25px;
top: 35px;
color: #333;
}
#lang-name, #rus{
padding-right: 7px;
}
#rus, #eng{
transition: 500ms;
}
#rus:hover, #eng:hover{
cursor: pointer;
color: #fff;
2020-06-26 11:52:22 +00:00
}