Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-05-25 21:12:00 +12:00
parent 2e5e467554
commit 5971915bc8
2 changed files with 12 additions and 1 deletions
+12 -1
View File
@@ -1,8 +1,19 @@
/* ── Brand font ────────────────────────────────────────────
ASB uses Overpass (open-source, SIL OFL) as their primary brand
typeface. Self-hosted as a single variable woff2 covering 400700. */
@font-face {
font-family: 'Overpass';
font-style: normal;
font-weight: 400 700;
font-display: swap;
src: url(../fonts/overpass-latin.woff2) format('woff2');
}
*{ *{
margin: 0; margin: 0;
padding: 0; padding: 0;
box-sizing: border-box; box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-family: 'Overpass', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
} }
:root { :root {
/* ASB brand yellow — used for highlights, hover, and the nav accent bar. */ /* ASB brand yellow — used for highlights, hover, and the nav accent bar. */
Binary file not shown.