28 lines
626 B
SCSS
28 lines
626 B
SCSS
@use "about/base";
|
|
@use "about/section1";
|
|
@use "about/section2";
|
|
@use "about/section5";
|
|
|
|
|
|
|
|
.section3 {
|
|
&::before {
|
|
background-image: url('https://visme.co/blog/wp-content/uploads/2017/07/50-Beautiful-and-Minimalist-Presentation-Backgrounds-013.jpg');
|
|
}
|
|
background-color: red;
|
|
}
|
|
|
|
.section4 {
|
|
&::before {
|
|
background-image: url('https://www.elegantthemes.com/blog/wp-content/uploads/2013/09/bg-1-full.jpg');
|
|
}
|
|
background-color: green;
|
|
}
|
|
|
|
.section5 {
|
|
&::before {
|
|
background-image: url('https://wallpapers.com/images/hd/professional-zoom-background-3h69jq8rrky7f3tj.jpg');
|
|
}
|
|
background-color: blue;
|
|
}
|