index.css 442 B

1234567891011121314151617181920212223242526
  1. .gitbook-plugin-modal {
  2. position: fixed;
  3. height: 100%;
  4. top: 50px;
  5. background-color: rgba(255, 255, 255, 0.6);
  6. z-index: 2;
  7. }
  8. .gitbook-plugin-modal-content {
  9. position: absolute;
  10. top: 50%;
  11. left: 50%;
  12. transform: translate(-50%, -50%);
  13. background-color: #fff;
  14. max-width: 80%;
  15. max-height: 80%;
  16. overflow: scroll;
  17. padding: 30px;
  18. border-radius: 3px;
  19. box-shadow: 2px 2px 5px #999;
  20. z-index: 3;
  21. }
  22. ins {
  23. z-index: 4;
  24. }