_lightbox.scss 964 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .lightbox {
  2. &.modal {
  3. padding: 30px;
  4. text-align: center;
  5. background-color: rgba(0,0,0,0.8);
  6. .content {
  7. margin: 0;
  8. padding: 0 50px;
  9. max-width: 100%;
  10. height: 100%;
  11. box-shadow: none;
  12. background: transparent;
  13. img {
  14. display: block;
  15. margin: auto;
  16. max-width: 100%;
  17. max-height: 100%;
  18. }
  19. }
  20. .controls {
  21. position: absolute;
  22. top: 0;
  23. right: 0;
  24. width: 50px;
  25. }
  26. a {
  27. background: transparent;
  28. width: 50px;
  29. height: 50px;
  30. margin-bottom: 10px;
  31. display: inline-block;
  32. cursor: pointer;
  33. border-radius: 50%;
  34. padding: 3px;
  35. &:before {
  36. content: '';
  37. display: block;
  38. width: 100%;
  39. height: 100%;
  40. }
  41. &:hover {
  42. background: $grey;
  43. }
  44. }
  45. .save {
  46. &:before {
  47. @include color-svg('/images/save.svg', white);
  48. }
  49. }
  50. }
  51. }