diff options
Diffstat (limited to 'docs/style.css')
-rw-r--r-- | docs/style.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/style.css b/docs/style.css new file mode 100644 index 0000000..f32bb6b --- /dev/null +++ b/docs/style.css @@ -0,0 +1,34 @@ +html, body { + width: 100%; + height: 100%; + margin: 0px; + border: 0; + overflow: hidden; + display: block; + background-color: #2e3436; +} + +canvas { + left: 0px; + top: 0px; + background-color: #2e3436; +} + +div { + display: flex; + justify-content: center; +} + +input { + border: none; + border-radius: 4px; + background-color: #eeeeec; + color: #2e3436; + font-size: 1.25em; + padding: 0.3em; + margin: 0.2em 0.1em; +} + +input[type=text] { + width: 50vw; +} |