-
-
Notifications
You must be signed in to change notification settings - Fork 676
Expand file tree
/
Copy pathstyle.css
More file actions
37 lines (32 loc) · 608 Bytes
/
style.css
File metadata and controls
37 lines (32 loc) · 608 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@import url("https://fonts.googleapis.com/css2?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;
min-width: 5ch;
}
@media (max-width: 580px) {
body {
flex-direction: column;
}
}