-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (50 loc) · 893 Bytes
/
style.css
File metadata and controls
50 lines (50 loc) · 893 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
41
42
43
44
45
46
47
48
49
50
body,html{
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
body{
background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url(bg.jpg) 50% 50%;
background-size: cover;
font-family: "Montserrat",sans-serif;
}
.container{
width: 100%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
text-align: center;
color: white;
}
.container h1{
text-transform: uppercase;
font-size: 60px;
margin: 0px;
letter-spacing: 10px;
}
.container h2{
margin: 0;
font-size: 20px;
font-weight: 500;
font-style: italic;
}
.count{
margin: 40px 0;
}
.countd{
display: inline-block;
width: 80px;
height: 80px;
border: 2px solid;
margin: 0 30px;
font-size: 12px;
border-radius: 50%;
overflow: hidden;
}
.countd span{
display: block;
font-size: 26px;
margin-top: 14px;
}