]> git.armaanb.net Git - stagit.git/blob - style.css
Redirect stdout to correct file.
[stagit.git] / style.css
1 html {
2         font-size: 12px;
3         height: 100%;
4 }
5
6 body {
7         margin: 5rem auto;
8         color: #222;
9         background-color: #fff;
10         font-family: monospace;
11         width: 66rem;
12 }
13
14 h1, h2, h3, h4, h5, h6 {
15         font-size: 1em;
16         margin: 0;
17 }
18
19 img, h1, h2 {
20         vertical-align: middle;
21 }
22
23 img {
24         border: 0;
25 }
26
27 a:target {
28         background-color: #ccc;
29 }
30
31 a.d,
32 a.h,
33 a.i,
34 a.line {
35         text-decoration: none;
36 }
37
38 #blob {
39     display: block;
40     max-width: 100%;
41     overflow-x: scroll;
42 }
43
44 .linenos {
45         user-select: none;
46 }
47
48 .linenos a {
49         margin-right: 0.9em;
50         user-select: none;
51         text-decoration: none;
52 }
53
54 #blob a {
55         color: #777;
56 }
57
58 #blob a:hover {
59         color: blue;
60         text-decoration: none;
61 }
62
63 table thead td {
64         font-weight: bold;
65 }
66
67 table td {
68         padding: 0 0.4em;
69 }
70
71 #content table td {
72         vertical-align: top;
73         white-space: nowrap;
74 }
75
76 #branches tr:hover td,
77 #tags tr:hover td,
78 #index tr:hover td,
79 #log tr:hover td,
80 #files tr:hover td {
81         background-color: #eee;
82 }
83
84 #index tr td:nth-child(2),
85 #tags tr td:nth-child(3),
86 #branches tr td:nth-child(3),
87 #log tr td:nth-child(2) {
88         white-space: normal;
89 }
90
91 td.num {
92         text-align: right;
93 }
94
95 .desc {
96         color: #777;
97 }
98
99 hr {
100         border: 0;
101         border-top: 1px solid #777;
102         height: 1px;
103 }
104
105 pre {
106         font-family: monospace;
107 }
108
109 pre a.h {
110         color: #00a;
111 }
112
113 .A,
114 span.i,
115 pre a.i {
116         color: #070;
117 }
118
119 .D,
120 span.d,
121 pre a.d {
122         color: #e00;
123 }
124
125 pre a.h:hover,
126 pre a.i:hover,
127 pre a.d:hover {
128         text-decoration: none;
129 }
130
131 .url td:nth-child(2) {
132         padding-top:    0.2em;
133         padding-bottom: 0.9em;
134 }
135
136 .url td:nth-child(2) span {
137         padding: 1px 5px;
138         background-color: #eee;
139         border: 1px solid #ddd;
140         border-radius: 5px;
141 }
142
143 .url td:nth-child(2) span a {
144         color: #444;
145 }