feat: Adds favicons, updates styles, includes Avenir font.

This commit is contained in:
2025-04-03 09:56:33 -04:00
parent 548c534c67
commit 4d099909b6
40 changed files with 246 additions and 33 deletions

View File

@@ -1,3 +1,4 @@
@import url("https://fonts.cdnfonts.com/css/avenir");
@import "tailwindcss";
/*
@@ -18,6 +19,10 @@
}
}
@theme {
--font-avenir: "Avenir", sans-serif;
}
:root {
--accent: #a6e3a1;
--background: rgb(34, 33, 41);
@@ -90,9 +95,12 @@
nav a:hover {
@apply border-b-2 border-orange-400;
}
nav a.active {
@apply border-b-2 border-orange-400;
}
body {
@apply bg-slate-900;
@apply bg-slate-900 font-avenir;
}
h1 {
@@ -120,6 +128,10 @@ article h2 {
@apply border-b-2 border-slate-200;
}
article {
@apply font-avenir text-lg;
}
.container {
@apply px-10;
}
@@ -130,7 +142,3 @@ article h2 {
-ms-box-sizing: border-box;
box-sizing: border-box;
}
nav a:active {
@apply border-yellow-300 text-white;
}