Renacer Social, the app

global.css 765B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .notion-nav-header,
  2. .notion-title,
  3. .notion-header {
  4. display: none !important;
  5. background-color: #d6f8df;
  6. }
  7. .notion-page {
  8. width: 100% !important;
  9. padding: 0px 0px 0px 0px !important;
  10. background-color: #d6f8df;
  11. }
  12. main.notion-page-no-cover {
  13. padding-top: 0px !important;
  14. margin-top: 0px !important;
  15. background-color: #d6f8df;
  16. }
  17. .notion-blank {
  18. display: none !important;
  19. background-color: #d6f8df;
  20. }
  21. .video {
  22. position: relative;
  23. overflow: hidden;
  24. width: 100%;
  25. padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  26. }
  27. /* Then style the iframe to fit in the container div with full height and width */
  28. .video iframe {
  29. position: absolute;
  30. top: 0;
  31. left: 0;
  32. bottom: 0;
  33. right: 0;
  34. width: 100%;
  35. height: 100%;
  36. }