-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
116 lines (97 loc) · 1.76 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
html {
height: 100%;
}
:root {
--dark-blue: #00264C;
}
body {
background-color: var(--dark-blue);
color: white;
font-family: 'Montserrat', sans-serif;
text-align: center;
height: 90%;
display: flex;
justify-content: center;
flex-direction: column;
margin:0px;
}
h1{
font-size: 50px;
font-weight: 700;
text-transform: uppercase;
margin: 0px;
text-decoration: underline;
}
h2{
font-size: 25px;
text-transform: uppercase;
margin: 0px;
font-weight: 400;
}
#timer{
font-size: 70px;
font-weight: 700;
margin: 2.5rem;
}
#logo{
margin-bottom: 40px;
}
button{
font-size: 20px;
border: none;
background-color: white;
color: var(--dark-blue);
text-align: center;
text-decoration: none;
padding: 15px 32px;
display: inline-block;
margin-left: 2px;
margin-right: 2px;
border-radius: 5px;
}
button:not(.highlight):hover{
color: white;
padding: 13px 30px;
border: 2px solid white;
background-color: var(--dark-blue);
cursor: pointer;
}
button.highlight {
box-shadow: 0px 0px 15px white;
}
#group {
font-size: 27px;
margin-bottom: 50px;
font-weight: 600;
text-transform: uppercase;
}
#activateSound {
transition: all 0.5s ease-in-out;
margin-top: 5vw;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
height: 50px;
}
a{
color: white;
text-decoration: none;
font-style: italic;
}
a:hover{
text-decoration: underline;
}
@media only screen and (max-width: 750px) {
#timer{
font-size: 55px;
}
footer{
font-size: 10px;
}
button{
font-size: 15px;
}
}