claude and example site

This commit is contained in:
2025-09-28 07:51:22 -04:00
parent c99bced56e
commit c9a3a21f07
11 changed files with 1298 additions and 0 deletions

View File

@ -0,0 +1,77 @@
.albums {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 0.6rem;
font-size: 1rem;
margin: 0.6rem;
flex-shrink: 0;
max-width: 8em;
}
hr {
max-width: 800px;
margin-left: 0;
}
.albums a {
border-radius: 2rem;
padding: 0.2rem;
color: var(--font-color);
text-decoration: none;
transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
}
.albums a:hover {
color: var(--hover-color);
transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
}
.breadcrumbs {
display: flex;
flex-direction: row;
align-items: center;
gap: 0.5rem;
font-size: 1rem;
margin: 0.5rem;
}
.breadcrumbs .separator {
color: grey;
}
.breadcrumbs .current {
font-weight: bold;
}
a {
color: var(--font-color);
text-decoration: none;
transition: color 0.3s ease-in-out;
}
a:hover {
color: var(--hover-color);
transition: color 0.3s ease-in-out;
}
.content {
display: flex;
flex-direction: row;
width: 100%;
gap: 2rem;
}
.content_holder {
display: flex;
flex-direction: row;
}
.holder {
width: 100%;
padding: 0.6rem
}
.post {
padding: 0.6rem;
}