1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-10 11:35:10 +02:00
blog/src/components/templates/Post/Title.module.css
2021-03-14 01:34:04 +01:00

30 lines
586 B
CSS

.title {
margin-top: 0;
margin-bottom: calc(var(--spacer) / 8);
}
.titleLink {
font-size: var(--font-size-h3);
}
.titleLink svg {
width: var(--font-size-base);
height: var(--font-size-base);
display: inline-block;
stroke: var(--text-color-light);
margin-bottom: -0.1rem;
}
.linkurl {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
width: 100%;
color: var(--text-color);
font-family: var(--font-family-base);
font-size: var(--font-size-small);
padding: calc(var(--spacer) / 4) 0;
margin-top: -2rem;
margin-bottom: var(--spacer);
}