From c611d57e917410c053b7a21c7b816589ef9054cd Mon Sep 17 00:00:00 2001 From: cryptogopher Date: Sun, 2 Apr 2023 01:51:12 +0200 Subject: [PATCH] Style app menu --- app/assets/stylesheets/application.css | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index cb36b90..cd7132b 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -14,18 +14,26 @@ *= require_self */ +* { + font-family: system-ui; +} + .app-menu { height: 2.1em; } .app-menu a { - color: black; + border: 0.1em solid; + border-color: #a0a0a0; + border-radius: 0.2em; + color: #a0a0a0; float: right; - font-size: 0.9em; + font-size: 0.8em; + font-weight: bold; padding: 0.6em; } .app-menu a:hover { background-color: #009ade; - border-radius: 0.2em; + border-color: #009ade; color: white; cursor: pointer; text-decoration: none;