Correct CSS bug in error page.

This commit is contained in:
Ophir LOJKINE 2013-12-03 19:16:47 +01:00
parent 54dcfa9c0c
commit 49671de0b2

View file

@ -23,20 +23,20 @@ h1, h2 {
100% {color: #F0A;transform:rotate(30deg);}
}
h1 {
animation: rotation 5s infinite;
animation-delay:3s;
animation-direction:alternate;
width:30px;
#smiley {
animation: rotation 5s infinite;
animation-delay:3s;
animation-direction:alternate;
width:3em;
}
h1:hover {
#smiley:hover {
animation-play-state:paused;
}
</style>
</head>
<body>
<h1>:-(</h1>
<h1 id="smiley">:-(</h1>
<h2>Sorry, an error occured...</h2>
</body>
</html>