Problem-2038-site/fullscreen-style.css

67 lines
1.3 KiB
CSS
Raw Normal View History

@font-face{
font-family: '7Digital';
src: url('Orloj.otf');
font-weight: normal;
font-style: monospace;
}
2020-07-03 16:11:24 +00:00
body{
background-color: #000;
color: #fff;
font-family: 'Heebo', sans-serif;
height: 100vh;
display: flex;
flex-flow: column nowrap;
justify-content: center;
margin: 0 8px;
2020-07-03 16:11:24 +00:00
}
#prog{
width: 100%;
}
2022-01-31 19:41:53 +00:00
#title_ru, #title_en{
2020-07-03 16:11:24 +00:00
position: fixed;
2022-01-31 19:41:53 +00:00
text-align: center;
2020-07-03 16:11:24 +00:00
top: 0;
width: calc(100% - 16px);
}
#time{
font-size: 12em;
width: calc(100% - 16px);
height: 100%;
font-family: '7Digital';
2020-07-03 16:11:24 +00:00
display: flex;
align-items: baseline;
2020-07-03 16:11:24 +00:00
align-content: center;
justify-content: center;
overflow: auto;
cursor: pointer;
}
#time-left-msec{
font-size: 4rem;
2020-07-03 16:11:24 +00:00
}
#time-left-readable{
text-align: center;
cursor: pointer;
}
#bar{
position: fixed;
bottom: 0;
width: calc(100% - 16px);
2020-07-03 16:11:24 +00:00
}
#button-to-fullscreen, #button-fullscreen-exit{
2022-01-31 19:41:53 +00:00
transition: 500ms;
2020-07-03 16:11:24 +00:00
position: absolute;
left: 25px;
top: 35px;
cursor: pointer;
color: #333;
z-index: 1;
}
#button-to-fullscreen:hover, #button-fullscreen-exit:hover{
color: #fff;
}
#button-to-fullscreen, #description_ru, #description_en, footer, #language-selector, #other_countdowns{
2020-07-03 16:11:24 +00:00
display: none;
}
#title{
text-align: center;
}