You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
652 B
Plaintext
34 lines
652 B
Plaintext
/* =============================================================
|
|
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;
|
|
}
|
|
}
|
|
}
|