rocket-pinboard/static/scss/wishlists.scss
Paul van Tilburg 6259b9b320 Move Bootstrap SCSS to static/
As a result the CSS maps an be used to trace the original line in the SCSS
in the browser inspector.  Also, move bootstrap to a subdir to distinguish
it from the SCSS of the app itself.
2017-12-30 16:23:25 +01:00

36 lines
671 B
SCSS

// Include all of Bootstrap
@import "bootstrap/bootstrap";
// Add some padding for the fixed-top navbar
body {
padding-top: 80px;
}
// Reduce the large padding for lists
.list-html ul,
.list-html ol {
padding-left: 1.2rem;
}
.list-html ul.tasklist {
list-style-type: none;
padding-left: 0;
}
// On medium screens and up, use two columns
.card-columns {
@include media-breakpoint-down(sm) {
column-count: 1;
}
@include media-breakpoint-up(md) {
column-count: 2;
}
}
// Card link anchors should inherit the color from the card and use the
// underline text decoration
.card-body .card-text a {
color: inherit;
text-decoration: underline;
}