-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (90 loc) · 1.66 KB
/
style.css
File metadata and controls
92 lines (90 loc) · 1.66 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
* {
margin:0;
padding:0;
box-sizing:border-box;
}
body {
background-color: black;
background-repeat: no-repeat;
background-size:cover;
background-position:top;
min-height:100vh;
display:flex;
flex-direction:column;
align-items:center;
font-family: 'Poppins', sans-serif;
position: relative;
}
.overlay{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:rgba(0,0,0,0.4);
width:100%;
height:100%;
z-index:-1;
}
.countdown-container{
display:flex;
}
.big-text{
font-size:4rem;
}
.title{
margin:10px;
text-align:center;
color:#fff;
width:100%;
letter-spacing:2px;
font-size: 3rem;
line-height: 5.5rem;
}
.title span{
display:block;
font-size:6rem;
letter-spacing:2rem;
}
.wrapper{
display:flex;
align-items:center;
justify-content:center;
flex-wrap: wrap;
min-height:100vh;
}
.countdown-container > div{
margin:0 2rem;
text-align: center;
border:2px solid #fff;
padding:0px 20px;
border-radius: 12px;
box-shadow: 0px 2px 10px rgba(0,0,0,0.5);
box-sizing: border-box;
color:#fff;
min-width:150px;
}
@media (max-width:992px){
.countdown-container > div{
margin:0 1rem;
}
}
@media (max-width:767px){
.countdown-container{
flex-wrap: wrap;
}
.countdown-container > div{
margin:1rem auto;
max-width:150px;
}
.title{
font-size: 1.5rem;
line-height: 3.5rem;
margin:10px 0px;
}
.title span{
font-size: 2rem;
letter-spacing: 1rem;
}
}