1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-10 20:00:09 +02:00
blog/src/components/Post/PostTitle.module.scss

37 lines
687 B
SCSS
Raw Normal View History

2018-07-19 16:49:20 +02:00
@import 'variables';
2018-07-20 15:23:57 +02:00
@import 'mixins';
2018-07-19 16:49:20 +02:00
// Post Title
/////////////////////////////////////
.hentry__title {
font-size: $font-size-h1;
color: $color-headings;
margin-top: 0;
margin-bottom: $spacer;
}
.hentry__title__link {
font-size: $font-size-h3;
2018-07-21 23:30:16 +02:00
svg {
width: $font-size-base;
height: $font-size-base;
display: inline-block;
fill: $text-color-light;
vertical-align: baseline;
}
}
.linkurl {
@include ellipsis();
width: 100%;
2018-08-08 22:26:42 +02:00
color: $text-color;
2018-07-21 23:30:16 +02:00
font-family: $font-family-base;
2018-08-08 22:26:42 +02:00
font-size: $font-size-small;
padding: ($spacer/4) 0;
2018-09-29 20:09:02 +02:00
margin-top: -($spacer);
margin-bottom: $spacer;
2018-07-19 16:49:20 +02:00
}