Template:Main page/header/styles.css: Difference between revisions
Template page
More actions
No edit summary |
No edit summary |
||
| Line 51: | Line 51: | ||
z-index: 0; | z-index: 0; | ||
overflow: hidden; | overflow: hidden; | ||
} | |||
/* 3. THE ANIMATED GLOW (::before pseudo-element) | |||
* (This is unchanged from before) | |||
*/ | |||
.citizen-search-trigger::before { | |||
content: ''; | |||
position: absolute; | |||
z-index: -1; | |||
top: -4px; | |||
left: -4px; | |||
width: calc(100% + 8px); | |||
height: calc(100% + 8px); | |||
background: linear-gradient(90deg, | |||
#87bfdb, #77abC8, #6797b5, #577f9d, #476684, #43668a, | |||
#3e668f, #304a66, #212d3d, #304a66, #3e668f, #43668a, | |||
#476684, #577f9d, #6797b5, #77abC8, #87bfdb | |||
); | |||
background-size: 400% 400%; | |||
filter: blur(4px); | |||
animation: moveGradient 10s linear infinite; | |||
transition: all 0.5s ease; | |||
} | |||
/* | |||
* 4. HOVER EFFECTS | |||
* (This is unchanged from before) | |||
*/ | |||
.citizen-search-trigger:hover { | |||
background-color: #1a1a1a; | |||
} | |||
.citizen-search-trigger:hover::before { | |||
background: linear-gradient(90deg, | |||
#120d0e, #321d13, #512d19, #713d1e, #90571d, #b0701b, | |||
#cf8a1a, #de9822, #eeA529, #fdb331, #eeA529, #de9822, | |||
#cf8a1a, #b0701b, #90571d, #713d1e, #512d19, #321d13, #120d0e | |||
); | |||
background-size: 400% 400%; | |||
filter: blur(8px); | |||
animation: moveGradient 5s linear infinite; | |||
} | |||
/* | |||
* 5. THE KEYFRAMES FOR THE ANIMATION | |||
* (This is unchanged from before) | |||
*/ | |||
@keyframes moveGradient { | |||
0% { background-position: 0% 50%; } | |||
50% { background-position: 100% 50%; } | |||
100% { background-position: 0% 50%; } | |||
} | } | ||
Revision as of 20:24, 8 November 2025
.home-header {
position: relative;
padding-top: 3.2rem;
padding-bottom: 3.2rem;
line-height: 1.1;
text-align: center;
}
.home-header__pretitle {
color: #888;
font-size: 0.9em;
letter-spacing: 0.05em;
margin: -0.8rem;
}
.home-header__title {
margin: 0;
font-size: 4.5rem;
text-transform: uppercase;
line-height: 0.9;
font-weight: 600;
}
.home-header__subtitle {
margin-top: -0.6rem;
color: #888;
font-size: 0.9em;
}
/*
* 1. STYLES FOR THE BUTTON ITSELF
* (Now with Flexbox for icon alignment)
*/
.citizen-search-trigger {
position: relative;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 12px 24px;
border-radius: 9999px;
background-color: #2a2a2a;
color: #eee;
font-size: 14px;
font-weight: 500;
cursor: pointer;
/* Make space for the border overlay */
z-index: 0;
overflow: hidden;
}
/* 3. THE ANIMATED GLOW (::before pseudo-element)
* (This is unchanged from before)
*/
.citizen-search-trigger::before {
content: '';
position: absolute;
z-index: -1;
top: -4px;
left: -4px;
width: calc(100% + 8px);
height: calc(100% + 8px);
background: linear-gradient(90deg,
#87bfdb, #77abC8, #6797b5, #577f9d, #476684, #43668a,
#3e668f, #304a66, #212d3d, #304a66, #3e668f, #43668a,
#476684, #577f9d, #6797b5, #77abC8, #87bfdb
);
background-size: 400% 400%;
filter: blur(4px);
animation: moveGradient 10s linear infinite;
transition: all 0.5s ease;
}
/*
* 4. HOVER EFFECTS
* (This is unchanged from before)
*/
.citizen-search-trigger:hover {
background-color: #1a1a1a;
}
.citizen-search-trigger:hover::before {
background: linear-gradient(90deg,
#120d0e, #321d13, #512d19, #713d1e, #90571d, #b0701b,
#cf8a1a, #de9822, #eeA529, #fdb331, #eeA529, #de9822,
#cf8a1a, #b0701b, #90571d, #713d1e, #512d19, #321d13, #120d0e
);
background-size: 400% 400%;
filter: blur(8px);
animation: moveGradient 5s linear infinite;
}
/*
* 5. THE KEYFRAMES FOR THE ANIMATION
* (This is unchanged from before)
*/
@keyframes moveGradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}