site updates

This commit is contained in:
2025-05-14 16:49:16 -06:00
parent 54da9c8e33
commit c9321145f3
184 changed files with 158470 additions and 589 deletions

View File

@@ -1,10 +1,30 @@
/* Core layout */
.page-layout {
display: flex;
gap: 2rem;
gap: 1rem; /* Reduced from 2rem */
max-width: 1600px;
margin: 0 auto;
padding: 1rem;
padding: 0.75rem; /* Reduced from 1rem */
}
/* Logo container */
.logo-container {
display: flex;
justify-content: center;
margin-bottom: 1.5rem; /* Reduced from 2rem */
width: 100%;
}
.main-logo {
width: 300px;
height: auto;
border-radius: 8px;
object-fit: contain;
transition: transform 0.3s ease;
}
.main-logo:hover {
transform: scale(1.05);
}
/* Left sidebar */
@@ -12,7 +32,7 @@
width: 280px;
display: flex;
flex-direction: column;
gap: 1rem;
gap: 0.75rem; /* Reduced from 1rem */
order: 2;
}
@@ -24,7 +44,7 @@
align-items: flex-start;
justify-content: flex-start;
text-align: left;
padding: 1.5rem;
padding: 1rem; /* Reduced from 1.5rem */
min-width: 0;
order: 1;
}
@@ -36,21 +56,21 @@
/* Typography styles */
.home-content h1 {
margin: 0 0 1rem;
margin: 0 0 0.75rem; /* Reduced from 1rem */
font-size: 1.8rem;
}
.home-content p {
margin: 0.5rem 0;
margin: 0.4rem 0; /* Reduced from 0.5rem */
font-size: 0.95rem;
line-height: 1.4;
line-height: 1.3; /* Reduced from 1.4 */
}
.subtitle {
font-weight: bold;
font-style: italic;
color: var(--md-primary-fg-color);
margin: 0.7rem 0 1rem 0 !important;
margin: 0.5rem 0 0.75rem 0 !important; /* Reduced from 0.7rem 0 1rem 0 */
}
/* Button styles */
@@ -58,14 +78,14 @@
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
gap: 0.8rem;
margin-top: 1rem;
gap: 0.6rem; /* Reduced from 0.8rem */
margin-top: 0.75rem; /* Reduced from 1rem */
}
.home-button {
display: inline-block;
padding: 0.7rem 1.4rem;
border-radius: 6px;
padding: 0.6rem 1.2rem; /* Reduced from 0.7rem 1.4rem */
border-radius: 4px; /* Reduced from 6px */
text-decoration: none;
font-weight: 500;
font-size: 0.9rem;
@@ -99,52 +119,52 @@
width: 300px;
display: flex;
flex-direction: column;
gap: 1rem;
gap: 0.75rem; /* Reduced from 1rem */
order: 3;
}
/* Card styling */
.sidebar-card {
background: var(--md-primary-bg-color);
border-radius: 8px;
padding: 1.2rem;
border-radius: 6px; /* Reduced from 8px */
padding: 1rem; /* Reduced from 1.2rem */
text-decoration: none;
color: inherit;
border: 1px solid rgba(0, 0, 0, 0.1);
border: 1px solid rgba(0, 0, 0, 0.08); /* Reduced opacity from 0.1 */
transition: all 0.2s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05); /* Reduced shadow */
}
.sidebar-card:hover {
transform: translateY(-2px);
border-color: var(--md-primary-fg-color);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08); /* Reduced from 0 4px 12px and opacity 0.12 */
}
.card-content h3 {
font-size: 1.1rem;
margin: 0 0 0.8rem 0;
margin: 0 0 0.6rem 0; /* Reduced from 0.8rem */
color: var(--md-primary-fg-color);
}
.card-content p {
font-size: 0.85rem;
margin: 0.3rem 0 0.8rem;
margin: 0.2rem 0 0.6rem; /* Reduced from 0.3rem 0 0.8rem */
}
/* Resources card */
.resource-list {
display: flex;
flex-direction: column;
gap: 0.8rem;
gap: 0.6rem; /* Reduced from 0.8rem */
}
.resource-item {
display: flex;
align-items: center;
gap: 0.7rem;
padding: 0.7rem;
border-radius: 6px;
gap: 0.5rem; /* Reduced from 0.7rem */
padding: 0.6rem; /* Reduced from 0.7rem */
border-radius: 4px; /* Reduced from 6px */
text-decoration: none;
color: inherit;
transition: all 0.2s ease;
@@ -193,12 +213,12 @@
.community-profile {
display: flex;
align-items: center;
gap: 1rem;
margin: 1rem 0;
padding: 0.8rem;
gap: 0.75rem; /* Reduced from 1rem */
margin: 0.75rem 0; /* Reduced from 1rem */
padding: 0.6rem; /* Reduced from 0.8rem */
background: rgba(var(--md-primary-fg-color--rgb), 0.04);
border-radius: 8px;
border-left: 3px solid var(--md-primary-fg-color);
border-radius: 6px; /* Reduced from 8px */
border-left: 2px solid var(--md-primary-fg-color); /* Reduced from 3px */
}
.community-photo {
@@ -223,18 +243,18 @@
.contact-actions {
display: flex;
flex-direction: column;
gap: 0.8rem;
margin-top: 1rem;
gap: 0.6rem; /* Reduced from 0.8rem */
margin-top: 0.75rem; /* Reduced from 1rem */
}
.action-btn {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.7rem 1rem;
gap: 0.4rem; /* Reduced from 0.5rem */
padding: 0.6rem 0.9rem; /* Reduced from 0.7rem 1rem */
background: white;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 6px;
border: 1px solid rgba(0, 0, 0, 0.08); /* Reduced opacity from 0.1 */
border-radius: 4px; /* Reduced from 6px */
color: inherit;
text-decoration: none;
font-size: 0.85rem;
@@ -306,7 +326,7 @@
@media (max-width: 600px) {
.page-layout {
padding: 0.5rem;
padding: 0.4rem; /* Reduced from 0.5rem */
}
.home-buttons {
@@ -318,12 +338,20 @@
width: 100%;
text-align: center;
}
.logo-container {
margin-bottom: 1.2rem; /* Reduced from 1.5rem */
}
.main-logo {
width: 100px;
}
}
/* Dark mode support */
[data-md-color-scheme="slate"] .sidebar-card {
background: rgba(45, 55, 72, 0.3);
border-color: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.05); /* Reduced opacity from 0.1 */
}
[data-md-color-scheme="slate"] .resource-item {