1
Fork 0

Clean scss

This commit is contained in:
Jake Howard 2016-05-26 22:22:32 +01:00
parent c898b1a6e6
commit 44b90ba958
Signed by: jake
GPG key ID: 57AFB45680EDD477
3 changed files with 50 additions and 26 deletions

View file

@ -19,8 +19,12 @@ footer {
.powered-by p { .powered-by p {
font-size: $font-size-base; font-size: $font-size-base;
a:hover { a {
color: $brand-orange; color: inherit;
&:hover {
color: $brand-orange;
}
} }
} }

View file

@ -23,36 +23,19 @@ $fa-font-path: "../fonts";
@import "creative/creative"; @import "creative/creative";
@import "pygment"; @import "pygment";
/* @end Other Imports */
@import "homepage"; @import "homepage";
@import "footer"; @import "footer";
@import "library-overrides";
/* @end Other Imports */
.panel-green {
@include panel-variant(#139F5B, $white, #139F5B, #139F5B);
}
.panel-blue {
@include panel-variant(#337AB7, $white, #337AB7, #337AB7);
}
.btn-primary-dark {
@include button-variant($white, $brand-orange-dark, $brand-orange-dark);
}
.highlight > pre {
background-color: transparent;
font-size: $font-size-base;
}
hr.wide { hr.wide {
width: 100%; width: 100%;
max-width: initial; max-width: initial;
} }
p a {
text-decoration: underline;
color: inherit;
}

View file

@ -0,0 +1,37 @@
/* @group Bootstrap Panels */
.panel-green {
@include panel-variant(#139F5B, $white, #139F5B, #139F5B);
}
.panel-blue {
@include panel-variant(#337AB7, $white, #337AB7, #337AB7);
}
/* @end Bootstrap Panels */
/* @group Pygments */
.highlight > pre {
background-color: transparent;
font-size: $font-size-base;
}
/* @end Pygments */
/* @group backgrounds */
.btn-primary-dark {
@include button-variant($white, $brand-orange-dark, $brand-orange-dark);
}
.bg-primary p {
a:hover {
color: $brand-grey-dark;
}
}
/* @end backgrounds */