-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (59 loc) · 1.16 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
/* background-image: url(https://media.istockphoto.com/photos/happy-new-year-2022-picture-id1355894965);
background-repeat: no-repeat;
background-size: 100vh; */
font-family: 'Baloo Bhai',cursive;
background-color: #795548;
/* background: url(); */
}
h2{
font-size: 3rem;
font-weight: bold;
padding: 3rem;
}
.coming-soon{
min-height: 100vh;
display: flex;
/* flex-wrap: wrap; */
flex-direction: column;
align-items: center;
justify-content: center;
/* color: #795548; */
color: whitesmoke;
}
.countdown{
display: flex;
/* flex-wrap: wrap; */
justify-content: space-around;
text-align: center;
}
.day,.hour,.minute,.second{
font-size: 3rem;
}
/* .waiting{
width: 50vh;
height: 40vh;
} */
@media only screen and (max-width: 300px){
.countdown{
flex-direction: column;
}
.day,.hour,.minute,.second{
font-size: 1.5rem;
}
/* .waiting{
width: 160px;
height: 120px;
} */
}
@media only screen and (max-width: 240px){
.h2{
font-size: 2rem;
padding: 1rem;
}
}