-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patherrorStyles.css
More file actions
70 lines (63 loc) · 1.32 KB
/
errorStyles.css
File metadata and controls
70 lines (63 loc) · 1.32 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
body {
word-break: break-word;
overflow-wrap: break-word;
line-height: 1.5rem;
background-color: #11111b;
color: #cdd6f4;
font-family: "Inter", sans-serif;
}
.app-container {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.errorContainer {
height: 100%;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
.errorClass {
text-align: center;
align-self: center;
padding: 52px 16px 16px;
max-width: 50%;
}
.errorCode {
text-align: center;
cursor: default;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 44px;
}
.errorText {
text-align: center;
cursor: default;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 20px;
}
.errorCode h1 {
position: relative;
padding: 30px;
animation-name: wobble;
animation-duration: 2s;
animation-timing-function: linear;
animation-delay: 1.3s;
animation-iteration-count: infinite;
animation-direction: reverse-alternate;
}
@keyframes wobble {
0% { transform: translateX(0) }
15% { transform: translateX(3px) }
30% { transform: translateX(-3px) }
45% { transform: translateX(3px) }
60% { transform: translate(0) }
75% { transform: translate(-3px) }
90% { transform: translateX(3px) }
}