From a6f7643607d43819e373a08fa1318261f96772fe Mon Sep 17 00:00:00 2001 From: hippoz Date: Sun, 18 Oct 2020 21:41:14 +0300 Subject: [PATCH] switch to sans serif --- index.html | 1 - res/style.css | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index a7d8063..a18c317 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,6 @@ hippoz - diff --git a/res/style.css b/res/style.css index 4488b6e..07f73bb 100644 --- a/res/style.css +++ b/res/style.css @@ -4,12 +4,12 @@ --button-accent-color: #3d3d3d; --selected-bg-color: #2E2E2E; --hover-bg-color: #555555; - --main-font-weight: 400; + --main-font-weight: 500; } body { background: var(--body-bg-color); - font-family: 'Roboto', sans-serif; + font-family: Tahoma, Verdana, Arial, sans-serif; font-weight: var(--main-font-weight); } @@ -61,6 +61,7 @@ body { .button-selected { color: var(--accent-bg-color); + background-color: var(--selected-bg-color); }