Renacer Social, the app

global.css 647B

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