Generated contact page

This commit is contained in:
2026-05-28 15:03:05 -04:00
parent fbcbf7df59
commit 30d75dc6ad
4 changed files with 121 additions and 18 deletions
+35
View File
@@ -285,6 +285,41 @@ nav a {
border: 1px solid #1a1a1a;
}
#contact-view {
max-width: 600px;
}
.contact-list {
display: flex;
flex-direction: column;
gap: 1.25rem;
}
.contact-item {
display: flex;
flex-direction: column;
gap: 0.25rem;
padding: 0.75rem 0;
border-bottom: 1px solid #1a1a1a;
}
.contact-label {
font-size: 0.75rem;
color: #555;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.contact-item a {
font-size: 0.95rem;
color: #888;
word-break: break-all;
}
.contact-item a:hover {
color: #ccc;
}
@media (max-width: 768px) {
.art-grid {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));