From f61c68f4877ca194c3d46b2f669c7fd7a8ee283d Mon Sep 17 00:00:00 2001 From: emgee3 Date: Thu, 28 Mar 2013 15:34:00 -0700 Subject: [PATCH 1/2] update css selectors --- aprilFools.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aprilFools.css b/aprilFools.css index df3f0c8..4019c33 100644 --- a/aprilFools.css +++ b/aprilFools.css @@ -47,7 +47,7 @@ img { COMIC SANS EVERYTHING */ -body, p, body p, body div p { +body, p, div, span, table, h1, h2, h3, h4, h5, h6, li { /*font-family: 'Comic Sans MS', cursive !important;*/ } From 001392061da052a3b4642e2af1e28f241e9ba6f2 Mon Sep 17 00:00:00 2001 From: emgee3 Date: Thu, 28 Mar 2013 15:49:45 -0700 Subject: [PATCH 2/2] add blinking headers --- aprilFools.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/aprilFools.css b/aprilFools.css index 4019c33..ce66d63 100644 --- a/aprilFools.css +++ b/aprilFools.css @@ -89,7 +89,14 @@ html { /*-webkit-animation: rainbow 8s infinite;*/ } - +/* PARTY LIKE IT'S THE 1990s! */ +h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a { + /*-webkit-animation-name: blinker; + -webkit-animation-iteration-count: infinite; + -webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0); + -webkit-animation-duration: 1s; + color: #0F0!important;*/ +} /* Animations */ @@ -110,3 +117,7 @@ html { 100% { -webkit-filter: hue-rotate(360deg); } } +@-webkit-keyframes blinker { + from { opacity: 1.0; } + to { opacity: 0.0; } +}