commit 7ed3d0090497aea1450475f35c5da9fe3dbf1132
parent f104e867a88c7bd9ebc20531d19a1dc77b19e0a3
Author: erai <erai@omiltem.net>
Date: Sun, 14 Apr 2024 23:33:35 -0400
scrollbar-gutter
Diffstat:
3 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/about/index.html b/about/index.html
@@ -21,7 +21,7 @@
</head>
<body>
<header>
- <p>Omiltem</p>
+ <p class="title">Omiltem</p>
<nav>
<ul class="links">
<li><a href="/">HOME</a></li>
diff --git a/css/style.css b/css/style.css
@@ -1,5 +1,8 @@
+html {
+ scrollbar-gutter: stable;
+}
+
body {
- justify-content: center;
line-height: 1.4;
color: #252525;
font-family: sans-serif;
@@ -7,11 +10,12 @@ body {
max-width: 45em;
}
-h1, h2, header p {
+h1, h2 {
border-bottom: 1pt solid #888888;
}
-header p {
+.title {
+ border-bottom: 1pt solid #888888;
margin-top: 0.7em;
margin-bottom: 0.7em;
font-size: 2em;
diff --git a/index.html b/index.html
@@ -16,7 +16,7 @@
</head>
<body>
<header>
- <p>Omiltem</p>
+ <p class="title">Omiltem</p>
<nav>
<ul class="links">
<li><a href="/">HOME</a></li>