diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-05-08 18:35:39 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-05-08 18:35:39 +0200 |
commit | 770658c8434d7b7c0e716b7e375c733e79dc4a88 (patch) | |
tree | 5c1b48cfd9fd5748f0cb7d95051b396e15867fb5 /public/global.css | |
parent | f3b582307cc3caf5ee0c7514d461e47fb5893bc7 (diff) |
more website
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; +} |