diff options
Diffstat (limited to 'client/style.css')
| -rw-r--r-- | client/style.css | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/client/style.css b/client/style.css new file mode 100644 index 0000000..ab72550 --- /dev/null +++ b/client/style.css @@ -0,0 +1,44 @@ +@font-face { + font-family: 'Material Symbols Outlined'; + font-style: normal; + src: url(material-symbols-outlined.woff2) format('woff2'); +} + +.material-symbols-outlined { + /* eslint-disable-next-line css/font-family-fallbacks */ + font-family: 'Material Symbols Outlined'; + font-weight: normal; + font-style: normal; + font-size: 24px; + display: inline-block; + line-height: 1; + text-transform: none; + letter-spacing: normal; + word-wrap: normal; + white-space: nowrap; + direction: ltr; +} + +:root { + color-scheme: light dark; +} + +body { + background-color: light-dark(#eee, #333); + color: light-dark(#333, #eee); + font-family: sans-serif; +} + +button { + background-color: light-dark(#ccc, #555); + font-size: 175%; +} + +.invisible { + display: none; +} + +#error { + color: red; + font-size: 250%; +} |
