100-project-100-days-website/100_projects/74-visual-counter/style.css
2023-05-06 18:52:10 +03:00
Ask

20 lines
293 B
CSS

{f7e3c877841043b05adc3b1564ca3f606bd86653 true 293 style.css 0xc001e78380}

* {
box-sizing: border-box;
}
body {
background-color: #8FBC8F;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
margin: 0;
}
.counter {
font-size: 60px;
margin-top: 30px;
}
span{
font-size: 24px;
}