lumeweb.com/src/components/P1/Header/HeaderStyles.css

68 lines
1.0 KiB
CSS

.header-container {
align-items: flex-start;
display: flex;
margin-block: calc(77px + 1.5625vw);
z-index: -1 !important;
}
.header {
color: var(--white);
font-family: var(--font-family-jetbrains_mono);
font-weight: 400;
font-style: normal;
letter-spacing: -6px;
line-height: calc(75px + (110 - 75) * ((100vw - 300px) / (1600 - 300)));
text-align: center;
width: 100%;
}
.header-alt {
color: var(--aquamarine);
font-family: var(--font-family-jetbrains_mono);
}
.header-alignment {
display: flex;
flex-direction: column;
justify-content: center;
}
.header-underscore {
animation: blink 1.3s step-end infinite;
}
@keyframes blink {
from,
to {
color: transparent
}
50% {
color: rgba(245, 245, 245)
}
}
.cursor::after {
display: block;
content: '';
position: absolute;
width: 4px;
height: 100%;
background-color: #fff;
animation: cursor 0.6s linear infinite alternate;
will-change: opacity;
}
@keyframes cursor {
0%,
40% {
opacity: 1;
}
60%,
100% {
opacity: 0;
}
}