comparison templates/static/style-coal.css @ 6436:856ae126f48c

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