Format banner tagline

This commit is contained in:
2025-07-18 23:06:35 -04:00
parent ec8335daab
commit 65528d2025
4 changed files with 41 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -19,7 +19,12 @@ https://creativecommons.org/publicdomain/
local("GNUTypewriter"), local("GNUTypewriter"),
url("/css/gnutypewriter/gtw.woff") format("woff"); url("/css/gnutypewriter/gtw.woff") format("woff");
} }
@font-face {
font-family: "BebasNeue";
src:
local("BebasNeue"),
url("/css/bebas/BebasNeue.woff") format("woff");
}
:root { :root {
--background-primary: #dfdfdf; --background-primary: #dfdfdf;
--text-primary: #4d4d4d; /* HPR Grey */ --text-primary: #4d4d4d; /* HPR Grey */
@@ -42,8 +47,6 @@ https://creativecommons.org/publicdomain/
--for-tablet-landscape-up: 900px; --for-tablet-landscape-up: 900px;
--for-desktop-up: 1200px; --for-desktop-up: 1200px;
--for-big-desktop-up: 1800px; --for-big-desktop-up: 1800px;
} }
html { html {
@@ -63,6 +66,7 @@ body {
font-family: var(--font-family-hpr); font-family: var(--font-family-hpr);
margin: 0; margin: 0;
padding: 0; padding: 0;
min-height: 100vh;
} }
body > nav { body > nav {
@@ -109,9 +113,11 @@ body > header > * {
padding: 1.5rem; padding: 1.5rem;
} }
body > main { body > main {
flex: 1 0 auto;
padding: 0.25rem; padding: 0.25rem;
} }
body > footer { body > footer {
flex: 0 1 auto;
background-color: var(--background-secondary); background-color: var(--background-secondary);
color: var(--text-secondary); color: var(--text-secondary);
padding: 0.25rem; padding: 0.25rem;
@@ -255,6 +261,9 @@ a.lane-button img {
#title { #title {
text-transform: uppercase; text-transform: uppercase;
} }
#tag_line {
line-height: 1;
}
#tag_line *, #tag_line *,
#title * { #title * {
margin: 0; margin: 0;
@@ -265,14 +274,43 @@ a.lane-button img {
letter-spacing: -0.65rem; letter-spacing: -0.65rem;
line-height: 0.75; line-height: 0.75;
} }
#tag_line h2 {
text-transform: uppercase;
font-family: "BebasNeue", sans-serif;
font-size: 1.15rem;
letter-spacing: 0.05rem;
}
#tag_line h2:first-child {
font-size: 2rem;
}
#tag_line h3 { #tag_line h3 {
text-transform: capitalize; text-transform: capitalize;
font-size: 1.15rem;
} }
#site_url { #site_url {
font-family: "GNUTypewriter", monospace; font-family: "GNUTypewriter", monospace;
text-transform: none; text-transform: none;
} }
@media (min-width: 900px) { @media (min-width: 900px) {
#tag_line {
text-align: center;
}
#title h1 {
font-size: 7.5rem;
letter-spacing: -0.65rem;
line-height: 0.75;
}
#tag_line h2 {
font-size: 1.82rem;
letter-spacing: 0.05rem;
}
#tag_line h2:first-child {
font-size: 4rem;
}
#tag_line h3 {
font-size: 1.85rem;
margin-left: 5rem;
}
#qr_code { #qr_code {
text-align: center; text-align: center;
} }