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.

49 lines
1022 B

10 years ago
10 years ago
  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. @elementFilter: '';
  21. /* Hidden (Default) */
  22. @hiddenOpacity: 0;
  23. /* Content */
  24. @contentDisplay: table;
  25. @contentChildDisplay: table-cell;
  26. /* Visible */
  27. @visibleOpacity: 1;
  28. @pageDimmerPosition: fixed;
  29. /*-------------------
  30. Variations
  31. --------------------*/
  32. @invertedBackground: rgba(255, 255, 255, 0.85);
  33. @invertedTextColor: @textColor;
  34. /* Simple */
  35. @simpleZIndex: 1;
  36. @simpleStartBackground: rgba(0, 0, 0, 0);
  37. @simpleEndBackground: @background;
  38. @simpleInvertedStartBackground: rgba(255, 255, 255, 0);
  39. @simpleInvertedEndBackground: @invertedBackground;