rocket-pinboard/static/scss/pinboard.scss

51 lines
848 B
SCSS

// Include all of Bootstrap
@import "bootstrap/bootstrap";
//
html {
position: relative;
min-height: 100%;
}
// Add some padding for the fixed-top navbar
body {
padding-top: 80px;
margin-bottom: 24px;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
height: 24px;
line-height: 24px;
}
// Reduce the large padding for notes
.note-html ul,
.note-html ol {
padding-left: 1.2rem;
}
.note-html ul.tasknote {
note-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;
}