blob: 99a6aacb55e4c78d1781164c469b5250ca743142 (
plain)
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
|
/* =============================================================
Error page
============================================================= */
.error-big {
text-align: center;
h2 {
font-size: 10em;
font-weight: bold;
small {
display: block;
font-size: 0.3em;
}
@keyframes error-page-pulse {
from {
opacity: 0.3;
}
to {
opacity: 1.0;
}
}
.pulse {
animation-name: error-page-pulse;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
animation-direction: alternate;
}
}
}
|