index.less 482 B

1234567891011121314151617181920212223242526272829
  1. @charset "utf-8";
  2. .show-image {
  3. .image {
  4. cursor: pointer;
  5. width: 100px;
  6. height: 100px;
  7. }
  8. .show-image-full {
  9. position: fixed;
  10. z-index: 1000;
  11. top: 0;
  12. left: 0;
  13. right: 0;
  14. bottom: 0;
  15. background: rgba(0,0,0,0.3);
  16. text-align: center;
  17. img {
  18. position: absolute;
  19. left: 50%;
  20. top: 50%;
  21. transform: translate(-50%, -50%);
  22. max-width: 80%;
  23. max-height: 80%;
  24. width: auto;
  25. height: auto;
  26. }
  27. }
  28. }