34 lines
540 B
SCSS
34 lines
540 B
SCSS
body{
|
|
.content{
|
|
img{
|
|
margin: 10px 0;
|
|
}
|
|
}
|
|
.fullpage{
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
background: white;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
position: fixed;
|
|
z-index: 999;
|
|
&::before{
|
|
@include background-nav-content;
|
|
@include background-link('../images/fleche.svg');
|
|
width: 100px;
|
|
height: 100px;
|
|
position: absolute;
|
|
background: red;
|
|
z-index: 999;
|
|
}
|
|
.full{
|
|
position: relative;
|
|
width: 100%;
|
|
padding: 0 1vw;
|
|
height: auto;
|
|
transform: translateX(-50%);
|
|
margin-left: 50%;
|
|
}
|
|
}
|
|
}
|