-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (48 loc) · 1.12 KB
/
style.css
File metadata and controls
57 lines (48 loc) · 1.12 KB
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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");
/* @import url('https://fonts.googleapis.com/css2?family=Italianno&family=Noto+Serif&family=Open+Sans&family=Press+Start+2P&display=swap'); */
* {
box-sizing: border-box;
}
body {
background:linear-gradient(rgba(163, 187, 106, 0.8), rgba(128, 57, 57, 0.9)), url("./happy-35th.jpg");
/* background-image: url("./money.jpeg"); */
background-size: cover;
background-position: center center;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
font-family: "Poppins", sans-serif;
margin: 0;
}
h1 {
font-weight: bold;
font-size: 4rem;
margin-top: 5rem;
color: white;
}
h3 {
color: yellow;
}
.countdown-container, span {
display: flex;
flex-wrap: wrap;
justify-content: center;
flex-direction: row;
}
.big-text {
font-weight: bold;
font-size: 5rem;
line-height: 1;
margin: 1rem 2rem;
}
.countdown-el {
text-align: center;
}
.countdown-el span {
font-size: 2.3rem;
}
.cur-date {
color: white;
margin-top:auto;
}