-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.css
More file actions
193 lines (172 loc) · 4.42 KB
/
Copy path404.css
File metadata and controls
193 lines (172 loc) · 4.42 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
@-webkit-keyframes gradloop {
0%{background-position:0% 77%}
50%{background-position:100% 24%}
100%{background-position:0% 77%}
}
@-moz-keyframes gradloop {
0%{background-position:0% 77%}
50%{background-position:100% 24%}
100%{background-position:0% 77%}
}
@keyframes gradloop {
0%{background-position:0% 77%}
50%{background-position:100% 24%}
100%{background-position:0% 77%}
}
html{
background: skyblue; /*fallback*/
background-repeat: repeat;
background-attachment: fixed;
width: 100%;
height: 100%;
overflow:hidden;
background: linear-gradient(255deg, #861260, #085c80, #470668, #195357, #535353);
background-size: 500% 500%;
-webkit-animation: gradloop 60m ease infinite;
-moz-animation: gradloop 60m ease infinite;
animation: gradloop 60m ease infinite;
}
main{
display: flex;
justify-content: center;
}
.msgbox{
position:absolute;
display: flex;
justify-content: center;
align-content: center;
align-self: flex-start;
color: azure;
max-width:1000px;
border: 1vw azure outset;
margin-top:5vh;
padding: auto;
text-align: center;
font-size: auto;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
z-index: 1;
background-color: rgba(0, 0, 0, 0.829);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}
#errcode {
font-weight: bold;
font-size: 130%;
text-decoration: underline;
margin:1vh;
margin-bottom: 0px;
padding:1vw;
line-height:1vh;
}
#greeting{
margin:1vh;
padding: 1vw;
}
.errpoem {
word-wrap: unset;
font-weight: lighter;
font-size: 100%;
margin:1vh;
margin-top:0px;
padding:1vw;
}
#mountainrange {
height:100vh;
width:100vw;
display:flex;
align-self: flex-start;
align-items: flex-end;
justify-content: center;
position:absolute;
margin:0px;
padding:0px;
visibility:visible;
}
.mountainright{
position: absolute;
display: flex;
align-items: center;
flex-direction: column;
border-left: 30vw solid transparent;
border-right: 30vw solid transparent;
border-bottom: 66vh solid rgb(63, 49, 65);
animation: bouncemtnright 20s ease-out forwards;
}
.mountaincenter{
position:absolute;
display:flex;
justify-self:end;
align-items:center;
flex-direction: column;
border-left: 21vw solid transparent;
border-right: 21vw solid transparent;
border-bottom: 75vh solid rgb(36, 66, 75);
animation: bouncemtncenter 20s ease-out forwards;
}
.mountainleft{
position: absolute;
display: flex;
align-items: center;
flex-direction: column;
border-left: 45vw solid transparent;
border-right: 45vw solid transparent;
border-bottom: 50vh solid rgb(28, 61, 57);
animation: bouncemtnleft 20s ease-out forwards;
}
.snowcap{
position: relative;
width: 0;
height: 0;
border-left: 5vw solid transparent;
border-right: 5vw solid transparent;
border-bottom: 8vh solid azure;
}
@keyframes bouncemtnright {
from {transform:translate(15vw,100vh)}
to {transform:translate(19vw,10vh)rotate(5deg)}
}
@keyframes bouncemtncenter {
from {transform:translate(4vw,100vh)}
to {transform:translate(10vw,0vh)rotate(2deg)}
}
@keyframes bouncemtnleft {
from {transform:translate(-5vw,100vh)}
to {transform:translate(-20vw,10vh)rotate(-5deg)}
}
@keyframes fadein {
from {opacity:0;}
}
/*blatantly stolen from stackoverflow:*/
.moonx {
position:fixed;
animation:moonslide 60s ease-in-out forwards;
}
.moon {
position: absolute
;
height: 50px;
width: 50px;
border-radius: 50%;
background: azure;
overflow: hidden;
animation: moonrise 60s ease-out both;
z-index:-10;
}
.moon:after {
position: absolute;
content: '';
height: 100%;
width: 100%;
top: 40%;
left: -12.5%;
background: rgba(42, 39, 40,.65);
border-radius: 60%/50%;
}
@keyframes moonrise {
from{transform:translateY(80vh)scale(1.5)rotate(90deg);}
to{transform:translateY(15vh)scale(2.5)rotate(100deg);}
}
@keyframes moonslide {
from{transform:translateX(-50vw)}
to{transform:translateX(40vw)}
}