-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstylesRfail.css
91 lines (79 loc) · 1.49 KB
/
stylesRfail.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
html {
margin: 0px;
height: 100%;
width: 100%;
}
body {
margin: 0px;
min-height: 100%;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-image: url("images/wp11582889-blue-pixel-wallpapers.png");
}
.splat {
padding: 10px;
border-radius: 5px;
background-color: red;
min-width: 850px;
height: fit-content;
justify-content: center;
position: relative;
bottom: 200px;
}
.oops {
padding: 3px;
margin: 0px;
align-items: center;
text-align: center;
font-size: 10vw;
font-family: 'Press Start 2P', cursive;
background-color: white;
}
.sry {
padding: 3px;
margin: 0px;
align-items: center;
text-align: center;
font-size: 7vw;
font-family: 'Press Start 2P', cursive;
position: relative;
bottom: 100px;
color: red;
}
.exit {
padding: 3px;
margin: 0px;
align-items: center;
text-align: center;
font-size: 20px;
font-family: 'Press Start 2P', cursive;
color: red;
position: relative;
top: 200px;
animation: close 3s;
animation-timing-function: steps(1, end);
}
@keyframes close {
0% {
transform: scale(0%);
}
100% {
transform: scale(100%);
}
}
@media screen and (min-width: 1000px) {
.splat {
bottom: 100px;
}
.exit {
top: 100px;
}
}
@media screen and (min-width: 799px) {
.sry {
font-size: 60px;
}
}