comparison templates/static/style-paper.css @ 6661:d1a312daa574

hgweb: add paper style derived from coal
author Matt Mackall <mpm@selenic.com>
date Wed, 11 Jun 2008 18:00:58 -0500
parents templates/static/style-coal.css@e6f71ca3de8a
children 683428d1e639 7f58dec6aeb7
comparison
equal deleted inserted replaced
6660:5fb42da426cd 6661:d1a312daa574
1 body {
2 margin: 0;
3 padding: 0;
4 background: white;
5 font-family: sans-serif;
6 }
7
8 .container {
9 padding-left: 115px;
10 }
11
12 .main {
13 position: relative;
14 background: white;
15 padding: 2em 2em 2em 0;
16 }
17
18 .overflow {
19 width: 100%;
20 overflow: auto;
21 }
22
23 .menu {
24 width: 90px;
25 margin: 0;
26 font-size: 80%;
27 text-align: left;
28 position: fixed;
29 top: 20px;
30 left: 20px;
31 right: auto;
32 }
33
34 .menu ul {
35 list-style: none;
36 padding: 0;
37 margin: 10px 0 0 0;
38 border-left: 2px solid #999;
39 }
40
41 .menu li {
42 margin-bottom: 3px;
43 padding: 2px 4px;
44 background: white;
45 color: black;
46 font-weight: normal;
47 }
48
49 .menu li.active {
50 font-weight: bold;
51 }
52
53 .menu a { color: black; display: block; }
54
55 .search {
56 position: absolute;
57 top: .7em;
58 right: 2em;
59 }
60
61 a { text-decoration:none; }
62 .age { white-space:nowrap; }
63 .date { white-space:nowrap; }
64 .indexlinks { white-space:nowrap; }
65 .parity0 { background-color: #f5f5f5; }
66 .parity1 { background-color: white; }
67 .plusline { color: green; }
68 .minusline { color: red; }
69 .atline { color: purple; }
70
71 .navigate {
72 text-align: right;
73 font-size: 60%;
74 margin: 1em 0 1em 0;
75 }
76
77 .tag {
78 color: #999;
79 font-size: 70%;
80 font-weight: normal;
81 margin-left: .5em;
82 vertical-align: baseline;
83 }
84
85 /* Common */
86 pre { margin: 0; }
87
88 h2 { font-size: 120%; border-bottom: 1px solid #999; }
89 h3 {
90 margin-top: -.7em;
91 font-size: 100%;
92 }
93
94 /* log and tags tables */
95 .bigtable {
96 border-bottom: 1px solid #999;
97 border-collapse: collapse;
98 font-size: 90%;
99 width: 100%;
100 font-weight: normal;
101 text-align: left;
102 }
103
104 .bigtable td {
105 padding: 1px 4px 1px 4px;
106 vertical-align: top;
107 }
108
109 .bigtable th {
110 padding: 1px 4px 1px 4px;
111 border-bottom: 1px solid #999;
112 font-size: smaller;
113 }
114 .bigtable tr { border: none; }
115 .bigtable .age { width: 6em; }
116 .bigtable .author { width: 10em; }
117 .bigtable .description { }
118 .bigtable .node { width: 5em; font-family: monospace;}
119 .bigtable .lineno { width: 2em; text-align: right;}
120 .bigtable .lineno a { color: #999; font-size: smaller; font-family: monospace;}
121 .bigtable td.source { font-family: monospace; white-space: pre; }
122 .bigtable .permissions { width: 8em; text-align: left;}
123 .bigtable .size { width: 5em; text-align: right; }
124 .bigtable .annotate { text-align: right; }
125 .bigtable td.annotate { font-size: smaller; }
126
127 .fileline { font-family: monospace; }
128 .fileline img { border: 0; }
129
130 /* Changeset entry */
131 #changesetEntry {
132 border-collapse: collapse;
133 font-size: 90%;
134 width: 100%;
135 margin-bottom: 1em;
136 }
137
138 #changesetEntry th {
139 padding: 1px 4px 1px 4px;
140 width: 4em;
141 text-align: right;
142 font-weight: normal;
143 color: #999;
144 margin-right: .5em;
145 vertical-align: top;
146 }
147
148 div.description {
149 border-left: 2px solid #999;
150 margin: 1em 0 1em 0;
151 padding: .3em;
152 }