-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcountdown.css
More file actions
53 lines (48 loc) · 869 Bytes
/
Copy pathcountdown.css
File metadata and controls
53 lines (48 loc) · 869 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
51
52
53
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
body {
background-color: rgb(30, 30, 30);
color: whitesmoke;
}
section {
text-align: center;
margin: 100px 0;
}
.titleDate{
font-size: 2.3em;
letter-spacing: 2px;
font-weight: 350;
}
.descDate{
margin-top: 10px;
margin-bottom: 10px;
font-size: 1.3em;
letter-spacing: 1px;
font-weight:300;
opacity: .8;
}
.times {
display: flex;
justify-content: center;
align-items: center;
}
.times .time {
font-size: 4em;
font-weight: 300;
text-shadow: 0px 0px 10px rgba(255,255,255,.5);
margin: 15px 20px 3px 20px;
}
.times .desc {
margin-bottom: 70px;
font-weight: 300;
font-size: 1.5em;
}
.finish{
margin: 20px 0 50px 0 ;
font-size: 4rem;
}