37 lines
589 B
CSS
37 lines
589 B
CSS
|
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap');
|
||
|
|
||
|
* {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background-color: #8e44ad;
|
||
|
color: #fff;
|
||
|
font-family: 'Roboto Mono', sans-serif;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
height: 100vh;
|
||
|
overflow: hidden;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.counter-container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
text-align: center;
|
||
|
margin: 30px 50px;
|
||
|
}
|
||
|
|
||
|
.counter {
|
||
|
font-size: 60px;
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
|
||
|
@media (max-width: 580px) {
|
||
|
body {
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
}
|