Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions apply.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Apply for a Website - SillyLittleTech</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap"
/>
<link rel="stylesheet" href="base.css" />
<link rel="stylesheet" href="style.css" />
<link
Expand Down
10 changes: 9 additions & 1 deletion base.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
/* base.css - shared variables and minimal resets used by all pages */
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");
/*
* NOTE: The Lexend font used as the primary body font is NOT loaded here.
* Every page that includes base.css MUST load Lexend via <link> tags in its
* <head> (before base.css) to avoid falling back to system fonts:
*
* <link rel="preconnect" href="https://fonts.googleapis.com" />
* <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
* <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap" />
*/
:root {
--bg-color: #ffffff;
Comment thread
kiyarose marked this conversation as resolved.
--text-color: #1a1a1a;
Expand Down
6 changes: 6 additions & 0 deletions brand.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
} catch (e) {}
})();
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap"
/>
<link rel="stylesheet" href="base.css" />
<link rel="stylesheet" href="brand.css" />
<style>
Expand Down
6 changes: 6 additions & 0 deletions donate.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Make a Donation - SillyLittleTech</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap"
/>
<link rel="stylesheet" href="base.css" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="site.css" />
Expand Down
6 changes: 6 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
} catch (e) {}
})();
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap"
/>
<link rel="stylesheet" href="base.css" />
<link rel="stylesheet" href="site.css" />
</head>
Expand Down
11 changes: 1 addition & 10 deletions site.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,7 @@
sans-serif;
}
.name .tech-thin {
font-family:
"Lexend",
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
"Helvetica Neue",
Arial,
sans-serif;
font-weight: 300;
font-weight: 400;
}
.description {
font-size: 1.125rem; /* ~20px at 18px base */
Expand Down