-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
98 lines (82 loc) · 1.34 KB
/
styles.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
width: 100vw;
font-family: "Cantana One", Arial, "Roboto", sans-serif;
text-rendering: optimizeLegibility !important;
-webkit-font-smoothing: antialiased !important;
}
h1,
span,
legend {
/*Use the Cantana-One font*/
font-size: 60px;
-webkit-text-stroke: 3px black;
color: white;
text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000,
-1px 1px 0 #000, 1px 1px 0 #000;
}
span,
legend {
font-size: 70px;
font-weight: bold;
}
legend {
font-size: 50px;
font-weight: bold;
}
.footer-container {
filter: drop-shadow(0px 0px 5px #000);
background-color: #000;
width: 100%;
}
p {
font-family: "Roboto";
color: #ffff;
font-size: 32px;
padding: 0.15rem;
}
.count {
display: flex;
justify-content: space-around;
}
.main,
.countdown {
display: flex;
flex: 1;
flex-direction: column;
justify-content: space-around;
text-align: center;
width: 100%;
height: 100%;
}
.countdown {
filter: brightness(90%);
background-size: cover;
background-position: center center;
background-image: url("./assets/img/study-hero.jpg");
}
li,
ul {
list-style: none;
}
li {
display: flex;
flex-direction: column;
align-items: center;
}
@media (max-width: 768px) {
body {
height: 100%;
}
.count {
flex-direction: column-reverse;
}
li {
margin: 24px 0px;
}
}