switch to sans serif

This commit is contained in:
hippoz 2020-10-18 21:41:14 +03:00
parent a407bce53b
commit a6f7643607
2 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,6 @@
<title>hippoz</title> <title>hippoz</title>
<link rel="stylesheet" href="/res/style.css"> <link rel="stylesheet" href="/res/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap">
<meta name="Description" content="Hippoz's homepage on hippoz.xyz with a file server, a git server, an about page, and a contact page."> <meta name="Description" content="Hippoz's homepage on hippoz.xyz with a file server, a git server, an about page, and a contact page.">
</head> </head>

View file

@ -4,12 +4,12 @@
--button-accent-color: #3d3d3d; --button-accent-color: #3d3d3d;
--selected-bg-color: #2E2E2E; --selected-bg-color: #2E2E2E;
--hover-bg-color: #555555; --hover-bg-color: #555555;
--main-font-weight: 400; --main-font-weight: 500;
} }
body { body {
background: var(--body-bg-color); background: var(--body-bg-color);
font-family: 'Roboto', sans-serif; font-family: Tahoma, Verdana, Arial, sans-serif;
font-weight: var(--main-font-weight); font-weight: var(--main-font-weight);
} }
@ -61,6 +61,7 @@ body {
.button-selected { .button-selected {
color: var(--accent-bg-color); color: var(--accent-bg-color);
background-color: var(--selected-bg-color); background-color: var(--selected-bg-color);
} }