1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 07:58:26 -04:00
jarv.is/components/page-header/Name.module.css
Jake Jarvis 41d2b8c64b
scss ➡️ vanilla css (#727)
* scss isn't worth the technical/mental overhead anymore

* try to translate my old Hugo pygments themes

* update lockfile

* consolidate .hljs classes
2022-01-07 16:17:14 -05:00

43 lines
528 B
CSS

.title {
display: flex;
align-items: center;
color: var(--medium-dark);
background: none;
padding-bottom: 0;
}
.title:hover {
color: var(--link);
}
.selfie {
width: 50px;
height: 50px;
}
.selfie img {
border: 1px solid var(--light) !important;
border-radius: 50%;
}
.title:hover .selfie {
opacity: 0.9;
}
.name {
margin: 0 0.6em;
font-size: 1.2em;
font-weight: 500;
}
@media screen and (max-width: 768px) {
.selfie {
width: 70px;
height: 70px;
}
.name {
display: none;
}
}