-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (97 loc) · 1.67 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
116
117
118
119
120
.hot-red {
color: #FF2020;
}
.hot-red-bg {
background-color: #FF2020;
}
.hot-red-text-glow {
text-shadow: 0 0 3px rgba(255,32,32, 0.5);
}
.dark-red-bg {
background-color: #201818;
}
.red-border {
border: 1px solid #FF2020;
}
.ddc {
font-family: "DDC", sans-serif;
}
.menlo {
font-family: Menlo, monospace;
}
.dark-text-shadow-lg {
text-shadow: 0 3px 0 #2F0C2C;
}
.dark-text-shadow {
text-shadow: 0 2px 0 #2F0C2C;
}
.lh7 {
line-height: 1.7
}
.btn {
border-radius: 20px;
font-size: 18px;
padding: 10px 25px;
text-decoration: none;
outline: none;
}
.btn-red {
background-color: #FF2020;
color: white;
box-shadow: 0 0 7px #FF2020;
border: none;
}
.bb-red {
border-bottom: 1px solid #FF2020;
}
.bt-red {
border-top: 1px solid #FF2020;
}
.spaceship-container {
background-image: linear-gradient(0deg, #630202 -40%, rgba(68,42,42,0.1) 100%);
position: relative;
border-left: 1px solid #FF2020;
border-right: 1px solid #FF2020;
}
@font-face {
font-family: DDC;
src: url("./fonts/DDCHardware-Regular.otf") format("opentype");
}
@keyframes pulse {
0% {
opacity: 0.3;
}
100% {
opacity: 0.5;
}
}
@keyframes twitch {
0% {
transform: translateY(-20px);
}
100% {
transform: translateY(0);
}
}
canvas {
width: 100%;
height: 100%;
position: absolute;
z-index: -1;
}
.pulse {
animation-duration: 1s;
animation-name: pulse;
animation-iteration-count: infinite;
animation-direction: alternate;
}
.flame-move {
animation-duration: 1s;
animation-name: twitch;
animation-iteration-count: infinite;
animation-direction: alternate;
}
.tick text {
font-weight: bold;
font-family: "Menlo", monospace;
}