2022-06-03 19:49:05 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Eurostile Round';
|
2022-12-11 14:50:14 +00:00
|
|
|
src: local('Eurostile Round Medium'), local('EurostileRound-Medium'), url('https://dan63.by/static/EurostileRound-Medium.ttf') format('truetype');
|
2022-06-03 19:49:05 +00:00
|
|
|
font-weight: 500;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Eurostile Round Extended';
|
2022-12-11 14:50:14 +00:00
|
|
|
src: local('Eurostile Round Extended Regular'), local('EurostileRoundExtended-Regular'), url('https://dan63.by/static/EurostileRoundExtended-Regular.ttf') format('truetype');
|
2022-04-26 14:35:16 +00:00
|
|
|
font-weight: normal;
|
2022-06-03 19:49:05 +00:00
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Eurostile Round Extended';
|
2022-12-11 14:50:14 +00:00
|
|
|
src: local('Eurostile Round Extended Black'), local('EurostileRoundExtended-Black'), url('https://dan63.by/static/EurostileRoundExtended-Black.ttf') format('truetype');
|
2022-06-03 19:49:05 +00:00
|
|
|
font-weight: 900;
|
|
|
|
font-style: normal;
|
2022-04-26 14:35:16 +00:00
|
|
|
}
|
|
|
|
body{
|
|
|
|
background-color: #000;
|
|
|
|
color: #fff;
|
2022-06-03 19:49:05 +00:00
|
|
|
font-family: 'Eurostile Round';
|
|
|
|
font-weight: 500;
|
|
|
|
font-style: normal;
|
2022-04-26 14:35:16 +00:00
|
|
|
height: 100vh;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
justify-content: center;
|
|
|
|
margin: 0 8px;
|
|
|
|
}
|
|
|
|
#prog{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
#title_ru, #title_en{
|
|
|
|
position: fixed;
|
|
|
|
text-align: center;
|
|
|
|
top: 0;
|
|
|
|
width: calc(100% - 16px);
|
2022-06-03 19:49:05 +00:00
|
|
|
font-family: 'Eurostile Round Extended';
|
|
|
|
font-weight: 900;
|
|
|
|
font-style: normal;
|
2022-04-26 14:35:16 +00:00
|
|
|
}
|
|
|
|
#time{
|
2023-06-25 19:09:26 +00:00
|
|
|
font-size: 10vw;
|
2022-04-26 14:35:16 +00:00
|
|
|
width: calc(100% - 16px);
|
|
|
|
height: 100%;
|
2022-06-03 19:49:05 +00:00
|
|
|
font-family: 'Eurostile Round Extended';
|
|
|
|
font-weight: 900;
|
|
|
|
font-style: normal;
|
2022-04-26 14:35:16 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: baseline;
|
|
|
|
align-content: center;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: auto;
|
|
|
|
cursor: pointer;
|
2022-10-01 16:44:46 +00:00
|
|
|
text-shadow: 0px 0px 4px #fff4, 0px 0px 10px #fff5, 0px 0px 20px #fff4, 0px 0px 100px #fff4;
|
2022-04-26 14:35:16 +00:00
|
|
|
}
|
|
|
|
#time-left-msec{
|
2023-06-25 19:09:26 +00:00
|
|
|
font-size: 2vw;
|
2022-04-26 14:35:16 +00:00
|
|
|
}
|
|
|
|
#time-left-readable{
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#bar{
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
width: calc(100% - 16px);
|
|
|
|
}
|
|
|
|
#button-to-fullscreen, #button-fullscreen-exit{
|
2023-07-01 16:42:08 +00:00
|
|
|
transition: 100ms ease-out;
|
2022-04-26 14:35:16 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 25px;
|
|
|
|
top: 35px;
|
|
|
|
cursor: pointer;
|
2023-07-01 16:42:08 +00:00
|
|
|
color: #666;
|
2022-04-26 14:35:16 +00:00
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
#button-to-fullscreen:hover, #button-fullscreen-exit:hover{
|
|
|
|
color: #fff;
|
2023-07-01 16:42:08 +00:00
|
|
|
filter: drop-shadow(0px 0px 1px white) drop-shadow(0px 0px 8px white);
|
2022-04-26 14:35:16 +00:00
|
|
|
}
|
|
|
|
#button-to-fullscreen, #description_ru, #description_en, footer, #language-selector, #other_countdowns{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#title{
|
|
|
|
text-align: center;
|
2020-07-03 16:11:24 +00:00
|
|
|
}
|