add diffuse
This commit is contained in:
@@ -51,13 +51,31 @@ img[src$='#floatright']{ float:right; margin: 0.7rem; }
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Page-Specific Background for Projects */
|
/* Page background with Diffusion Layer */
|
||||||
body.page-projects {
|
body.has-bg::before {
|
||||||
|
content: "";
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
background-image: url('/images/backgrounds/default.gif');
|
background-image: url('/images/backgrounds/default.gif');
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-attachment: fixed;
|
background-attachment: fixed;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
z-index: -10;
|
||||||
|
/* Diffusion / Overlay layer */
|
||||||
|
background-color: rgba(0, 0, 0, 0.6);
|
||||||
|
background-blend-mode: overlay;
|
||||||
|
filter: blur(5px); /* This adds the diffusion */
|
||||||
|
transform: scale(1.05); /* Avoid white edges from blur */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ensure background sits behind everything */
|
||||||
|
body.has-bg {
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user