Cleaning up CSS

This commit is contained in:
mathias 2015-02-16 03:49:53 +02:00
parent 32f8e4da07
commit 7e96b853d9

View file

@ -29,6 +29,11 @@ body {
color: #fff; color: #fff;
background: #000; background: #000;
webkit-tap-highlight-color: rgba(255,255,255,.2); webkit-tap-highlight-color: rgba(255,255,255,.2);
-webkit-animation: fadein 3s;
-moz-animation: fadein 3s;
-ms-animation: fadein 3s;
-o-animation: fadein 3s;
animation: fadein 3s;
} }
h2 { h2 {
@ -216,3 +221,19 @@ font-size: 25px;
margin-bottom: 45px; margin-bottom: 45px;
} }
} }
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-ms-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}