style.css - frontends - front-ends for some sites (experiment)
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       style.css (850B)
       ---
            1 body {
            2         background-color: #fff;
            3         color: #000;
            4         max-width: 80ex;
            5         margin: 0 auto;
            6         padding: 3px;
            7 }
            8 form {
            9         margin: 0;
           10 }
           11 .nowrap {
           12         whitespace: no-wrap;
           13 }
           14 .a-r {
           15         text-align: right;
           16 }
           17 table.videos,
           18 table.search,
           19 table.search .input,
           20 input.search {
           21         width: 100%;
           22 }
           23 table.videos {
           24         border-collapse: collapse;
           25 }
           26 table.videos tr td {
           27         vertical-align: top;
           28         padding: 0 3px;
           29 }
           30 table.videos tr.v:hover td {
           31         background-color: #eee;
           32 }
           33 td.thumb {
           34         width: 120px;
           35         text-align: center;
           36 }
           37 td.thumb img {
           38         height: 90px;
           39 }
           40 a {
           41         color: #000;
           42 }
           43 hr {
           44         height: 1px;
           45         border: 0;
           46         border-bottom: 1px solid #777;
           47 }
           48 /* dark mode */
           49 @media (prefers-color-scheme: dark) {
           50         body {
           51                 background-color: #000;
           52                 color: #bdbdbd;
           53                 color-scheme: dark;
           54         }
           55         table.videos tr.v:hover td {
           56                 background-color: #111;
           57         }
           58         a {
           59                 color: #56c8ff;
           60         }
           61         hr {
           62                 border-color: 1px solid #222;
           63         }
           64 }