From b006b62b6d8de603bde0fa416a818608e3ed5574 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Tue, 31 Jul 2018 21:30:16 -0500 Subject: Dump codepen to a static site --- css/style.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 css/style.css (limited to 'css') 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; +} -- cgit