-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (75 loc) · 1.2 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
@-webkit-keyframes blink {
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes blink {
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
body {
background-color: #151515;
color: #eee;
font-family: "Share Tech Mono", monospace;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.hidden {
display: none;
}
.password {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 60px;
letter-spacing: 5px;
text-transform: uppercase;
}
.granted {
position: absolute;
top: 75%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 30px;
}
.info {
position: absolute;
top: 0;
left: 0;
}
.info p {
margin: 10px;
}
.button {
background-color: #111;
border: solid 1px #888;
padding: 8px 25px;
font-size: 26px;
letter-spacing: 2px;
cursor: pointer;
}
.rerun {
position: absolute;
bottom: 15px;
right: 15px;
}
.start {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.blink {
-webkit-animation: blink 0.8s steps(1, start) infinite alternate;
animation: blink 0.8s steps(1, start) infinite alternate;
}