Rebuild website with correct Headlamp plugin portfolio content
ci/merge Merge check passed
ci/build Build passed

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-05-21 11:58:00 +00:00
committed by Gandalf the Greybeard [agent]
parent f99418eab2
commit b349fbb9b0
3 changed files with 149 additions and 96 deletions
+96 -45
View File
@@ -1,10 +1,12 @@
:root {
--primary-color: #2c3e50;
--accent-color: #e74c3c;
--secondary-color: #34495e;
--light-bg: #ecf0f1;
--text-color: #2c3e50;
--border-color: #bdc3c7;
--primary-color: #1a73e8;
--secondary-color: #3d5a80;
--accent-color: #00a896;
--light-bg: #f8f9fa;
--text-color: #202124;
--border-color: #dadce0;
--card-bg: #ffffff;
--card-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
* {
@@ -61,7 +63,7 @@ body {
.navbar h1 {
font-size: 1.8rem;
font-weight: 700;
font-weight: 600;
}
.nav-links {
@@ -73,12 +75,12 @@ body {
.nav-links a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
transition: opacity 0.2s ease;
font-weight: 500;
}
.nav-links a:hover {
color: var(--accent-color);
opacity: 0.8;
}
/* Hero Section */
@@ -89,15 +91,24 @@ body {
text-align: center;
}
.hero-logo {
height: 80px;
width: auto;
border-radius: 8px;
margin-bottom: 1.5rem;
}
.hero h2 {
font-size: 2.5rem;
font-size: 2.2rem;
margin-bottom: 1rem;
font-weight: 700;
font-weight: 600;
}
.hero p {
font-size: 1.2rem;
font-size: 1.15rem;
opacity: 0.95;
max-width: 600px;
margin: 0 auto;
}
/* Sections */
@@ -105,81 +116,109 @@ body {
padding: 60px 0;
}
.section h2 {
.section-title {
font-size: 2rem;
margin-bottom: 1.5rem;
margin-bottom: 1rem;
color: var(--primary-color);
border-bottom: 3px solid var(--accent-color);
padding-bottom: 0.5rem;
display: inline-block;
}
.section-intro {
font-size: 1.05rem;
margin-bottom: 2.5rem;
color: #5f6368;
max-width: 700px;
}
.section p {
font-size: 1rem;
margin-bottom: 1rem;
line-height: 1.8;
}
.section ul {
margin-left: 20px;
margin-bottom: 1.5rem;
.section a {
color: var(--primary-color);
text-decoration: none;
}
.section ul li {
margin-bottom: 0.8rem;
font-size: 1rem;
.section a:hover {
text-decoration: underline;
}
.alternate {
background-color: var(--light-bg);
}
/* Resource Grid */
.resource-grid {
/* Plugin Grid */
.plugin-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}
.resource-card {
background: white;
padding: 2rem;
.plugin-card {
background: var(--card-bg);
padding: 1.75rem;
border-radius: 8px;
border-left: 4px solid var(--accent-color);
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid var(--border-color);
box-shadow: var(--card-shadow);
transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.resource-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
.plugin-card:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.12);
transform: translateY(-2px);
}
.resource-card h3 {
color: var(--accent-color);
margin-bottom: 0.5rem;
font-size: 1.2rem;
.plugin-card h3 {
color: var(--primary-color);
margin-bottom: 0.75rem;
font-size: 1.15rem;
font-weight: 600;
}
.resource-card p {
.plugin-card p {
font-size: 0.95rem;
color: #555;
color: #5f6368;
line-height: 1.6;
margin-bottom: 1rem;
}
.plugin-link {
display: inline-block;
color: var(--accent-color);
font-weight: 600;
font-size: 0.9rem;
}
.plugin-link:hover {
text-decoration: underline;
}
/* Footer */
footer {
background-color: var(--primary-color);
background-color: var(--secondary-color);
color: white;
text-align: center;
padding: 2rem 0;
margin-top: 3rem;
}
footer p {
margin-bottom: 0.5rem;
}
footer a {
color: white;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* Responsive Design */
@media (max-width: 768px) {
.navbar .container {
@@ -193,19 +232,23 @@ footer p {
text-align: center;
}
.hero {
padding: 60px 0;
}
.hero h2 {
font-size: 1.8rem;
font-size: 1.75rem;
}
.hero p {
font-size: 1rem;
}
.section h2 {
.section-title {
font-size: 1.5rem;
}
.resource-grid {
.plugin-grid {
grid-template-columns: 1fr;
}
@@ -217,6 +260,10 @@ footer p {
.navbar h1 {
font-size: 1.5rem;
}
.hero-logo {
height: 60px;
}
}
@media (max-width: 480px) {
@@ -235,4 +282,8 @@ footer p {
.logo {
height: 40px;
}
}
.hero-logo {
height: 50px;
}
}