pdf-viewer.scss 778 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .pdf-viewer {
  2. canvas {
  3. border: 1px solid black;
  4. direction: ltr;
  5. width: 100%;
  6. height: auto;
  7. display: none;
  8. }
  9. .paginator {
  10. display: none;
  11. text-align: center;
  12. margin-bottom: 10px;
  13. }
  14. .loading-wrapper {
  15. display: none;
  16. justify-content: center;
  17. align-items: center;
  18. width: 100%;
  19. height: 350px;
  20. }
  21. .loading {
  22. display: inline-block;
  23. width: 50px;
  24. height: 50px;
  25. border: 3px solid #d2d0d0;;
  26. border-radius: 50%;
  27. border-top-color: #383838;
  28. animation: spin 1s ease-in-out infinite;
  29. -webkit-animation: spin 1s ease-in-out infinite;
  30. }
  31. @keyframes spin {
  32. to { -webkit-transform: rotate(360deg); }
  33. }
  34. @-webkit-keyframes spin {
  35. to { -webkit-transform: rotate(360deg); }
  36. }
  37. }