Created
March 13, 2013 22:25
-
-
Save AlphaGit/5156967 to your computer and use it in GitHub Desktop.
Arkanoid.css example
(from https://github.com/AlphaGit/random-javascript/blob/master/arkanoid-canvas/arkanoid.css)
This file contains hidden or 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
/* from http://stackoverflow.com/questions/4288253/html5-canvas-100-width-height-of-viewport */ | |
* { | |
margin: 0; | |
padding: 0; | |
} | |
html, body { | |
width: 100%; | |
height: 100%; | |
} | |
canvas { | |
display: block; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment