29 lines
743 B
SCSS
29 lines
743 B
SCSS
|
.page--floral { background-image: url('../images/pro_bg/floral--light.svg'); }
|
||
|
|
||
|
body.theme-default,
|
||
|
body.theme-contrast {
|
||
|
.page--floral { background-image: url('../images/pro_bg/floral--dark.svg'); }
|
||
|
}
|
||
|
|
||
|
body.theme-halloween {
|
||
|
.page--customization {
|
||
|
background-color: #904700;
|
||
|
&::before {
|
||
|
background: radial-gradient(circle, transparent 0%, transparent 60%, black 100%);
|
||
|
content: "";
|
||
|
display: block;
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
background-size: cover;
|
||
|
background-position: center;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
}
|
||
|
.page--floral { background-image: url('../images/pro_bg/floral--halloween.svg'); }
|
||
|
}
|