mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-01 12:29:49 +01:00
30 lines
586 B
CSS
30 lines
586 B
CSS
.title {
|
|
margin-top: 0;
|
|
margin-bottom: calc(var(--spacer) / 8);
|
|
}
|
|
|
|
.titleLink {
|
|
font-size: var(--font-size-h3);
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.titleLink svg {
|
|
width: var(--font-size-base);
|
|
height: var(--font-size-base);
|
|
display: inline-block;
|
|
stroke: var(--text-color-light);
|
|
margin-bottom: -0.1rem;
|
|
margin-left: 0.3rem;
|
|
}
|
|
|
|
.linkurl {
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
font-family: var(--font-family-base);
|
|
font-size: var(--font-size-small);
|
|
color: var(--text-color-light);
|
|
margin-bottom: calc(var(--spacer) / 2);
|
|
}
|