Add modular SCSS structure and lightbox functionality

Introduce a modular SCSS structure to improve maintainability and organization of stylesheets. Add lightbox functionality for homepage screenshots, including responsive JavaScript behavior and custom styling for enhanced user experience. Update tasks documentation with improvement initiatives for the project.
This commit is contained in:
tfw
2025-05-13 14:26:58 +02:00
parent 801738558a
commit 0fd0f406fb
31 changed files with 1261 additions and 568 deletions
+44
View File
@@ -0,0 +1,44 @@
// Search functionality styling
// Search form
.md-search__form {
input::placeholder {
color: #fff !important;
}
&:hover {
background-color: transparent !important;
}
}
// Search input
.md-search__input {
text-transform: uppercase;
font-size: 0.7rem;
font-weight: 400;
opacity: 1;
color: #fff;
}
// Search results meta
.md-search-result__meta {
background-color: #000;
text-transform: uppercase;
font-size: 0.7rem;
font-weight: 400;
opacity: 1;
color: #fff;
}
// Hide search suggestions when search is active
[data-md-toggle=search]:checked ~ .md-header .md-search__suggest {
opacity: 0;
}
// Social links
.md-social__link {
display: inline-block;
height: 1rem;
text-align: center;
width: 1rem;
}