diff options
Diffstat (limited to 'css/style.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; +} |