mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-22 07:45:00 +00:00
Cleaning up CSS
This commit is contained in:
parent
32f8e4da07
commit
7e96b853d9
1 changed files with 21 additions and 0 deletions
|
@ -29,6 +29,11 @@ body {
|
|||
color: #fff;
|
||||
background: #000;
|
||||
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 {
|
||||
|
@ -216,3 +221,19 @@ font-size: 25px;
|
|||
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; }
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue