styling update

This commit is contained in:
2025-11-12 17:49:56 +01:00
parent 64254454a4
commit 43a9b63c95
14 changed files with 150 additions and 128 deletions
+28 -21
View File
@@ -92,31 +92,37 @@
/* Tab Navigation */
.tab-navigation {
display: flex;
gap: 5px;
gap: 15px;
margin-bottom: 25px;
border-bottom: 2px solid #f1f3f4;
}
.tab-btn {
background: none;
border: none;
padding: 12px 24px;
flex: 1;
background: #f8f9fa;
border: 2px solid #e9ecef;
padding: 14px 24px;
cursor: pointer;
font-size: 1rem;
font-size: 1.05rem;
font-weight: 600;
color: #666;
border-bottom: 3px solid transparent;
border-radius: 8px;
transition: all 0.3s ease;
min-height: 50px;
}
.tab-btn.active {
color: #007bff;
border-bottom-color: #007bff;
background: #28a745;
border-color: #1e7e34;
color: white;
box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}
.tab-btn:hover {
color: #007bff;
background: rgba(0, 123, 255, 0.05);
background: #28a745;
border-color: #1e7e34;
color: white;
box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
transform: translateY(-2px);
}
.tab-content {
@@ -401,7 +407,7 @@
.search-box:focus {
outline: none;
border-color: #007bff;
border-color: #28a745;
box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
@@ -418,7 +424,7 @@
.sort-select:focus {
outline: none;
border-color: #007bff;
border-color: #28a745;
}
.filter-buttons {
@@ -439,13 +445,13 @@
}
.filter-btn.active {
background: #007bff;
background: #28a745;
color: white;
border-color: #007bff;
border-color: #28a745;
}
.filter-btn:hover {
border-color: #007bff;
border-color: #28a745;
transform: translateY(-1px);
}
@@ -573,7 +579,7 @@
width: 30px;
height: 30px;
border: 3px solid #f3f3f3;
border-top: 3px solid #007bff;
border-top: 3px solid #28a745;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto 10px;
@@ -685,13 +691,14 @@
}
.tab-navigation {
flex-wrap: wrap;
gap: 2px;
flex-direction: column;
gap: 10px;
}
.tab-btn {
padding: 8px 16px;
font-size: 0.9rem;
padding: 12px 20px;
font-size: 0.95rem;
min-height: 45px;
}
}
</style>