diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2022-10-27 09:44:54 +0700 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2022-10-27 09:44:54 +0700 |
| commit | d0eed645a4276c182d373b00e2b383e0ed190ed7 (patch) | |
| tree | 9ad8d33afcae7b2e9711989859c0535893864856 /styles/globals.css | |
| parent | aba7a8d3e7df1f07285de6cd3b2a5f221a1cd535 (diff) | |
initial commit
Diffstat (limited to 'styles/globals.css')
| -rw-r--r-- | styles/globals.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/styles/globals.css b/styles/globals.css new file mode 100644 index 00000000..4f184216 --- /dev/null +++ b/styles/globals.css @@ -0,0 +1,26 @@ +html, +body { + padding: 0; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; +} + +a { + color: inherit; + text-decoration: none; +} + +* { + box-sizing: border-box; +} + +@media (prefers-color-scheme: dark) { + html { + color-scheme: dark; + } + body { + color: white; + background: black; + } +} |
