51 lines
607 B
SCSS
51 lines
607 B
SCSS
@import "../components/page";
|
|
|
|
$std-trans: 0.3s;
|
|
|
|
.tag__item-link,
|
|
.tag__item-link:visited {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.tag__item-link {
|
|
display: flex;
|
|
align-items: start;
|
|
flex-direction: column;
|
|
flex: 2;
|
|
}
|
|
|
|
.tag__item {
|
|
border-bottom: 1px dashed #333;
|
|
margin: 10px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 5px;
|
|
}
|
|
|
|
.tag__item-title {
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.tag__meta {
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
.tag__rss-link {
|
|
margin: auto 20px;
|
|
}
|
|
|
|
.tag__title {
|
|
display: inline;
|
|
flex: 2;
|
|
}
|
|
|
|
.tag__title-container {
|
|
margin: 35px 0;
|
|
display: flex;
|
|
}
|
|
|
|
|
|
.tag__rss-link--single {
|
|
margin: auto;
|
|
}
|