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
27 changes: 27 additions & 0 deletions aprilFools.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,23 @@ body {
}
*/

/*
Rotate and move the page back and forth a little
*/
body {
/*-webkit-animation: sea 3s ease-in-out infinite;
-webkit-animation-direction: alternate;*/
}

/*
Same as above but less rotation
*/
body {
/* -webkit-animation: seaslow 3s ease-in-out infinite;
-webkit-animation-direction: alternate;
*/
}

/* Animations */

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

@-webkit-keyframes sea {
0% { -webkit-transform: rotate(-1deg); margin-left:100px; }
100% { -webkit-transform: rotate(1deg);margin-left:-100px; }
}

@-webkit-keyframes seaslow {
0% { -webkit-transform: rotate(-0.1deg); margin-left:10px; }
100% { -webkit-transform: rotate(0.1deg);margin-left:-10px; }
}