Advertisement
gitman3

Untitled

Nov 3rd, 2023 (edited)
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. body {
  2. margin: 0;
  3. background-color: #525659;
  4. font-family:
  5. Segoe UI,
  6. Tahoma,
  7. sans-serif;
  8. }
  9.  
  10. .Example input,
  11. .Example button {
  12. font: inherit;
  13. }
  14.  
  15. .Example header {
  16. background-color: #323639;
  17. box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  18. padding: 20px;
  19. color: white;
  20. }
  21.  
  22. .Example header h1 {
  23. font-size: inherit;
  24. margin: 0;
  25. }
  26.  
  27. .Example__container {
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. margin: 10px 0;
  32. padding: 10px;
  33. }
  34.  
  35. .Example__container__load {
  36. margin-top: 1em;
  37. color: white;
  38. }
  39.  
  40. .Example__container__document {
  41. width: 100%;
  42. max-width: calc(100% - 2em);
  43. margin: 1em 0;
  44. }
  45.  
  46. .Example__container__document .react-pdf__Document {
  47. display: flex;
  48. flex-direction: column;
  49. align-items: center;
  50. }
  51.  
  52. .Example__container__document .react-pdf__Page {
  53. margin: 1em 0;
  54. box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  55. }
  56.  
  57. .Example__container__document .react-pdf__message {
  58. padding: 20px;
  59. color: white;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement