_images.scss 540 B

123456789101112131415161718192021222324252627282930313233
  1. body{
  2. .content{
  3. img{
  4. margin: 10px 0;
  5. }
  6. }
  7. .fullpage{
  8. overflow-y: auto;
  9. overflow-x: hidden;
  10. background: white;
  11. width: 100vw;
  12. height: 100vh;
  13. position: fixed;
  14. z-index: 999;
  15. &::before{
  16. @include background-nav-content;
  17. @include background-link('../images/fleche.svg');
  18. width: 100px;
  19. height: 100px;
  20. position: absolute;
  21. background: red;
  22. z-index: 999;
  23. }
  24. .full{
  25. position: relative;
  26. width: 100%;
  27. padding: 0 1vw;
  28. height: auto;
  29. transform: translateX(-50%);
  30. margin-left: 50%;
  31. }
  32. }
  33. }