Problem-2038-site/fullscreen-style.css

68 lines
1.2 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%;
}
#title{
2020-07-03 16:11:24 +00:00
position: fixed;
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{
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, footer{
2020-07-03 16:11:24 +00:00
display: none;
}
#title{
text-align: center;
}
a:visited{
color: #fff;
}