CMXX - Placeorder initial version

This commit is contained in:
“VeLiTi”
2025-02-13 11:23:15 +01:00
parent 2eaf83c3fe
commit 3424c9fadc
14 changed files with 446 additions and 377 deletions

View File

@@ -1586,7 +1586,7 @@ a.link-button {
}
.breadcrum a{
text-decoration: none;
color: #555555;
color: #4a90e2;
cursor: pointer;
font-family: inherit;
font-size: 0.8em;
@@ -1832,6 +1832,12 @@ input.banner_deny:hover {
.filtersection {
display: flex;
margin: 0 auto;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
background: white;
border-radius: 12px;
margin-bottom: 50px;
padding: 10px;
width: 95%;
}
/* Filter Section */
@@ -1870,4 +1876,133 @@ input.banner_deny:hover {
border-right: none;
border-bottom: 1px solid #e0e0e0;
}
}
.news-section {
padding: 80px 20px;
background-color: #f8f8f8;
}
.news-container {
max-width: 1200px;
margin: 0 auto;
}
.news-header {
text-align: center;
margin-bottom: 50px;
}
.news-header h2 {
font-size: 2rem;
margin-bottom: 15px;
font-family: 'gerb', sans-serif;
}
.news-header p {
color: #666;
font-size: 1.1rem;
}
.news-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-bottom: 50px;
}
.news-card {
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: box-shadow 0.3s ease;
}
.news-card:hover {
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.news-card-content {
padding: 20px;
}
.news-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}
.news-date {
color: #666;
font-size: 0.9rem;
}
.news-tag {
background: #e6f0ff;
color: #0066cc;
padding: 4px 12px;
border-radius: 15px;
font-size: 0.8rem;
}
.news-title {
font-size: 1.25rem;
margin-bottom: 15px;
color: #333;
font-weight: 600;
}
.news-preview {
color: #666;
margin-bottom: 20px;
line-height: 1.5;
}
.read-more {
color: #0066cc;
text-decoration: none;
display: inline-flex;
align-items: center;
font-weight: 500;
}
.read-more:hover {
color: #0052a3;
}
.read-more::after {
content: '>';
margin-left: 5px;
}
.view-all-container {
text-align: center;
}
.view-all-btn {
background: #0066cc;
color: white;
padding: 12px 24px;
border-radius: 4px;
text-decoration: none;
display: inline-block;
transition: background-color 0.3s ease;
}
.view-all-btn:hover {
background: #0052a3;
}
@media (max-width: 1024px) {
.news-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.news-grid {
grid-template-columns: 1fr;
}
}

View File

@@ -407,6 +407,12 @@ main .recentlyadded .products .product:hover .name, main .products .products-wra
main > .product {
display: flex;
padding: 40px 0;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
background: white;
border-radius: 12px;
margin-bottom: 50px;
padding: 10px;
width: 95%;
}
main > .product h1 {
@@ -523,6 +529,15 @@ main > .product form .btn {
margin-top: 10px;
width: 400px;
text-transform: uppercase;
padding: 16px;
background: #4a90e2;
color: white;
border: none;
border-radius: 8px;
font-size: 1.1rem;
font-weight: 500;
cursor: pointer;
transition: background-color 0.2s;
}
main > .products h1 {