sup

A curses threads-with-tags style email client

sup-website.git

git clone https://supmua.dev/git/sup-website/

stylesheets/stylesheet.css (7249B) - raw

      1 body {
      2   margin: 0;
      3   padding: 0;
      4   background: #151515 url("../images/bkg.png") 0 0;
      5   color: #eaeaea;
      6   font-size: 16px;
      7   line-height: 1.5;
      8   font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
      9 }
     10 
     11 /* General & 'Reset' Stuff */
     12 
     13 .container {
     14   width: 90%;
     15   margin: 0 auto;
     16 }
     17 .container.narrow {
     18   max-width: 700px;
     19 }
     20 .container.wide {
     21   max-width: 1000px;
     22 }
     23 
     24 section {
     25   display: block;
     26   margin: 0 0 20px 0;
     27 }
     28 
     29 h1, h2, h3, h4, h5, h6 {
     30   margin-top: 30px;
     31 }
     32 
     33 li {
     34   line-height: 1.4 ;
     35 }
     36 
     37 /* Header, <header>
     38    header   - container
     39    h1       - project name
     40    h2       - project description
     41 */
     42 
     43 header {
     44   background: rgba(0, 0, 0, 0.1);
     45   width: 100%;
     46   border-bottom: 1px dashed #b5e853;
     47   padding: 20px 0;
     48   margin: 0 0 40px 0;
     49 }
     50 
     51 header h1 {
     52   font-size: 30px;
     53   line-height: 1.5;
     54   margin: 0 0 0 -40px;
     55   font-weight: bold;
     56   font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
     57   color: #b5e853;
     58   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
     59                0 0 5px rgba(181, 232, 83, 0.1),
     60                0 0 10px rgba(181, 232, 83, 0.1);
     61   letter-spacing: -1px;
     62   -webkit-font-smoothing: antialiased;
     63 }
     64 
     65 header h1:before {
     66   content: "./ ";
     67   font-size: 24px;
     68 }
     69 
     70 header .tagline {
     71   font-size: 18px;
     72   font-weight: 300;
     73   color: #666;
     74   margin: 0 0 20px;
     75   letter-spacing: -0.03em;
     76   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
     77                0 0 5px rgba(181, 232, 83, 0.1),
     78                0 0 10px rgba(181, 232, 83, 0.1);
     79 }
     80 
     81 #downloads .btn {
     82   display: inline-block;
     83   text-align: center;
     84   margin: 0;
     85 }
     86 
     87 /* Main Content
     88 */
     89 
     90 #main_content {
     91   width: 100%;
     92   -webkit-font-smoothing: antialiased;
     93 }
     94 section img {
     95   max-width: 100%;
     96   width: 45%;
     97   mid-width: 50%;
     98   margin: 5px;
     99   //box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    100   box-shadow: 1px 1px 10px rgb(200,200,200);
    101 }
    102 
    103 h1, h2, h3, h4, h5, h6 {
    104   font-weight: normal;
    105   font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
    106   color: #b5e853;
    107   letter-spacing: -0.03em;
    108   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
    109                0 0 5px rgba(181, 232, 83, 0.1),
    110                0 0 10px rgba(181, 232, 83, 0.1);
    111 }
    112 
    113 h2:before {
    114   content: "# ";
    115 }
    116 
    117 #main_content h1 {
    118   font-size: 30px;
    119 }
    120 
    121 #main_content h2 {
    122   font-size: 24px;
    123 }
    124 
    125 #main_content h3 {
    126   font-size: 18px;
    127 }
    128 
    129 #main_content h4 {
    130   font-size: 14px;
    131 }
    132 
    133 #main_content h5 {
    134   font-size: 12px;
    135   text-transform: uppercase;
    136   margin: 0 0 5px 0;
    137 }
    138 
    139 #main_content h6 {
    140   font-size: 12px;
    141   text-transform: uppercase;
    142   color: #999;
    143   margin: 0 0 5px 0;
    144 }
    145 
    146 dt {
    147   font-style: italic;
    148   font-weight: bold;
    149 }
    150 
    151 ul {
    152   padding-left: 32px;
    153 }
    154 ul li {
    155   list-style: none;
    156 }
    157 ul li:before {
    158   content: ">>";
    159   font-size: 13px;
    160   color: #b5e853;
    161   margin-left: -32px;
    162   line-height: 16px;
    163   display: inline-block;
    164   width: 32px;
    165 }
    166 
    167 blockquote {
    168   color: #aaa;
    169   padding-left: 10px;
    170   border-left: 1px dotted #666;
    171 }
    172 
    173 pre.code {
    174   background: rgba(0, 0, 0, 0.9);
    175   border: 1px solid rgba(255, 255, 255, 0.15);
    176   padding: 10px;
    177   font-size: 14px;
    178   color: #b5e853;
    179   border-radius: 2px;
    180   -moz-border-radius: 2px;
    181   -webkit-border-radius: 2px;
    182   text-wrap: normal;
    183   overflow: auto;
    184   overflow-y: hidden;
    185 }
    186 
    187 pre .command:before {
    188   font-weight: 300;
    189   color: #888;
    190   content: "$ ";
    191 }
    192 
    193 table {
    194   width: 100%;
    195   margin: 0 0 20px 0;
    196 }
    197 
    198 th {
    199   text-align: left;
    200   border-bottom: 1px dashed #b5e853;
    201   padding: 5px 10px;
    202 }
    203 
    204 td {
    205   padding: 5px 10px;
    206 }
    207 
    208 hr {
    209   height: 0;
    210   border: 0;
    211   border-bottom: 1px dashed #b5e853;
    212   color: #b5e853;
    213 }
    214 
    215 /* Buttons
    216 */
    217 
    218 .btn {
    219   display: inline-block;
    220   background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.3), rgba(35, 35, 35, 0.3) 50%, rgba(10, 10, 10, 0.3) 50%, rgba(0, 0, 0, 0.3));
    221   padding: 8px 18px;
    222   border-radius: 50px;
    223   border: 2px solid rgba(0, 0, 0, 0.7);
    224   border-bottom: 2px solid rgba(0, 0, 0, 0.7);
    225   border-top: 2px solid rgba(0, 0, 0, 1);
    226   color: rgba(255, 255, 255, 0.8);
    227   font-family: Helvetica, Arial, sans-serif;
    228   font-weight: bold;
    229   font-size: 13px;
    230   text-decoration: none;
    231   text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
    232   box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    233 }
    234 
    235 .btn:hover {
    236   background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.6), rgba(35, 35, 35, 0.6) 50%, rgba(10, 10, 10, 0.8) 50%, rgba(0, 0, 0, 0.8));
    237 }
    238 
    239 .btn .icon {
    240   display: inline-block;
    241   width: 16px;
    242   height: 16px;
    243   margin: -3px 8px 0 0;
    244   vertical-align: middle;
    245   opacity: 0.6;
    246 }
    247 
    248 .btn-git .icon {
    249   /* https://fontawesome.com/icons/code-merge?f=classic&s=solid */
    250   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640">\
    251     <!--!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.-->\
    252     <path fill="white" d="M176 120c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 \
    253     24-24m32.4 97.2c28-12.4 47.6-40.5 47.6-73.2 0-44.2-35.8-80-80-80s-80 35.8-80 80c0 32.8 19.7 61 \
    254     48 73.3v205.3C115.7 435 96 463.2 96 496c0 44.2 35.8 80 80 80s80-35.8 80-80c0-32.8-19.7-61-48-73.3v-86.6c26.7 \
    255     20.1 60 32 96 32h86.7c12.3 28.3 40.5 48 73.3 48 44.2 0 80-35.8 80-80s-35.8-80-80-80c-32.8 0-61 19.7-73.3 \
    256     48L304 304c-49.9 0-91-38.1-95.6-86.8M176 472c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 \
    257     24-24m264-136c0-13.3 10.7-24 24-24s24 10.7 24 24-10.7 24-24 24-24-10.7-24-24"/></svg>') 0 0 no-repeat;
    258 }
    259 
    260 /* Links
    261    a, a:hover, a:visited
    262 
    263 a {
    264   color: #63c0f5;
    265   text-shadow: 0 0 5px rgba(104, 182, 255, 0.5);
    266 }
    267 */
    268 
    269 a {
    270   color: #ffcc00;
    271   font-weight: 400;
    272   text-decoration: none;
    273 
    274   transition: all 0.3s;
    275   -o-transition: all 0.3s;
    276   -ms-transition: all 0.3s;
    277   -moz-transition: all 0.3s;
    278   -webkit-transition: all 0.3s;
    279 }
    280 a:hover {
    281   color: #ffeb9b;
    282 }
    283 
    284 
    285 /* Stagit */
    286 
    287 .container.wide.git {
    288   max-width: 1200px;
    289 }
    290 
    291 .git .url {
    292   margin: -10px 0 10px 0;
    293   color: #666;
    294 }
    295 .git .url:before {
    296   font-weight: 300;
    297   color: #888;
    298   content: "$ ";
    299 }
    300 
    301 main.git {
    302   margin-top: 40px;
    303 }
    304 
    305 .git b {
    306   font-weight: 300;
    307   color: #888;
    308 }
    309 
    310 a:target {
    311   background-color: #333;
    312 }
    313 a.d,
    314 a.h,
    315 a.i,
    316 a.line {
    317   text-decoration: none;
    318 }
    319 
    320 #blob {
    321   line-height: 1.25;
    322 }
    323 #blob a {
    324   color: #888;
    325 }
    326 #blob a:hover {
    327   color: #ffeb9b;
    328 }
    329 
    330 .git table {
    331   width: auto;
    332 }
    333 .git table thead td {
    334   font-weight: 300;
    335   color: #b5e853;
    336 }
    337 .git table td {
    338   padding: 0 0.6em;
    339   vertical-align: top;
    340   white-space: nowrap;
    341 }
    342 .git table td:first-child {
    343   padding-left: 0;
    344 }
    345 .git table td:last-child {
    346   padding-right: 0;
    347 }
    348 
    349 #branches tr:hover td,
    350 #tags tr:hover td,
    351 #index tr:hover td,
    352 #log tr:hover td,
    353 #files tr:hover td {
    354   background-color: #333;
    355 }
    356 
    357 #index tr td:nth-child(2),
    358 #tags tr td:nth-child(3),
    359 #branches tr td:nth-child(3),
    360 #log tr td:nth-child(2) {
    361   white-space: normal;
    362 }
    363 
    364 .git td.num {
    365   text-align: right;
    366 }
    367 
    368 /* Hunk header */
    369 .git pre a.h {
    370   color: #b5e853;
    371 }
    372 
    373 /* Added lines */
    374 .git .A,
    375 .git span.i,
    376 .git pre a.i {
    377   color: #9e9;
    378 }
    379 
    380 /* Deleted lines */
    381 .git .D,
    382 .git span.d,
    383 .git pre a.d {
    384     color: #e99;
    385 }
    386 
    387 .git pre a.h:hover,
    388 .git pre a.i:hover,
    389 .git pre a.d:hover {
    390   text-decoration: none;
    391 }
    392 
    393 
    394 /* Clearfix */
    395 
    396 .cf:before, .cf:after {
    397   content:"";
    398   display:table;
    399 }
    400 
    401 .cf:after {
    402   clear:both;
    403 }
    404 
    405 .cf {
    406   zoom:1;
    407 }