www.byjp.me/assets/scss/_logo.scss
JP Hastings-Spital cfb8a110ce Swap to no theme & /photos
- Dramatic reduction in disk use
- Removal of largest videos, optimisation of jpgs
- Selection colours
2023-08-19 13:08:37 +01:00

47 lines
698 B
SCSS

.logo {
display: flex;
align-items: center;
text-decoration: none;
font-weight: bold;
font-display: auto;
font-family: monospace, monospace;
img {
height: 44px;
}
&__mark {
margin-left: 1rem;
}
&__text {
font-size: 1.125rem;
&::after {
content: '>';
filter: brightness(65%);
}
}
&__cursor {
display: inline-block;
width: 10px;
height: 1rem;
background: var(--accent);
border-radius: 1px;
animation: cursor 1s infinite;
}
@media (prefers-reduced-motion: reduce) {
&__cursor {
animation: none;
}
}
}
@keyframes cursor {
0% { opacity: 0; }
50% { opacity: 1; }
100% { opacity: 0; }
}