123456789101112131415161718192021222324252627282930313233 |
- 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%;
- }
- }
- }
|