1
0
Fork 0
blog/src/components/Post/PostMeta.module.scss

86 lines
1.2 KiB
SCSS
Raw Normal View History

2018-07-19 02:22:01 +02:00
@import 'variables';
// Post meta
/////////////////////////////////////
.entryMeta {
2019-10-02 13:35:50 +02:00
font-size: $font-size-small;
margin-top: $spacer * 2;
color: $brand-grey-light;
2018-07-19 02:22:01 +02:00
}
.byline,
.time,
.tags,
.categories {
2019-10-02 13:35:50 +02:00
text-align: center;
2018-07-19 02:22:01 +02:00
}
.byline,
.time {
2019-10-02 13:35:50 +02:00
font-style: italic;
2018-07-19 02:22:01 +02:00
}
.byline {
2019-10-02 13:35:50 +02:00
margin-bottom: 0;
2018-07-19 02:22:01 +02:00
}
.by {
2019-10-02 13:35:50 +02:00
display: block;
2018-07-19 02:22:01 +02:00
}
.time {
2019-10-02 13:35:50 +02:00
margin-bottom: $spacer * 2;
2018-07-19 02:22:01 +02:00
}
2018-08-30 22:50:09 +02:00
// Types & Tags
2018-07-19 02:22:01 +02:00
/////////////////////////////////////
2018-08-30 22:50:09 +02:00
.type {
2019-10-02 13:35:50 +02:00
text-align: center;
2018-07-19 02:22:01 +02:00
2019-10-02 13:35:50 +02:00
a {
font-size: $font-size-mini;
text-align: center;
color: $text-color;
line-height: 1;
text-transform: uppercase;
border: 1px solid $text-color;
border-radius: $border-radius;
padding: 4px 8px;
margin: 0;
display: inline-block;
2018-07-19 02:22:01 +02:00
2019-10-02 13:35:50 +02:00
&:hover,
&:focus {
color: $link-color;
border-color: $link-color;
}
2018-07-19 02:22:01 +02:00
2019-10-02 13:35:50 +02:00
&:active {
background: $link-color;
top: 0;
color: #fff;
2018-07-19 02:22:01 +02:00
}
2019-10-02 13:35:50 +02:00
}
2018-07-19 02:22:01 +02:00
}
2018-09-13 21:51:13 +02:00
.tags {
2019-10-02 13:35:50 +02:00
margin-top: $spacer / 2;
2018-09-13 21:51:13 +02:00
}
2018-07-19 02:22:01 +02:00
.tag {
2019-10-02 13:35:50 +02:00
color: $text-color;
margin-left: $spacer / 2;
margin-right: $spacer / 2;
margin-bottom: $spacer / 2;
white-space: nowrap;
display: inline-block;
2018-07-19 02:22:01 +02:00
2019-10-02 13:35:50 +02:00
&::before {
color: $brand-grey-light;
content: '#';
margin-right: 1px;
}
2018-07-19 02:22:01 +02:00
}