Fixes vim mode line.
[banana.git] / css / style.css
... / ...
CommitLineData
1/********************************************************************************
2* css/style.css : Default css
3* ---------------
4*
5* This file is part of the banana distribution
6* Copyright: See COPYING files that comes with this distribution
7********************************************************************************/
8
9.banana {
10 margin-bottom: 1em;
11}
12
13/** GROUP LIST **/
14.banana .grp { text-align: left; }
15.banana .dsc { text-align: left; }
16
17/** THREAD VIEW **/
18.banana table.thread td, .banana table.thread tr {
19 white-space: nowrap;
20 height: 20px;
21 vertical-align: middle;
22 padding-top: 0;
23 margin-top: 0;
24 padding-bottom: 0;
25 margin-bottom: 0;
26}
27
28.banana table.thread .new { font-weight: bold; }
29
30.banana table.thread .date { width: 15%; text-align: center; }
31.banana table.thread .subj { text-align: left; overflow: hidden; }
32.banana table.thread .from { text-align: left; }
33
34.banana table.thread .cur { font-style: italic; }
35.banana table.thread .subs { padding: 0%; }
36
37/** MESSAGE VIEW **/
38.banana table.message .hdr { width: 15%; text-align: right; font-weight: bold; padding-right: 1em; }
39.banana table.message .xface { text-align: right; }
40.banana table.message .subject { font-size: 120%; }
41.banana table.message .body { padding-top: 1em; padding-bottom: 0.5em; }
42.banana table.message blockquote {
43 color: blue;
44 font-style: italic;
45 margin-left: 0;
46 padding-left: 1ex;
47 border-left: solid 1px;
48 border-color: blue;
49 background: inherit;
50}
51.banana table.message blockquote blockquote {
52 color: green;
53 border-color: green;
54 background: inherit;
55}
56.banana table.message blockquote blockquote blockquote {
57 color: #cc0000;
58 border-color: #cc0000;
59 background: inherit;
60}
61.banana table.message blockquote blockquote blockquote blockquote {
62 color: #aaaa00;
63 border-color: #aaaa00;
64 background: inherit;
65}
66.banana table.message img.multipart {
67 max-width: 200px;
68 max-height: 200px;
69}
70.banana table.message .body .default {
71 background-color: #fff;
72}
73
74.banana .thread_tree {
75 white-space: nowrap;
76}
77
78.banana .thread_tree input {
79 width: 14px;
80 height: 14px;
81 padding: 2px 0;
82 margin: 0;
83}
84
85.banana .thread_tree img {
86 margin: 0;
87 padding: 0;
88 width: 14px;
89 height: 18px;
90}
91
92.banana .thread_tree .tree {
93 overflow-y: hidden;
94 overflow-x: auto;
95 margin: 0;
96 padding-left: 2em;
97 padding-bottom: 1em;
98}
99
100
101/** MISC **/
102
103.banana .center { text-align: center; padding: 1em; }
104.banana .error { color: red; padding-left: 1em; }
105.banana pre.error {
106 margin-left: 2em;
107 font-size: 90%;
108}
109.banana .pages {
110 font-size: 80%;
111 text-align: center;
112 padding-top: 0.1em;
113 padding-bottom: 0.1em;
114}
115.banana div.action { float: right; }
116.banana div.menu { float: left; }