From 11be5ebabcdab8272d938f7b90ef0ea9be29a421 Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Fri, 20 Apr 2018 16:41:25 -0500 Subject: Initial Project Setup (#2) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 🔧 Add initial package.json * 🔧 Add eslint config * 🔧 Add assets target dir to gitignore * 🔧 Add webpack config * Add a contributing guide * Add the wrapper application * Add autogenerated docs * Add travis config * Add changelog --- css/style.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 css/style.css (limited to 'css/style.css') diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..c3e2c3d --- /dev/null +++ b/css/style.css @@ -0,0 +1,26 @@ +* { + margin: 0; + padding: 0; +} + +body { + text-align: center; + overflow: hidden; + height: 100vh; + width: 100vw; +} + +#sumo-app-entry-point { + background-color: #fff; + display: flex; + height: 100vh; + width: 100wh; + box-sizing: border-box; + align-items: center; + justify-content: center; +} + +canvas { + background-color: #d8c590; + image-rendering: pixelated; +} -- cgit