Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

38 righe
691 B

  1. .body-page-transition{
  2. overflow: hidden;
  3. #page-transition {
  4. position: fixed;
  5. z-index: 9999;
  6. width: 100%;
  7. display: flex;
  8. height: 100%;
  9. justify-content: center;
  10. align-items: center;
  11. }
  12. #page-transition > div{
  13. &:after{
  14. content: "";
  15. background-image: url("../img/bg7.jpg");
  16. background-size: cover;
  17. position: fixed;
  18. z-index: 9998;
  19. width: 100%;
  20. height: 100%;
  21. top: 0;
  22. left: 0;
  23. }
  24. &:before {
  25. top: 0;
  26. left: 0;
  27. width: 100%;
  28. height: 100%;
  29. content: '';
  30. display: block;
  31. z-index: 9999;
  32. position: absolute;
  33. background: rgba(0, 0, 0, 0.5);
  34. }
  35. }
  36. }