-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404-styles.css
86 lines (78 loc) · 1.37 KB
/
404-styles.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
*{
padding:0px;
margin:0px;
}
body{
background:#1e1f26;
}
.st0{font-family:'FootlightMTLight';}
.st1{font-size:83.0285px;}
.st2{fill:gray;}
svg{
width: 500px;
height: 400px;
text-align: center;
fill: #bc13fe;
}
path#XMLID_5_ {
fill: #bc13fe;
filter: url(#blurFilter4);
}
path#XMLID_11_ ,path#XMLID_2_ {
fill: #bc13fe;
}
.circle{
animation: out 2s infinite ease-out;
fill: #bc13fe;
}
#container{
text-align:center;
}
.message{
font-family: 'IBM Plex Mono', monospace;
font-size: 24px;
color:#bc13fe;
}
.message:after{
content:"]";
}
.message:before{
content:"[";
}
.message:after, .message:before {
color: #39ff14;
font-size: 20px;
-webkit-animation-name: opacity;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-name: opacity;
animation-name: opacity;
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
margin:0 50px;
}
@-webkit-keyframes opacity {
0%, 100% {
opacity: 0;
}
50% {
opacity: 1;
}
}
@keyframes opacity {
0%, 100% {
opacity: 0;
}
50% {
opacity: 1;
}
}
@keyframes out {
0% {r:1; opacity: 0.9 ;}
25%{r:5; opacity: 0.3 ;}
50%{r:10; opacity: 0.2 ;}
75%{r:15;opacity:0.1;}
100% {r:20;opacity:0;}
}