Add intro image overlay SCSS variable
To disable intro image color accent overlay add set the following SCSS variable to `false` like so: $intro-image-color-overlay: false; Fixes #55
This commit is contained in:
parent
d8bf02262a
commit
273daaaecd
|
@ -603,6 +603,12 @@ author:
|
||||||
comments: false # disable comments on this post
|
comments: false # disable comments on this post
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Note:** Hero images are overlaid with a transparent "accent" color to unify them with the theme's palette. To disable [customize the CSS](#customizing-sass-scss) with the following Sass variable override:
|
||||||
|
|
||||||
|
```scss
|
||||||
|
$intro-image-color-overlay: false;
|
||||||
|
```
|
||||||
|
|
||||||
### `layout: page`
|
### `layout: page`
|
||||||
|
|
||||||
Visually this layout looks and acts the same as `layout: post`, with two minor
|
Visually this layout looks and acts the same as `layout: post`, with two minor
|
||||||
|
|
|
@ -19,7 +19,9 @@
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
background-color: rgba($accent-color, 0.25);
|
@if $intro-image-color-overlay == true {
|
||||||
|
background-color: rgba($accent-color, 0.25);
|
||||||
|
};
|
||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -84,6 +84,9 @@ $sidebar-width: $small !default;
|
||||||
/* Background color of the sidebar */
|
/* Background color of the sidebar */
|
||||||
$sidebar-background-color: #fff !default;
|
$sidebar-background-color: #fff !default;
|
||||||
|
|
||||||
|
/* Intro image color overlay */
|
||||||
|
$intro-image-color-overlay: true !default;
|
||||||
|
|
||||||
/* Border radius */
|
/* Border radius */
|
||||||
$border-radius: 0.25em !default;
|
$border-radius: 0.25em !default;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue