Correct scss linting issues
This commit is contained in:
parent
819ab6991a
commit
fdd3b7e27f
1 changed files with 12 additions and 16 deletions
|
@ -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;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue