-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (49 loc) · 734 Bytes
/
styles.css
File metadata and controls
55 lines (49 loc) · 734 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
.container {
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
text-align: center;
box-sizing: border-box;
font-family: "Noto Sans TC", sans-serif;
font-weight: 400;
flex-direction: column;
color: #354853;
background-color: #f1f5f8;
}
h1 h2 {
font-weight: 500;
}
.title {
position: relative;
font-size: 6rem;
}
.counter {
margin-bottom: 2rem;
font-size: 5rem;
}
.btn {
margin-right: 0.5rem;
}
.positive {
color: green;
}
.negative {
color: red;
}
@media (max-width: 400px) {
.title {
font-size: 3rem;
bottom: 0;
}
.counter {
margin-bottom: 0;
}
.child {
display: flex;
flex-direction: column;
}
.btn {
margin-top: 1rem;
}
}