diff options
| author | Ben Beltran <ben@nsovocal.com> | 2018-07-31 21:30:16 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2018-07-31 21:30:16 -0500 |
| commit | b006b62b6d8de603bde0fa416a818608e3ed5574 (patch) | |
| tree | 9cc1617b50700180cc548bb92222e6442ded7f86 /css | |
| parent | 440966c18cc6546ef7975049967c57bbb118fd2a (diff) | |
Dump codepen to a static site
Diffstat (limited to 'css')
| -rw-r--r-- | css/style.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..db6a4ab --- /dev/null +++ b/css/style.css @@ -0,0 +1,24 @@ +* { + margin: 0; + padding: 0; +} + +body { + height: 100vh; + width: 100vw; +} + +#container { + background-color: #D8C590; + display: flex; + height: 100vh; + width: 100vw; + box-sizing: border-box; + align-items: center; + justify-content: center; +} + +canvas { + background-color: #D8C590; + image-rendering: pixelated; +} |