diff options
Diffstat (limited to 'public/global.css')
-rw-r--r-- | public/global.css | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/public/global.css b/public/global.css index c813911..cbe8d1c 100644 --- a/public/global.css +++ b/public/global.css @@ -3,9 +3,15 @@ :root { --width: 750px; + --bg: #dddddd; + --bg-alt: #ffffff; + --fg: #000000; + --fg-alt: #111111; } body, html { + background-color: var(--bg); + color: var(--fg); margin: 0; font-family: "Inter", "Neue Haas Grotesk", "Helvetica", "Helvetica Neue", -apple-system, BlinkMacSystemFont, sans-serif; } @@ -31,3 +37,29 @@ body, html { font-size: 80%; } +.button, +.buttonstyle { + margin-bottom: 16px; + padding: 9px 12px; + border-radius: 8px; + border: none; + background-color: var(--bg-alt); +} + +.button { + cursor: pointer; +} + +.button.dashed, +.buttonstyle.dashed { + padding: 7px 10px; + border: 2px dashed currentColor; +} + +.button.filled, +.buttonstyle.filled { + background-color: canvastext; + color: canvas; + font-weight: bold; + cursor: pointer; +} |