This commit is contained in:
2026-01-23 13:02:30 +05:45
parent e2178e1439
commit eaaad459da
2 changed files with 807 additions and 698 deletions

View File

@@ -35267,6 +35267,7 @@ body.tmp-body-star::before {
.time-table-area-wrapper .inner-container .table-outer .table-inner .tabs-box .tab-country {
display: flex;
justify-content: space-around;
gap: 16px;
/* min-width: 1200px; */
}
@@ -35328,7 +35329,7 @@ body.tmp-body-star::before {
position: relative;
left: 0px;
top: 0px;
margin-bottom: 13px;
margin-bottom: 17px;
padding: 0;
}
@@ -35341,8 +35342,7 @@ body.tmp-body-star::before {
font-weight: 700;
cursor: pointer;
float: left;
margin-right: 12px;
margin-bottom: 17px;
padding: 12px 8px;
transition: all 500ms ease;
@@ -37955,3 +37955,65 @@ section {
font-size: 30px;
}
}
/* Search box wrapper */
.uni-search {
position: relative;
max-width: 420px;
}
/* Input field */
.uni-search input {
width: 100%;
padding: 14px 18px 14px 44px;
font-size: 15px;
border-radius: 12px;
border: 1px solid #e5e7eb;
background-color: #ffffff;
color: #111827;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
}
/* Focus state */
.uni-search input:focus {
outline: none;
border-color: #2563eb;
/* modern blue */
box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}
/* Placeholder */
.uni-search input::placeholder {
color: #9ca3af;
font-weight: 500;
}
/* Search icon */
.uni-search {
position: relative;
max-width: 420px;
}
.uni-search i {
position: absolute;
left: 14px;
top: 50%;
transform: translateY(-50%);
font-size: 16px;
color: #9ca3af;
pointer-events: none;
}
.uni-search input {
padding-left: 44px;
/* space for icon */
}
/* Mobile responsiveness */
@media (max-width: 768px) {
.uni-search {
max-width: 100%;
}
}

File diff suppressed because it is too large Load Diff