1.myclass {
2 font-weight: bold;
3 font-size: 90px;
4}
5
6.myotherclass {
7 @extend .myclass;
8 color: #000000;
9}
1%fullimgbg {
2 background-size: cover;
3 background-repeat: no-repeat;
4 background-position: center;
5 width: 100%;
6 height: 100vh;
7}
8
9.veiligheid{
10 @extend %fullimgbg;
11 background-image: url('some_img.jpg);
12}
13
14.slot{
15 @extend %fullimgbg;
16 background-image: url('some_other_img.jpg');
17}