diff options
Diffstat (limited to 'css/style.css')
| -rw-r--r-- | css/style.css | 26 |
1 files changed, 26 insertions, 0 deletions
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; +} |