_playlists.scss 552 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .playlists { @extend .main; }
  2. .playlists dt { @extend .lead; }
  3. .playlists dd { margin: $leading/6; margin-left: $leading; }
  4. .playlist {
  5. small { font-size: .55rem; }
  6. }
  7. .current-playlist { @extend .main; }
  8. .video {
  9. @extend .main;
  10. header {
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. }
  15. }
  16. .video-frame {
  17. position: relative;
  18. padding-bottom: 56.25%;
  19. padding-top: 25px;
  20. height: 0;
  21. }
  22. .video-frame iframe {
  23. position: absolute;
  24. top: 0;
  25. left: 0;
  26. width: 100%;
  27. height: 100%;
  28. }
  29. .video-divider { @extend .divider }