From 86d3bd0da5d45f1227ae182f9d87b1a4cc0bfa38 Mon Sep 17 00:00:00 2001 From: Игорь Толмачёв Date: Sun, 14 Apr 2024 09:54:56 +0000 Subject: Add minecraft server list and update fonts --- style.css | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 style.css (limited to 'style.css') diff --git a/style.css b/style.css new file mode 100644 index 0000000..ceac6b3 --- /dev/null +++ b/style.css @@ -0,0 +1,48 @@ +@font-face { + font-family: Noto Sans Mono; + src: url(font.ttf); +} + +* { + font-family: Noto Sans Mono; +} + +@media screen and (max-width: 700px) { + * { + font-size: small; + } +} + +@media screen and (min-width: 700px) { + * { + font-size: x-large; + } +} + +@media (prefers-color-scheme: dark) { + body { + color: #a7a7a7; + background: #1e1e1e; + } +} + +@media (prefers-color-scheme: light) { + body { + color: #464b50; + background: #ffffff; + } +} + +a, +.copy { + cursor: pointer; + text-decoration: underline; + color: #7587a6; +} + +a:active, +.copy:active { + cursor: pointer; + text-decoration: underline; + color: #9b859d; +} \ No newline at end of file -- cgit v1.2.3