-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (62 loc) · 1.27 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
* {
margin: 0;
padding: 0;
}
body {
overflow-x: hidden;
overflow-y: hidden;
}
#background {
height: 100vh;
}
.content {
z-index: 99999999;
position: absolute;
left: 25%;
top: 40%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
h1 {
font-size: calc(20px + 5vw);
}
* {
color: white;
font-family: 'Inconsolata', monospace;
}
#status {
margin-left: 0.5vw;
}
span {
display: flex;
flex-direction: row;
justify-content: flex-start;
}
.button {
margin-left: 0.5vw;
margin-top: 2vh;
background-color: black;
border: 0;
padding: 0.5vw;
cursor: pointer;
width: calc(6vw + 40px);
text-decoration: none;
font-size: calc(0.5vw + 10px);
}
.arrow::after {
display: inline-block;
padding-left: 0.5vw;
content: "\0279E";
-webkit-transition: transform 0.1s ease-out;
-moz-transition: transform 0.1s ease-out;
-ms-transition: transform 0.1s ease-out;
-o-transition: transform 0.1s ease-out;
transition: transform 0.1s ease-out;
}
.arrow:hover::after {
-webkit-transform: translateX(6px);
-moz-transform: translateX(6px);
-ms-transform: translateX(6px);
-o-transform: translateX(6px);
transform: translateX(6px);
}