1
Fork 0

Correct scss linting issues

This commit is contained in:
Jake Howard 2017-11-09 13:38:26 +00:00
parent 819ab6991a
commit fdd3b7e27f
Signed by: jake
GPG key ID: 57AFB45680EDD477

View file

@ -6,7 +6,8 @@ $fa-font-path: "../fonts";
@import "node_modules/bootstrap/scss/bootstrap"; @import "node_modules/bootstrap/scss/bootstrap";
$primary: #e89980; $primary: #E89980;
$orange: #FF7F00;
html, body { html, body {
height: 100%; height: 100%;
@ -16,7 +17,7 @@ a {
color: $primary; color: $primary;
&:hover { &:hover {
color: #ff7f00; color: $orange;
} }
} }
@ -103,34 +104,34 @@ table td {
} }
.nav-link { .nav-link {
padding-left: $font-size-base !important;
padding-right: $font-size-base !important; padding-right: $font-size-base !important;
padding-left: $font-size-base !important;
} }
} }
.bg-black { .bg-black {
background-color: #000; background-color: $black;
} }
#index-header { #index-header {
background-image: url('/img/header.jpg'); background-image: url("/img/header.jpg");
height: calc(100% - 110px);
width: 100%; width: 100%;
height: calc(100% - 110px);
} }
footer { footer {
color: $gray-700; position: static;
bottom: 0; bottom: 0;
width: 100%; width: 100%;
position: static;
height: 110px; height: 110px;
color: $gray-700;
a { a {
color: $gray-700; color: $gray-700;
&:hover { &:hover {
color: #000; color: $black;
} }
} }
} }
@ -160,17 +161,12 @@ ul ul, ol ol {
} }
pre.chroma { pre.chroma {
padding: $spacer;
margin: $spacer 0; margin: $spacer 0;
padding: $spacer;
} }
.content { .content {
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
margin-top: $spacer; margin-top: $spacer;
}
code {
color: #f8f8f2;
background-color: #272822;
} }
} }