]> git.wh0rd.org - tt-rss.git/blame - tt-rss.css
initial prefpane work
[tt-rss.git] / tt-rss.css
CommitLineData
1cd17194
AD
1body {
2 background : white;
3 color : black;
4 margin : 0px;
5 padding : 0px;
6}
7
007bda35
AD
8h1 {
9 font-size : 16pt;
10}
11
12h2 {
13 font-size : 14pt;
14 font-color : bold;
15 border-width : 0px 0px 1px 0px;
16 border-style : solid;
17 border-color : #e0e0e0;
18}
19
20hr {
21 border-width : 0px 0px 1px 0px;
22 border-style : dashed;
23 border-color : #e0e0e0;
24}
25
1cd17194
AD
26a {
27 color : black;
28 text-decoration : none;
29}
30
31a:hover {
3dbea71b 32 color : #5050aa;
2c1dd701
AD
33}
34
35a.button {
36 border : 1px solid #d0d0d0;
ac53063a
AD
37 background-image : url("button.png");
38 background-position : top;
39 background-repeat : repeat-x;
40 background-color : white;
41 color : black;
d76a3b03 42 padding : 2px 10px 2px 10px;
ac53063a 43 font-size : small;
2c1dd701 44}
1cd17194 45
2c1dd701 46a.button:hover {
ac53063a 47 background : white;
2c1dd701
AD
48 text-decoration : none;
49}
50
d76a3b03
AD
51table.feedOverview {
52 margin : 5px;
53 border : 1px solid #c0c0c0;
54 background : #f0f0f0;
55 -moz-border-radius : 5px;
56 padding : 5px;
57 font-size : small;
58}
59
60td.headlineToolbar {
61 padding-top : 10px;
62}
63
82baad4a
AD
64table.feeds td.footer {
65 font-weight : bold;
66 border-width : 1px 0px 0px 0px;
67 border-color : #d0d0d0;
68 border-style : solid;
69 text-align : right;
70 font-size : small;
71}
72
ac53063a
AD
73table.headlines td.search {
74 font-size : small;
75/* border-width : 0px 0px 1px 0px;
76 border-color : #d0d0d0;
77 border-style : solid;
78 padding-bottom : 3px; */
79}
80
d76a3b03
AD
81table.headlines td.title {
82 font-weight : bold;
83 font-size : large;
84 border-width : 0px 0px 1px 0px;
85 border-color : #d0d0d0;
86 border-style : solid;
87 text-align : right;
ac53063a 88 padding-bottom : 3px;
d76a3b03
AD
89}
90
91table.headlines td.headlineUpdated {
92 width : 200px;
93
94}
95
ac53063a
AD
96input {
97 border : 1px solid #a0a0a0;
98}
99
d76a3b03 100table.main td.toolbar {
2c1dd701 101 height : 40px;
857d6a80
AD
102 background-color : #f0f0f0;
103 /* background-image : url("shadow_top.png");
104 background-position : bottom left;
105 background-repeat : repeat-x; */
2c1dd701 106 padding-right : 5px;
ac53063a
AD
107 font-size : small;
108 text-align : right;
1cd17194
AD
109}
110
d76a3b03 111table.main td.header {
1cd17194 112 font-size : 18pt;
a1a8a2be
AD
113 background-color : #f0f0f0;
114 background-image : url("header.png");
115 background-position : top left;
116 background-repeat : repeat-x;
2c1dd701 117 height : 50px;
1cd17194 118 padding-left : 80px;
2c1dd701 119 padding-top : 30px;
1cd17194
AD
120 font-weight : bold;
121}
122
d76a3b03
AD
123table.main td.feeds {
124 width : 250px;
1cd17194
AD
125 border-width : 1px 1px 0px 0px;
126 border-color : #c0c0c0;
127 border-style : solid;
128 padding : 10px;
129}
130
d76a3b03 131table.main td.headlines {
1cd17194
AD
132 height : 25%;
133 padding : 10px;
134 border-width : 1px 0px 0px 0px;
135 border-color : #c0c0c0;
136 border-style : solid;
137 overflow : scroll;
138}
139
d76a3b03 140table.main td.content {
1cd17194
AD
141 padding : 10px;
142 border-width : 1px 0px 0px 0px;
143 border-color : #c0c0c0;
144 border-style : solid;
145 overflow : scroll;
146}
147
3dbea71b
AD
148td.content a {
149 color : #5050aa;
150 text-decoration : none;
151}
152
153td.content a:hover {
154 text-decoration : underline;
155}
156
d76a3b03 157table.main td.notify {
1cd17194
AD
158 height : 40px;
159 border-width : 1px 0px 0px 0px;
160 border-color : #c0c0c0;
161 border-style : solid;
67824557 162 font-size : x-small;
1cd17194
AD
163 text-align : center;
164 color : gray;
67824557
AD
165 background-color : #f0f0f0;
166 background-image : url("header_rev.png");
167 background-position : top left;
168 background-repeat : repeat-x;
169
1cd17194
AD
170}
171
172.even {
173 background-color : #f0f0f0;
174}
175
d76a3b03
AD
176.evenUnread {
177 background-color : #f0f0f0;
178 font-weight : bold;
1cd17194
AD
179}
180
d76a3b03
AD
181.oddUnread {
182 font-weight : bold;
183}
1cd17194
AD
184
185li {
186 list-style-type : none;
187
188}
189
190ul {
191 margin : 0px;
192 padding : 0px;
193 border : 1px solid #f0f0f0;
194}
a1a8a2be
AD
195
196.invisible {
197 display : none;
198}
007bda35
AD
199
200table.prefAddFeed td {
201 padding : 2px;
202}
203
204table.prefAddFeed input {
205 width : 250px;
206}
207
208table.prefAddFeed {
209 background : #f0f0f0;
210 border : 1px solid #c0c0c0;
211 padding : 10px;
212 -moz-border-radius : 5px;
213}
214
215table.prefFeedList tr.title td {
216 font-weight : bold;
217 border-width : 0px 0px 1px 0px;
218 border-color : #f0f0f0;
219 border-style : solid;
220}
221
222.evenSelected {
223 background-color : #c0c0c0;
224}
225
226.oddSelected {
227 background-color : #c0c0c0;
228}
229