Finish adding Aboutme, projects, and socials pages

This commit is contained in:
2026-05-27 21:57:57 -05:00
parent 2077195d2d
commit 7d7afcc1e2
8 changed files with 193 additions and 16 deletions

38
assets/css/projects.css Normal file
View File

@@ -0,0 +1,38 @@
main {
margin-inline: 32px;
display: flex;
justify-content: space-between;
gap: 32px;
padding: 32px;
outline: var(--outline);
flex-wrap: wrap;
background: var(--bg-highlight-color);
}
a.container {
background: var(--bg-color);
font-family: var(--font);
flex: 1;
display: flex;
flex-direction: column;
gap: 8px;
padding: 16px;
outline: var(--outline);
color: var(--text-color);
text-decoration: none;
}
a.container > .title {
font-size: 28px;
font-weight: 700;
}
a.container:hover > .title {
text-decoration: underline;
}
a.container > .description {
font-size: 18px;
}