Problem-2038-site/style.css

46 lines
782 B
CSS
Raw Normal View History

@font-face{
font-family: '7Digital';
src: url('Orloj.otf');
font-weight: normal;
font-style: monospace;
}
2020-06-26 11:52:22 +00:00
body{
background-color: #000;
color: #fff;
font-family: 'Heebo', sans-serif;
}
#prog{
width: 100%;
}
2020-07-03 16:11:24 +00:00
#time{
text-align: center;
2020-06-28 10:48:25 +00:00
font-size: 10em;
font-family: '7Digital';
cursor: pointer;
}
#time-left-msec{
font-size: 2rem;
2020-06-26 11:52:22 +00:00
}
#time-left-readable{
text-align: center;
2020-06-27 19:16:43 +00:00
cursor: pointer;
2020-06-26 11:52:22 +00:00
}
2020-07-03 16:11:24 +00:00
#button-to-fullscreen, #button-fullscreen-exit{
position: absolute;
left: 25px;
top: 35px;
cursor: pointer;
color: #333;
}
#button-to-fullscreen:hover, #button-fullscreen-exit:hover{
color: #fff;
}
#button-fullscreen-exit{
display: none;
}
2020-06-26 11:52:22 +00:00
#title{
text-align: center;
}
a:visited{
color: #fff;
}