site

my website
git clone https://xfnw.ttm.sh/git/site.git
Log | Files | Refs

style.css (1394B)


      1 body {
      2 	color: #cdcdcd;
      3 	background-color: #141415;
      4 	font-family: monospace;
      5 	width: -webkit-fit-content;
      6 	width: -moz-fit-content;
      7 	width: fit-content;
      8 	margin: 10px auto;
      9 }
     10 
     11 
     12 a {
     13 	text-decoration: none;
     14 	color: #3291FF;
     15 }
     16 
     17 a:hover {
     18 	text-decoration: underline;
     19 }
     20 
     21 h1, h2, h3, h4, h5, h6 {
     22 	font-size: 1em;
     23 	margin: 0;
     24 }
     25 
     26 img, h1, h2 {
     27 	vertical-align: middle;
     28 }
     29 
     30 img {
     31 	border: 0;
     32 }
     33 
     34 a:target {
     35 	background-color: #ccc;
     36 }
     37 
     38 a.d,
     39 a.h,
     40 a.i,
     41 a.line {
     42 	text-decoration: none;
     43 }
     44 
     45 #blob a {
     46 	color: #555;
     47 }
     48 
     49 #blob a:hover {
     50 	color: blue;
     51 	text-decoration: none;
     52 }
     53 
     54 table thead td {
     55 	font-weight: bold;
     56 }
     57 
     58 table td {
     59 	padding: 0 0.4em;
     60 }
     61 
     62 #content {
     63 	display: inline-block;
     64 }
     65 
     66 #content table td {
     67 	vertical-align: top;
     68 	white-space: nowrap;
     69 	margin: auto;
     70 }
     71 
     72 #branches tr:hover td,
     73 #tags tr:hover td,
     74 #index tr:hover td,
     75 #log tr:hover td,
     76 #files tr:hover td {
     77 	background-color: #222;
     78 }
     79 
     80 #index tr td:nth-child(2),
     81 #files tr td:nth-child(2),
     82 #tags tr td:nth-child(3),
     83 #branches tr td:nth-child(3),
     84 #log tr td:nth-child(2) {
     85 	white-space: normal;
     86 	min-width: 50vh;
     87 }
     88 
     89 td.num {
     90 	text-align: right;
     91 }
     92 
     93 .desc {
     94 	color: #aaa;
     95 }
     96 
     97 hr {
     98 	border: 0;
     99 	border-top: 1px solid #555;
    100 	height: 1px;
    101 }
    102 
    103 pre {
    104 	font-family: monospace;
    105 }
    106 
    107 pre a.h {
    108 	color: #77a;
    109 }
    110 
    111 .A,
    112 span.i,
    113 pre a.i {
    114 	color: #5c5;
    115 }
    116 
    117 .D,
    118 span.d,
    119 pre a.d {
    120 	color: #e77;
    121 }
    122 
    123 pre a.h:hover,
    124 pre a.i:hover,
    125 pre a.d:hover {
    126 	text-decoration: none;
    127 }
    128