dockerfiles

Docker files for home server usage
Log | Files | Refs

stagit.css (2573B)


      1 /* Originally from https://git.knutsen.co/stagit/file/style.css */
      2 
      3 html {
      4 	font-size: 12px;
      5 	height: 100%;
      6 }
      7 
      8 body {
      9 	margin: 5rem auto;
     10 	color: #aaa;
     11 	background-color: #272727;
     12 	font-family: monospace;
     13 	width: 66rem;
     14 }
     15 
     16 pre { -moz-tab-size: 4; }
     17 pre { tab-size: 4; }
     18 
     19 h1, h2, h3, h4, h5, h6 {
     20 	font-size: 1em;
     21 	margin: 0;
     22 }
     23 
     24 img, h1, h2 {
     25 	vertical-align: middle;
     26 }
     27 
     28 img {
     29 	border: 0;
     30 }
     31 
     32 a,
     33 a.d,
     34 a.h,
     35 a.i,
     36 a.line {
     37 	color: #3498db;
     38 	text-decoration: none;
     39 }
     40 
     41 #blob {
     42     display: block;
     43     max-width: 100%;
     44     overflow-x: scroll;
     45 }
     46 
     47 article.markup {
     48 	font-size: 15px;
     49     border: 2px solid #00000017;
     50     border-radius: 10px;
     51     font-family: sans-serif;
     52     padding: 2.5em;
     53     margin: 2em 0;
     54 }
     55 
     56 article.markup code {
     57     font-size: 0.9em;
     58     border: 1px solid #dbdbdb;
     59     background-color: #f7f7f7;
     60     padding: 0 0.3em;
     61     border-radius: 0.3em
     62 }
     63 
     64 article.markup pre code {
     65 	border: none;
     66 	background: none;
     67 	padding: 0;
     68 	border-radius: 0;
     69 }
     70 
     71 article.markup pre {
     72 	background-color: #f7f7f7;
     73 	padding: 1em;
     74 	border: 1px solid #dbdbdb;
     75 	border-radius: 0.3em;
     76 }
     77 
     78 article.markup h1 {
     79 	font-size: 2.4em;
     80 	padding-bottom: 6px;
     81 	border-bottom: 5px solid #0000000a;
     82 }
     83 
     84 article.markup h2 {
     85 	font-size: 1.9em;
     86 	padding-bottom: 5px;
     87 	border-bottom: 2px solid #00000014;
     88 }
     89 
     90 article.markup h3 {
     91     font-size: 1.5em;
     92 }
     93 
     94 article.markup h4 {
     95     font-size: 1.3em;
     96 }
     97 
     98 article.markup h5 {
     99     font-size: 1.1em;
    100 }
    101 
    102 article.markup h6 {
    103     font-size: 1em;
    104 }
    105 
    106 article img {
    107 	max-width: 100%;
    108 }
    109 
    110 .linenos {
    111 	margin-right: 0;
    112 	border-right: 1px solid rgb(0 0 0 / 8%);
    113 	user-select: none;
    114 }
    115 
    116 .linenos a {
    117 	margin-right: 0.9em;
    118 	user-select: none;
    119 	text-decoration: none;
    120 }
    121 
    122 #blob a {
    123 	color: #777;
    124 }
    125 
    126 table thead td {
    127 	font-weight: bold;
    128 }
    129 
    130 table td {
    131 	padding: 0 0.4em;
    132 }
    133 
    134 #content table td {
    135 	vertical-align: top;
    136 	white-space: nowrap;
    137 }
    138 
    139 #branches tr:hover td,
    140 #tags tr:hover td,
    141 #index tr:hover td,
    142 #log tr:hover td,
    143 #files tr:hover td {
    144 	background-color: #414141;
    145 }
    146 
    147 #index tr td:nth-child(2),
    148 #tags tr td:nth-child(3),
    149 #branches tr td:nth-child(3),
    150 #log tr td:nth-child(2) {
    151 	white-space: normal;
    152 }
    153 
    154 td.num {
    155 	text-align: right;
    156 }
    157 
    158 .desc {
    159 	color: #777;
    160 }
    161 
    162 hr {
    163 	border: 0;
    164 	border-top: 1px solid #777;
    165 	height: 1px;
    166 }
    167 
    168 pre {
    169 	font-family: monospace;
    170 }
    171 
    172 .A,
    173 span.i,
    174 pre a.i {
    175 	color: #29b74e;
    176 }
    177 
    178 .D,
    179 span.d,
    180 pre a.d {
    181 	color: #e42533;
    182 }
    183 
    184 .url td:nth-child(2) {
    185 	padding-top:    0.2em;
    186 	padding-bottom: 0.9em;
    187 }
    188 
    189 .url td:nth-child(2) span {
    190 	padding: 1px 5px;
    191 	background-color: #eee;
    192 	border: 1px solid #ddd;
    193 	border-radius: 5px;
    194 }
    195 
    196 .url td:nth-child(2) span a {
    197 	color: #444;
    198 }