Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions aprilFools.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,18 @@ body {
}
*/

/*
Expand all elements, making them fall down
*/

* {
/*
-webkit-animation-name: fallexpand;
-webkit-animation-duration: 200s;
*/
}


/* Animations */

@-webkit-keyframes blur {
Expand All @@ -131,3 +143,8 @@ body {
0% { -webkit-transform: none; }
100% { -webkit-transform: rotateX(-90deg); }
}

@-webkit-keyframes fallexpand {
from { margin-top: 0px; }
to { margin-top: 1000px; }
}