-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (73 loc) · 1.47 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
body {
background-color: #000000;
/* Matrix Green */
color: #00FF00;
}
.event_title {
text-align: right;
font-size: 2em;
margin-right: 110px;
font-weight: bold;
color: #00FF00;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.ampersands {
position: absolute;
right: 450px;
top: 180px;
font-size: 7em;
rotate: -35deg;
font-weight: bold;
color: #00FF00;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.hack_timer_container {
font-family: 'InconsolataGo Nerd Font', monospace;
font-size: 15em;
position: absolute;
left: 100px;
top: 150px;
border-radius: 6px;
display: inline-block;
padding: 10px;
}
.hack_timer.warn {
animation: warning 1s cubic-bezier(0.55, 0.09, 0.68, 0.53) infinite;
}
@keyframes warning {
0% {
color: #00FF00;
}
50% {
color: #FF0000;
}
100% {
color: #00FF00;
}
}
.hack_timer.run span {
animation: blinker 1s cubic-bezier(0, 1.18, 0, 0.99) infinite;
}
/* blinking divider */
@keyframes blinker {
50% {
opacity: 0;
}
}
.shake {
animation: shake 0.82s linear infinite;
}
@keyframes shake {
0% {
transform: translate(1px, 1px) rotate(0deg);
}
10% {
transform: translate(-1px, -2px) rotate(-1deg);
}
20% {
transform: translate(1px, -1px) rotate(1deg);
}
30% {
transform: translate(0px, -1px) rotate(0deg);
}
}