pub / yt2html

Fetches Youtube content via RSS and provides a chronological timeline
git clone https://src.jayvii.de/pub/yt2html.git
Home | Log | Files | Exports | Refs | README | RSS

custom.css (359B)


      1 * {
      2   scroll-behavior: smooth;
      3 }
      4 
      5 img, iframe {
      6   height: auto;
      7   width: 100%;
      8   border: 0;
      9 }
     10 iframe {
     11   aspect-ratio: 16/9;
     12 }
     13 
     14 a[href^="https"]:where([href*="www.youtube.com"])::after {
     15         content: " \2197";
     16 }
     17 
     18 .thumbnails {
     19   width: 100%;
     20   aspect-ratio: 4/3;
     21 }
     22 
     23 #searchbar {
     24   margin-top: 1em;
     25   width: 100%;
     26 }
     27 
     28 details {
     29   width: 100% !important;
     30 }
     31