Problem-2038-site/style.css

75 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-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{
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;
}
#button-to-fullscreen:hover, #button-fullscreen-exit:hover{
color: #fff;
}
2022-01-31 19:41:53 +00:00
#button-fullscreen-exit, #title_en, #description_en{
2020-07-03 16:11:24 +00:00
display: none;
}
2022-01-31 19:41:53 +00:00
#title_ru, #title_en{
2020-06-26 11:52:22 +00:00
text-align: center;
}
2022-01-31 19:41:53 +00:00
a{
transition: 500ms;
color: #333;
text-decoration: none;
}
a:hover{
color: #fff;
}
2020-06-26 11:52:22 +00:00
a:visited{
2022-01-31 19:41:53 +00:00
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;
2020-06-26 11:52:22 +00:00
color: #fff;
}