-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.css
More file actions
104 lines (104 loc) · 1.9 KB
/
error.css
File metadata and controls
104 lines (104 loc) · 1.9 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
.error-page {
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
position:relative;
background:linear-gradient(135deg,rgba(138,43,226,.15) 0,rgba(33,33,33,.95) 100%);
overflow:hidden;
z-index:2
}
.error-content {
padding:2rem;
text-align:center;
max-width:600px;
margin:0 auto
}
.error-logo {
height:60px;
width:auto;
margin-bottom:2rem;
animation:float 3s ease-in-out infinite;
filter:drop-shadow(0 0 8px rgba(138, 43, 226, .3))
}
.error-page h1 {
font-size:8rem;
font-weight:700;
margin-bottom:1rem;
background:linear-gradient(135deg,#8a2be2 0,#9b4deb 100%);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
text-shadow:0 2px 10px rgba(138,43,226,.3);
animation:pulse 2s ease-in-out infinite
}
.error-page h2 {
font-size:2.5rem;
color:#fff;
margin-bottom:1.5rem;
font-weight:600
}
.error-page .lead {
color:#bbb;
font-size:1.2rem;
margin-bottom:2rem
}
.error-actions {
display:flex;
justify-content:center;
gap:1rem
}
@keyframes pulse {
0%,
100% {
transform:scale(1);
opacity:1
}
50% {
transform:scale(1.05);
opacity:.8
}
}
.particles-container {
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
pointer-events:none
}
.particle-layer::after,
.particle-layer::before {
content:"";
position:absolute;
width:100%;
height:100%;
background-image:radial-gradient(circle,#8a2be2 1px,transparent 1px);
background-size:50px 50px;
animation:particleFloat 20s linear infinite;
opacity:.1
}
.particle-layer::after {
animation-direction:reverse;
animation-duration:15s;
background-size:30px 30px;
opacity:.05
}
@media (max-width:768px) {
.error-page h1 {
font-size:6rem
}
.error-page h2 {
font-size:2rem
}
.error-logo {
height:50px
}
.error-actions {
flex-direction:column;
gap:1rem
}
.error-actions .btn {
width:100%
}
}