From 4595c5633de22f40b1c53d0ad07a176a258e5b72 Mon Sep 17 00:00:00 2001 From: HackerNCoder Date: Sun, 11 Jun 2023 21:14:10 +0000 Subject: [PATCH] Make nav a 2rem on width > 768px Signed-off-by: HackerNCoder --- assets/static/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/assets/static/style.css b/assets/static/style.css index cb3b6ef..eea38d3 100644 --- a/assets/static/style.css +++ b/assets/static/style.css @@ -44,7 +44,6 @@ header nav ul li { } header nav ul li a { - font-size: 16px; color: #EAE2B7; text-decoration: none; padding: 3px 3px 0; @@ -58,6 +57,10 @@ header nav ul li a:hover { color: #ADD7F6; } +@media (max-width: 768px) { + font-size: 2rem; +} + .page h2 { margin-bottom: 2rem; }