stagit


stagit

~ Unnamed repository; edit this file 'description' to name the repository.
log | files | refs | archive | README | LICENSE

style.css (2456B)

      1 :root{
      2   --bg:#111111;
      3   --surface:#111111;
      4   --text:#fcfcfc;
      5   --muted:#a8a8a8;
      6   --link:#5353ef;
      7   --accent:#54fc54;
      8   --card-bg:#282828;
      9   --border:#a8a8a8;
     10   --code-bg:#282828;
     11   --code-border:#7e7e7e;
     12   --row-hover:#2a2a2a;
     13 }
     14 
     15 
     16 *{font-family:monospace}
     17 a{color:var(--link);text-decoration:none}
     18 a:hover{color:var(--link)}
     19 a:target{background-color:#222}
     20 body{background-color:var(--bg);color:var(--text);font-size:14px}
     21 code{
     22     background-color:var(--code-bg);
     23     border:1px solid var(--code-border);
     24     border-radius:5px;
     25     color:#fff;
     26     display:inline-block;
     27     margin:0;
     28     padding-left:10px;
     29     padding-right:10px;
     30 }
     31 h1{display:inline}
     32 hr{border:1px solid #222}
     33 table thead td{font-weight:bold}
     34 table td{padding:0 0.3em}
     35 table tr{margin:0px}
     36 img{max-width:800px}
     37 .border-bottom{border-bottom:1px solid #222}
     38 .container{border:1px solid var(--border);border-radius:5px;padding-top:10px;padding-bottom:10px;overflow-x:auto}
     39 .desc{color:var(--muted)}
     40 td.num{text-align:right}
     41 #blob{text-align:left}
     42 #blob a{color:#333}
     43 #blob a:hover{color:var(--accent);text-decoration:none}
     44 #blob a:target{color:#eee}
     45 #content table td{vertical-align:top;white-space:nowrap}
     46 #index .category td {font-style: italic}
     47 #footer{font-size:smaller;padding-top:10px}
     48 #files tbody tr:hover td, #index .item-repo:hover td, #log tbody tr:hover td{background-color:var(--row-hover)}
     49 #files tr td:nth-child(2), #index .item-repo td:nth-child(2), #log tr td:nth-child(2){white-space:normal}
     50 .container, #container, #content, #footer, #index, #log{width:100%;max-width:800px}
     51 
     52 a.d, a.h, a.i, a.line {text-decoration:none}
     53 h1, h2, h3, h4, h5, h6{font-size:1em;margin:0}
     54 img, h1, h2{vertical-align: middle}
     55 #branches tr td:nth-child(3),
     56 #branches tr:hover td, #tags tr:hover td{background-color:var(--row-hover)}
     57 #tags tr td:nth-child(3){white-space:normal}
     58 .A, span.i, pre a.i{color:#00cd00}
     59 .D, span.d, pre a.d {color:#cd0000}
     60 .md{text-align:left}
     61 .md h1{font-size:1.5em}
     62 .md h2{font-size:1.25em}
     63 .md table{border-collapse:collapse;margin:1em 1em;border:1px solid var(--border)}
     64 .md table td, .md table th{padding:0.25em 1em;border:1px solid var(--border)}
     65 pre a.h{color:#00cdcd}
     66 pre a.h:hover, pre a.i:hover, pre a.d:hover{text-decoration:none}
     67 pre:not(#readme){overflow-x:auto;border:1px solid var(--code-border);border-radius:4px;padding: 10px}
     68 
     69 @media (max-width:640px){
     70   .container{padding:0.5rem}
     71   .repo-list{padding:0 0.5rem}
     72   .repo-list li{padding:0.6rem}
     73 }