Clean scss
This commit is contained in:
parent
c898b1a6e6
commit
44b90ba958
3 changed files with 50 additions and 26 deletions
|
@ -19,10 +19,14 @@ footer {
|
||||||
.powered-by p {
|
.powered-by p {
|
||||||
font-size: $font-size-base;
|
font-size: $font-size-base;
|
||||||
|
|
||||||
a:hover {
|
a {
|
||||||
|
color: inherit;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
color: $brand-orange;
|
color: $brand-orange;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.social {
|
.social {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
37
theme/static/src/scss/library-overrides.scss
Normal file
37
theme/static/src/scss/library-overrides.scss
Normal 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 */
|
Reference in a new issue