mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 16:58:03 +00:00
22 lines
444 B
SCSS
22 lines
444 B
SCSS
#pinned-section {
|
|
background: linear-gradient(75deg, $brand-color_d, $brand-color, $brand-color_l);
|
|
border: $brand-color 4px solid;
|
|
border-top: 0;
|
|
border-bottom: 0;
|
|
color: white;
|
|
margin-bottom: 2em;
|
|
padding: $base-font-size;
|
|
|
|
|
|
ul.pinned-posts {
|
|
& * {color: white;}
|
|
|
|
list-style: none;
|
|
padding: 0;
|
|
|
|
@include media-query($on-palm) {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
}
|