aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryson Steck <brysonsteck@protonmail.com>2022-12-27 21:30:13 -0700
committerBryson Steck <brysonsteck@protonmail.com>2022-12-27 21:30:13 -0700
commit2955e445644990b6dc5a5d28d27f2e66409c4c4d (patch)
treeaef05798f4cfa27f9b417d9c81244a79cf288d22
parent6a0f9c90652fb1552e4c330136621b122fed69b8 (diff)
downloadwebsite-2955e445644990b6dc5a5d28d27f2e66409c4c4d.tar
website-2955e445644990b6dc5a5d28d27f2e66409c4c4d.tar.gz
website-2955e445644990b6dc5a5d28d27f2e66409c4c4d.tar.bz2
fix padding and navbar font-size
-rw-r--r--layouts/partials/head.html2
-rw-r--r--static/style.css6
2 files changed, 7 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index f5cebf9..b05ebb5 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -17,7 +17,7 @@
<script src="/time.js"></script>
<title>{{ $.Title }} - Bryson Steck</title>
</head>
- <body class="view">
+ <body class="view px-3">
<div class="container navbar">
<span><a href="/" class="navbar-title">Bryson Steck</a> &nbsp;</span>
<ul class="nav">
diff --git a/static/style.css b/static/style.css
index 775d6d5..04cf7b0 100644
--- a/static/style.css
+++ b/static/style.css
@@ -188,3 +188,9 @@ footer {
display: none;
}
}
+
+@media(max-width:502px) {
+ .navbar-item {
+ font-size: 14px;
+ }
+}