Spaces:
Running
Running
File size: 790 Bytes
34e0b30 | 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 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>WBO - Error</title>
<style>
html {
background-color: #303;
}
h1,
h2 {
font-family: monospace;
color: #F77;
margin: auto;
margin-top: 100px;
width: 50%;
font-size: 5em;
}
@keyframes rotation {
0% {
color: #FA0;
transform: rotate(0deg);
}
50% {
color: #F11;
transform: rotate(150deg);
font-size: 3em;
}
100% {
color: #F0A;
transform: rotate(30deg);
}
}
#smiley {
animation: rotation 5s infinite;
animation-delay: 3s;
animation-direction: alternate;
width: 3em;
}
#smiley:hover {
animation-play-state: paused;
}
</style>
</head>
<body>
<h1 id="smiley">:-(</h1>
<h2>Sorry, an error occured...</h2>
</body>
</html> |