-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (48 loc) · 914 Bytes
/
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
*{
margin:0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: url('./bg.jpg');
color: whitesmoke;
font-family: 'Montserrat', sans-serif;
user-select: none;
}
.container{
display: flex;
flex-direction: column;
width: 100vw;
height: 100vh;
align-items: center;
justify-content: space-evenly;
text-align: center;
background-color: #00000080;
}
.title {
font-size: calc(10px + 3vw);
}
.title p {
font-size: calc(10px + 1vw);
}
.countdown{
display: flex;
width: 60vw;
justify-content: space-between;
flex-wrap: wrap;
}
.countdown h1{
font-size: calc(10px + 8vw);
text-shadow: 0 0 10px whitesmoke;
}
.button{
background-color: whitesmoke;
color: black;
padding: 10px;
cursor: pointer;
border: solid 2px whitesmoke;
}
.button:hover {
background-color: black;
color: whitesmoke;
}