feat(hero-banner): update event icons and add gradient overlay to hero banner

This commit is contained in:
2026-07-14 14:30:01 -03:00
parent 257e4fbeb8
commit 25085f6f85
2 changed files with 30 additions and 6 deletions

View File

@@ -10,6 +10,18 @@
min-height: 400px;
display: flex;
flex-direction: column;
&::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.95) 100%);
border-radius: inherit;
z-index: 1;
}
}
.hero-text-box {
@@ -18,8 +30,15 @@
background: transparent;
}
.hero-content {
position: relative;
z-index: 2;
flex-grow: 1;
}
::ng-deep .hero-title, .hero-title {
color: #555;
color: #666666;
font-size: 1.5rem;
margin-bottom: 1rem;
strong {
@@ -28,7 +47,7 @@
}
::ng-deep .hero-description, .hero-description {
color: #666;
color: #666666;
font-size: 1.1rem;
line-height: 1.5;
strong {
@@ -58,17 +77,22 @@
.event-icon {
font-size: 1.3rem;
color: #888;
color: #8a8a8a;
}
.event-info-text {
color: #777;
color: #8a8a8a;
font-weight: 500;
}
@media (max-width: 768px) {
.hero-banner::before {
background: none;
}
.hero-content {
justify-content: center !important;
background: none;
}
.hero-text-box {