krata/_sass/layout/category-tag.scss

73 lines
1.0 KiB
SCSS
Raw Permalink Normal View History

2021-01-23 06:20:58 +01:00
/*
Style for page Category and Tag
*/
2019-11-15 17:01:33 +01:00
.dash {
2021-10-25 21:04:15 +02:00
margin: 0 0.5rem 0.6rem 0.5rem;
border-bottom: 2px dotted var(--dash-color);
}
#page-category,
#page-tag {
2020-10-27 15:08:04 +01:00
ul > li {
2020-02-25 10:56:03 +01:00
line-height: 1.5rem;
2020-10-27 15:08:04 +01:00
padding: 0.6rem 0;
/* dot */
&::before {
2022-10-19 20:05:29 +02:00
background: #999999;
2020-02-25 10:56:03 +01:00
width: 5px;
height: 5px;
border-radius: 50%;
display: block;
content: '';
2020-02-25 10:56:03 +01:00
position: relative;
2020-10-27 15:08:04 +01:00
top: 0.6rem;
margin-right: 0.5rem;
2020-02-25 10:56:03 +01:00
}
/* post's title */
> a {
2020-02-28 17:16:47 +01:00
@extend %no-bottom-border;
font-size: 1.1rem;
2020-02-25 10:56:03 +01:00
}
}
2019-11-15 17:01:33 +01:00
}
/* tag icon */
#page-tag h1 > i {
2019-11-15 17:01:33 +01:00
font-size: 1.2rem;
}
2020-10-27 15:08:04 +01:00
#page-category h1 > i {
2019-11-15 17:01:33 +01:00
font-size: 1.25rem;
}
#page-category,
#page-tag,
#access-lastmod {
a:hover {
@extend %link-hover;
margin-bottom: -1px; /* Avoid jumping */
2020-02-25 10:56:03 +01:00
}
2019-11-15 17:01:33 +01:00
}
@media all and (max-width: 576px) {
#page-category,
#page-tag {
2020-10-27 15:08:04 +01:00
ul > li {
2020-02-25 10:56:03 +01:00
&::before {
2021-10-25 21:04:15 +02:00
margin: 0 0.5rem;
2020-02-25 10:56:03 +01:00
}
2021-10-25 21:04:15 +02:00
2020-10-27 15:08:04 +01:00
> a {
2020-02-25 10:56:03 +01:00
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
2020-10-27 15:08:04 +01:00
}