40 lines
568 B
SCSS
40 lines
568 B
SCSS
@charset "UTF-8";
|
|
|
|
// Import partials from `sass_dir` (defaults to `_sass`)
|
|
@import
|
|
"bootstrap-custom",
|
|
//"base",
|
|
//"layout",
|
|
//"syntax-highlighting",
|
|
"video-embedding"
|
|
;
|
|
|
|
.site-header > .navbar {
|
|
//border-top: 5px solid $dark;
|
|
border-bottom: 2px solid $light;
|
|
}
|
|
|
|
body {
|
|
padding-top: 60px;
|
|
}
|
|
|
|
main {
|
|
padding-bottom: 70px;
|
|
}
|
|
|
|
.site-header > .navbar {
|
|
background-color: $body-bg;
|
|
}
|
|
|
|
.site-footer {
|
|
border-top: 2px solid $light;
|
|
background-color: $body-bg;
|
|
}
|
|
|
|
.post-content {
|
|
text-align: justify;
|
|
}
|
|
|
|
.post-title {
|
|
font-weight: $font-weight-normal;
|
|
} |