-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (60 loc) · 1.14 KB
/
style.css
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
56
57
58
59
60
61
62
63
64
65
66
67
@import url('https://fonts.googleapis.com/css2?family=Freeman&display=swap');
* {
font-family: "Freeman", sans-serif;
user-select: none;
}
body {
background-image: url("images/background.png");
background-size: cover;
background-position: center center;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin: 0;
padding: 0;
overflow: hidden
}
.countdown {
display: flex;
transform: scale(2);
font-family: fantasy;
}
.time {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 15px;
color: green
}
.time h2 {
font-weight: bold;
font-size: 36px;
line-height: 1;
margin: 0 0 5px
}
#text {
font-size: 80px;
position: absolute;
top: 0;
margin-top: 300px;
color: yellow;
}
@media only screen and (max-width: 600px) {
.time {
margin: 5px;
}
.time h2 {
font-size: 12px;
}
.time small {
font-size: 10px;
}
#text {
font-size: 150%;
margin-top: 300px;
}
}