-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (56 loc) · 1.15 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
* {
margin: 0%;
padding: 0%;
color: white;
font-family: sans-serif;
}
.container {
width: 100%;
height: 100vh;
background: rgb(89, 27, 198);
background-size: 150% 150%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1 {
text-transform: uppercase;
margin-top: -70px;
letter-spacing: 5px;
font-size: 55px;
}
@media (max-width: 800px) {
h1{
font-size: 50px;
text-align: center;
}
}
.counterTimer {
display: flex;
margin-top: 150px;
border:1px solid white;
border-radius: 20px;
box-shadow: 8px 8px 10px black, -5px -5px 9px grey
}
.counterTimer > p {
font-size: 1.2rem;
padding: 1rem;
text-align: center;
text-transform: uppercase;
}
.counterTimer > p > span {
display: block;
font-size: 4rem;
}
@media screen and (max-width: 434px) {
h1{
margin-top: -50px;
}
.counterTimer{
justify-content: center;
margin-top: 200px;
flex-wrap:wrap;
width:250px;
}
}