-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (34 loc) · 746 Bytes
/
style.css
File metadata and controls
40 lines (34 loc) · 746 Bytes
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
*{
margin: 0;
padding: 0;
}
.container{
width: 100%;
height: 100vh;
background-image: url("https://coolbackgrounds.io/images/backgrounds/index/sea-edge-79ab30e2.png");
background-repeat: no-repeat;
background-size: cover;
color: white;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1{
letter-spacing: 0.2rem;
}
.counterTimer{
display: flex;
/* justify-content: center; */
/* padding: 2rem; */
/* justify-content:space-evenly; */
}
.counterTimer>p{
padding: 2rem;
/* background-color: rgb(145, 131, 131); */
text-transform: uppercase;
}
.counterTimer>p>span{
display: block;
font-size: 4rem;
}