friendenstein/sass/_logo.scss

45 lines
604 B
SCSS
Raw Normal View History

2023-12-22 00:42:32 +01:00
.logo {
2023-12-25 02:39:41 +01:00
display: flex;
align-items: center;
text-decoration: none;
font-weight: bold;
font-display: auto;
font-family: monospace, monospace;
img {
height: 44px;
}
&__mark {
margin-right: 5px;
}
&__text {
white-space: nowrap;
}
&__cursor {
display: inline-block;
width: 10px;
height: 1.5rem;
background: var(--fgColor);
margin-left: 5px;
border-radius: 1px;
animation: cursor 1s infinite;
}
@media (prefers-reduced-motion: reduce) {
&__cursor {
animation: none;
}
}
2023-12-22 00:42:32 +01:00
}
@keyframes cursor {
2023-12-25 02:39:41 +01:00
0% { opacity: 0; }
50% { opacity: 1; }
100% { opacity: 0; }
2023-12-22 00:42:32 +01:00
}