Ready Home Tab

This commit is contained in:
Malte Schröder
2025-12-18 15:03:27 +01:00
parent e7f1b4b566
commit 9dba343301
11 changed files with 284 additions and 25 deletions

127
style/home.scss Normal file
View File

@@ -0,0 +1,127 @@
.home-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.project-card {
background: var(--white);
border-radius: 1.25rem;
overflow: hidden;
border: 1px solid var(--border);
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
&:hover {
transform: translateY(-8px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.project-image {
width: 100%;
height: 200px;
background: #eef2ff;
overflow: hidden;
img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
}
&:hover .project-image img {
transform: scale(1.05);
}
.project-content {
padding: 1.5rem;
display: flex;
flex-direction: column;
flex: 1;
h3 {
margin: 0 0 0.75rem 0;
font-size: 1.25rem;
color: var(--text-main);
}
p {
margin: 0 0 1.5rem 0;
color: var(--text-light);
font-size: 0.95rem;
line-height: 1.6;
flex: 1;
}
}
.project-links {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
a {
text-decoration: none;
padding: 0.6rem;
border-radius: 0.75rem;
font-size: 0.85rem;
font-weight: 600;
text-align: center;
transition: all 0.2s;
}
.btn-download {
background: var(--primary);
color: white;
&:hover { background: var(--primary-dark); }
}
.btn-code {
background: #f1f5f9;
color: var(--text-main);
&:hover { background: #e2e8f0; }
}
}
}
.loading-trigger {
display: flex;
justify-content: center;
align-items: center;
min-height: 150px;
padding-bottom: 50px;
color: var(--text-light);
p { font-size: 0.9rem; opacity: 0.7; }
}
.spinner {
width: 40px;
height: 40px;
border: 3px solid rgba(99, 102, 241, 0.1);
border-top-color: var(--primary);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
@media (max-width: 640px) {
.projects-grid {
grid-template-columns: 1fr;
}
.home-hero h1 {
font-size: 2.5rem;
}
}

View File

@@ -1,3 +1,6 @@
@import "home";
:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
@@ -45,14 +48,6 @@ body {
}
}
// --- HOME PAGE ---
.home-hero {
text-align: center;
padding: 100px 20px;
h1 { font-size: 4rem; color: var(--primary); margin-bottom: 1rem; font-weight: 900; }
p { font-size: 1.25rem; color: var(--text-light); }
}
// --- COMMUNITY / LOGIN ---
.community-container {
display: flex; justify-content: center; padding: 3rem 1rem;