You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
973 B

  1. /*-------------------
  2. Dimmer
  3. --------------------*/
  4. @dimmablePosition: relative;
  5. @dimmerPosition: absolute;
  6. @background: rgba(0, 0, 0 , 0.85);
  7. @lineHeight: 1;
  8. @transformStyle: preserve-3d;
  9. @perspective: 2000px;
  10. @duration: 0.5s;
  11. @transition:
  12. background-color @duration linear
  13. ;
  14. @zIndex: 1000;
  15. @textAlign: center;
  16. @verticalAlign: middle;
  17. @textColor: @white;
  18. @overflow: hidden;
  19. @elementFilter: ~"blur(15px) grayscale(0.7)";
  20. /* Hidden (Default) */
  21. @hiddenOpacity: 0;
  22. /* Content */
  23. @contentDisplay: table;
  24. @contentChildDisplay: table-cell;
  25. /* Visible */
  26. @visibleOpacity: 1;
  27. @pageDimmerPosition: fixed;
  28. /*-------------------
  29. Variations
  30. --------------------*/
  31. @invertedBackground: rgba(255, 255, 255, 0.85);
  32. @invertedTextColor: @textColor;
  33. /* Simple */
  34. @simpleZIndex: 1;
  35. @simpleStartBackground: rgba(0, 0, 0, 0);
  36. @simpleEndBackground: @background;
  37. @simpleInvertedStartBackground: rgba(255, 255, 255, 0);
  38. @simpleInvertedEndBackground: @invertedBackground;