diff options
| author | Игорь Толмачёв <igorechek06@noreply.codeberg.org> | 2024-04-14 09:54:56 +0000 |
|---|---|---|
| committer | Igor Tolmachev <me@igorek.dev> | 2024-04-14 23:02:22 +0900 |
| commit | 86d3bd0da5d45f1227ae182f9d87b1a4cc0bfa38 (patch) | |
| tree | c0697037bf8cddecb93401d4b6412d46895ac0df /style.css | |
| parent | c0cdb3ea300a4a3c3dc4c2f61acc562832355565 (diff) | |
| download | pages-86d3bd0da5d45f1227ae182f9d87b1a4cc0bfa38.tar.gz pages-86d3bd0da5d45f1227ae182f9d87b1a4cc0bfa38.zip | |
Add minecraft server list and update fonts
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..ceac6b3 --- /dev/null +++ b/style.css | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | @font-face { | ||
| 2 | font-family: Noto Sans Mono; | ||
| 3 | src: url(font.ttf); | ||
| 4 | } | ||
| 5 | |||
| 6 | * { | ||
| 7 | font-family: Noto Sans Mono; | ||
| 8 | } | ||
| 9 | |||
| 10 | @media screen and (max-width: 700px) { | ||
| 11 | * { | ||
| 12 | font-size: small; | ||
| 13 | } | ||
| 14 | } | ||
| 15 | |||
| 16 | @media screen and (min-width: 700px) { | ||
| 17 | * { | ||
| 18 | font-size: x-large; | ||
| 19 | } | ||
| 20 | } | ||
| 21 | |||
| 22 | @media (prefers-color-scheme: dark) { | ||
| 23 | body { | ||
| 24 | color: #a7a7a7; | ||
| 25 | background: #1e1e1e; | ||
| 26 | } | ||
| 27 | } | ||
| 28 | |||
| 29 | @media (prefers-color-scheme: light) { | ||
| 30 | body { | ||
| 31 | color: #464b50; | ||
| 32 | background: #ffffff; | ||
| 33 | } | ||
| 34 | } | ||
| 35 | |||
| 36 | a, | ||
| 37 | .copy { | ||
| 38 | cursor: pointer; | ||
| 39 | text-decoration: underline; | ||
| 40 | color: #7587a6; | ||
| 41 | } | ||
| 42 | |||
| 43 | a:active, | ||
| 44 | .copy:active { | ||
| 45 | cursor: pointer; | ||
| 46 | text-decoration: underline; | ||
| 47 | color: #9b859d; | ||
| 48 | } \ No newline at end of file | ||
