Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
107 changes: 72 additions & 35 deletions application/frontend/src/pages/Search/search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1023,9 +1023,15 @@ body {
position: relative;
z-index: 10;
width: 100%;
border-top: 1px solid rgba(var(--border-rgb), 0.5);
padding: 4rem 0; // ⬅ slightly more breathing room
backdrop-filter: blur(4px);
padding: 3rem 0;
background: linear-gradient(
180deg,
rgba(255, 255, 255, 0.06),
rgba(255, 255, 255, 0.02)
);
backdrop-filter: blur(12px) saturate(160%);
-webkit-backdrop-filter: blur(12px) saturate(160%);
border-top: 1px solid rgba(255, 255, 255, 0.12);

&__container {
max-width: 112rem;
Expand All @@ -1042,54 +1048,84 @@ body {
}

&__grid {
display: grid;
grid-template-columns: 1fr;
gap: 2.5rem;
align-items: start;
display: grid;
grid-template-columns: 1fr;
gap: 2.5rem;

@media (min-width: 768px) {
grid-template-columns: 1.2fr 1fr 1fr 1fr; // ⬅ brand slightly wider
gap: 3.5rem;
}
@media (min-width: 768px) {
grid-template-columns: repeat(4, 1fr);
}
}

&__about {
display: flex;
flex-direction: column;
gap: 1.25rem;
max-width: 30rem;
padding: 1rem;
border-radius: 1rem;

.logo-link {
display: flex;
align-items: center;
gap: 0.5rem;
background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);

img {
height: 2rem; // ⬅ reduced from 2.25rem
width: auto;
}
}
border: 1px solid rgba(255, 255, 255, 0.08);

p {
color: var(--muted-foreground);
line-height: 1.6;
font-size: 0.95rem;
display: flex;
flex-direction: column;
gap: 0.5rem;

transition: transform 0.3s ease, box-shadow 0.3s ease;

&:hover {
transform: translateY(-2px);
box-shadow:
0 8px 24px rgba(0, 0, 0, 0.25),
inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.logo-link {
display: flex;
align-items: center;
gap: 0.5rem;

img {
height: 2.5rem;
width: auto;
filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
}
}

p {
margin-top: 0.25rem;
max-width: 280px;
font-size: 0.875rem;
line-height: 1.4;
color: rgba(255, 255, 255, 0.65);
}
}

&__links-column {
padding: 1rem;
border-radius: 1rem;

background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(6px);
border: 1px solid rgba(255, 255, 255, 0.08);
transition: background-color 0.3s ease, box-shadow 0.3s ease;

&:hover {
background: rgba(255, 255, 255, 0.07);
transform: translateY(-2px);
}
.column-title {
color: white;
color: #ffffff;
font-weight: 500;
margin-bottom: 1rem;
font-size: 0.95rem;
letter-spacing: 0.02em;
margin-bottom: 1.1rem;
}

.links-list {
display: flex;
flex-direction: column;
gap: 0.55rem;
color: #ffffff;
font-weight: 500;
margin-bottom: 1rem;
font-size: 0.95rem;

a {
display: block;
Expand All @@ -1099,7 +1135,8 @@ body {
text-decoration: none;

&:hover {
color: var(--foreground);
color: rgba(var(--muted-foreground-rgb), 0.9);

}
}
}
Expand Down