This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* CSS3 Pong * | |
*/ | |
body{ | |
background: #000; | |
} | |
#court { | |
margin-top:40px; | |
border:5px dashed #fff; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* CSS3 Pong * | |
*/ | |
@import url(http://fonts.googleapis.com/css?family=VT323); | |
body{ | |
background: #000; | |
color:#070; | |
font-family:'VT323', Courier, "Courier New", monospace; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Dabblet: CSS3 animation basics | |
*/ | |
@keyframes mysimpleanimation { /* flame pulses */ | |
0% {background-color:#f00;} | |
100% {background-color:#00f;} | |
} | |
#example { | |
margin:20px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Two Bees or not Two Bees? | |
*/ | |
body{ | |
background: #000; | |
min-height:100%; | |
text-align:center; | |
font-size:24px; | |
} |