website/_sass/custom_elems/_pinned_posts.scss

21 lines
432 B
SCSS
Raw Normal View History

2018-10-20 07:30:02 +00:00
#pinned-section {
2018-10-29 03:44:59 +00:00
background: lighten($color: $brand-color_l, $amount: 40%);
border: $brand-color 4px solid;
2018-10-20 07:30:02 +00:00
border-top: 0;
border-bottom: 0;
margin-bottom: 2em;
padding: $base-font-size;
ul.pinned-posts {
list-style: none;
padding: 0;
2018-10-29 03:44:59 +00:00
@include media-query($on-palm) {margin-left: 0;}
}
::selection {
background: $brand-color;
color: white;
2018-10-20 07:30:02 +00:00
}
}