diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-07-20 00:13:19 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-07-20 00:13:19 +0200 |
| commit | a6a71e448b7f88bbf2d00e23a53355777373d3fb (patch) | |
| tree | 48046f842f58e616bf640bbc99a1df2f57e27e53 /css | |
| parent | fef68461cb85a882c86e93b1cc66b57f0f680681 (diff) | |
Add picker
Diffstat (limited to 'css')
| -rw-r--r-- | css/application.css | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/css/application.css b/css/application.css new file mode 100644 index 0000000..10333c3 --- /dev/null +++ b/css/application.css @@ -0,0 +1,38 @@ +body { + font-family: "Hiragino Mincho ProN W3", serif; + background-color: #fff; + color: #0F261F; +} + +h1 { + font-family: "Hiragino Mincho ProN W6", serif; + color: #FA2B00; +} + +h1 img { + width: 100px; + margin-right: 10px; +} + +a { + color: #4F8FE6; +} + +.updater { + width: 200px; + height: 200px; + background: #fff; + border: 10px solid #0F261F; +} + +@media (prefers-color-scheme: dark) { + body { + color: #fff; + background: #0F261F; + } + + .updater { + background: #0F261F; + border: 10px solid #fff; + } +} |