index.css (916B)
1 :root { 2 color-scheme: dark; 3 } 4 5 html { 6 background-color: #050a10; 7 } 8 9 body { 10 color: #bbbbdd; 11 background-color: #050a10; 12 width: 80vw; 13 margin: 0 auto; 14 } 15 16 * { 17 font-family: monospace; 18 } 19 20 table.log { 21 width: 80vw; 22 } 23 24 table#branches > * > tr > td, 25 table#files > * > tr > td, 26 table#index > * > tr > td { 27 padding-right: 10px; 28 } 29 30 hr { 31 border: 1px #557766 solid; 32 } 33 34 .vl { 35 border-left: 2px #557766 solid; 36 margin-left: 2px; 37 } 38 39 a { 40 color: #0566bb; 41 text-decoration: none; 42 } 43 44 a.d { 45 color: #90222b; 46 } 47 48 a.i { 49 color: #00aa00; 50 } 51 52 img[src="logo.png"], img[src="../logo.png"] { 53 display: none; 54 } 55 56 td:first-child { 57 white-space: nowrap; 58 } 59 60 td:nth-child(3) { 61 white-space: nowrap; 62 } 63 64 a:hover { 65 text-decoration: underline; 66 } 67 68 @media screen and (min-width: 1150px) { 69 .tor { 70 float: right; 71 } 72 } 73 74 @media screen and (max-width: 1150px) { 75 .tor::before { 76 content: "\A"; 77 white-space: pre; 78 } 79 .tor { 80 font-weight: bold; 81 } 82 }