Skip to content

Instantly share code, notes, and snippets.

View alexmwalker's full-sized avatar

Alex alexmwalker

View GitHub Profile
@alexmwalker
alexmwalker / dabblet.css
Created February 18, 2012 00:57
CSS3 Pong *
/**
* CSS3 Pong *
*/
body{
background: #000;
}
#court {
margin-top:40px;
border:5px dashed #fff;
@alexmwalker
alexmwalker / dabblet.css
Created February 18, 2012 01:06
CSS3 Pong *
/**
* CSS3 Pong *
*/
@import url(http://fonts.googleapis.com/css?family=VT323);
body{
background: #000;
color:#070;
font-family:'VT323', Courier, "Courier New", monospace;
}
@alexmwalker
alexmwalker / dabblet.css
Created February 21, 2012 00:47
Dabblet: CSS3 animation basics
/**
* Dabblet: CSS3 animation basics
*/
@keyframes mysimpleanimation { /* flame pulses */
0% {background-color:#f00;}
100% {background-color:#00f;}
}
#example {
margin:20px;
@alexmwalker
alexmwalker / dabblet.css
Created February 21, 2012 23:28
My Brain Hertz!
/**
* My Brain Hertz!
*/
#hertzscreen{
width:380px;
height:223px;
margin: 100px auto;
border:1px #aaa dashed;
background: url(http://sitepointstatic.com/examples/css3/animation/hertz.png);
animation: hertz 4s infinite linear;
@alexmwalker
alexmwalker / dabblet.css
Created February 21, 2012 23:49
My Brain Hertz!
/**
* My Brain Hertz!
*/
#hertzscreen{
width:380px;
height:223px;
margin: 100px auto;
border:1px #ddd dashed;
background: url(http://sitepointstatic.com/examples/css3/animation/hertz.png);
animation: hertz 4s infinite linear;
@alexmwalker
alexmwalker / dabblet.css
Created February 22, 2012 14:42
My Brain Hertz!
/**
* My Brain Hertz!
*/
#wavescreen{
width:380px;
height:223px;
margin: 100px auto;
border:1px #ddd dashed;
background: url(http://sitepointstatic.com/examples/css3/animation/hertz.png);
animation: hertz 4s infinite linear;
@alexmwalker
alexmwalker / dabblet.css
Created February 22, 2012 14:43
Google's Doodle and Why My Brain Hertz
/**
* Google's Doodle and Why My Brain Hertz
*/
#wavescreen{
width:380px;
height:223px;
margin: 100px auto;
border:1px #ddd dashed;
background: url(http://sitepointstatic.com/examples/css3/animation/hertz.png);
animation: hertz 4s infinite linear;
@alexmwalker
alexmwalker / dabblet.css
Created February 25, 2012 02:50
CSS3 Pong *
/**
* CSS3 Pong *
*/
@import url(http://fonts.googleapis.com/css?family=VT323);
body{
background: #000;
color:#070;
font-family:'VT323', Courier, "Courier New", monospace;
text-align:center
@alexmwalker
alexmwalker / dabblet.css
Created February 25, 2012 07:02
CSS3 Pong *
/**
* CSS3 Pong *
*/
@import url(http://fonts.googleapis.com/css?family=VT323);
body{
background: #000;
color:#070;
font-family:'VT323', Courier, "Courier New", monospace;
text-align:center
@alexmwalker
alexmwalker / dabblet.css
Created February 25, 2012 21:39
Two Bees or not Two Bees?
/**
* Two Bees or not Two Bees?
*/
body{
background: #000;
min-height:100%;
text-align:center;
font-size:24px;
}