]> git.wh0rd.org - tt-rss.git/blame - digest.css
Merge branch 'tiny-oop'
[tt-rss.git] / digest.css
CommitLineData
ba7e88e5 1body#ttrssDigest {
bb674f94 2 background : #fafafa;
c5325e09 3 color : black;
0e2d03a7 4 font-family : sans-serif;
c01f40f4 5 font-size : 12px;
bb674f94 6 margin : 0px;
c01f40f4
AD
7}
8
9a {
10 color : #0069D8;
11 text-decoration : none;
12}
13
14a:hover {
15 color : gray;
16}
17
18#header a, #footer a {
19 color : gray;
20}
21
78ac6caf
AD
22#header a:hover, #footer a:hover {
23 color : #0069D8;
24}
25
c01f40f4 26#header {
bb674f94 27 font-size : 13px;
0e2d03a7 28 font-family : "Segoe UI", Tahoma, sans-serif;
bb674f94 29 padding : 5px 5px 5px 1.5em;
c5325e09 30 color : gray;
bb674f94
AD
31 position : absolute;
32 top : 0px;
33 height : 30px;
34 left : 0px;
35 right : 0px;
36 color : #a0a0a0;
37}
38
39#header span.title {
40 font-weight : bold;
41 font-style : italic;
c01f40f4
AD
42}
43
44#header div.links {
8a9646b3
AD
45 position : absolute;
46 right : 1.5em;
c01f40f4
AD
47}
48
49#search {
50 float : right;
51 clear : left;
52
53}
54
bb674f94
AD
55#title {
56}
57
58#latest {
59 padding : 5px;
60}
61
c01f40f4 62#content {
bb674f94
AD
63 position : absolute;
64 left : 0px;
65 top : 30px;
66 right : 0px;
67 bottom : 0px;
68 -webkit-transition: left 0.2s linear, right 0.2s linear;
69 -moz-transition: left 0.2s linear, right 0.2s linear;
70 transition: left 0.2s linear, right 0.2s linear;
71}
72
73#article {
74 position : absolute;
56e0d2cb 75 overflow : auto;
bb674f94
AD
76 right : 0px;
77 width : 60%;
78 bottom : 0px;
79 top : 30px;
c01f40f4 80 background : white;
bb674f94
AD
81 border-width : 0px 0px 0px 2px;
82 border-color : #e0e0e0;
83 border-style : solid;
84 z-index : -1;
85 opacity : 0;
86 -webkit-transition: opacity 0.2s linear;
87 -moz-transition: opacity 0.2s linear;
88 transition: opacity 0.2s linear;
c01f40f4
AD
89}
90
bb674f94
AD
91#article.visible {
92 opacity : 1;
c01f40f4
AD
93}
94
bb674f94
AD
95#article #article-content h1 {
96 margin : 0px 0px 10px 0px;
97 padding : 0px 0px 5px 0px;
0e2d03a7 98 font-family : "Segoe UI", Tahoma, sans-serif;
bb674f94
AD
99 font-size : 21px;
100 font-weight : bold;
101 border-width : 0px 0px 3px 0px;
102 border-style : solid;
103 border-color : #e0e0e0;
104 color : gray;
c01f40f4
AD
105}
106
bb674f94
AD
107#article #article-content #toolbar {
108 border-width : 0px 0px 1px 0px;
109 border-color : #e0e0e0;
110 border-style : solid;
111 background : #fafafa;
112 font-size : 14px;
113 font-weight : bold;
114 padding : 5px 10px 5px 10px;
115 margin : 0px 0px 0px 0px;
c01f40f4
AD
116}
117
bb674f94
AD
118#article #article-content {
119 padding : 0px;
120 font-height : 16px;
c01f40f4
AD
121}
122
bb674f94
AD
123#article #article-content #tags {
124 color : #a0a0a0;
125}
126
127#article #article-content #ops {
c01f40f4 128 float : right;
c01f40f4
AD
129}
130
bb674f94
AD
131#article #article-content #ops img {
132 cursor : pointer;
133 margin-right : 0px;
134 margin-left : 10px;
135}
136
137#article #article-content #inner {
138 padding : 20px;
139}
140
141#article #article-content img {
142 max-width : 90%;
143}
144
145#content.move {
146 left : -300px;
147 right : 60%
148}
149
150#feeds {
151 position : absolute;
152 left : 0px;
153 width : 300px;
154 top : 0px;
155 bottom : 0px;
156 font-size : 14px;
157 overflow : auto;
158 border-width : 0px 4px 0px 0px;
159 border-color : #e0e0e0;
160 border-style : solid;
c01f40f4
AD
161}
162
163#feeds ul#feeds-content img {
164 width : 16px;
165 height : 16px;
166 vertical-align : middle;
167 margin-right : 5px;
168}
169
170#feeds ul#feeds-content div.unread-ctr {
bb674f94
AD
171 color : #d0d0d0;
172 padding-left : 10px;
173 display : inline;
c01f40f4
AD
174}
175
176#feeds ul#feeds-content li {
bb674f94 177 padding : 10px;
d5d56329 178 clear : both;
bb674f94
AD
179 cursor : pointer;
180 border-width : 1px 0px 1px 0px;
181 border-color : transparent;
182 border-style : solid;
183 color : gray;
184 white-space : nowrap;
11a7a966
AD
185}
186
187#feeds ul#feeds-content li.selected {
bb674f94
AD
188 background : white;
189 border-color : #e0e0e0;
190 border-style : solid;
c01f40f4
AD
191}
192
193#feeds ul#feeds-content {
194 list-style-type : none;
195 font-weight : bold;
bb674f94 196 margin : 10px 10px 10px 10px;
c01f40f4
AD
197 padding : 0px;
198}
199
200#headlines {
c01f40f4 201 font-size : 14px;
bb674f94
AD
202 position : absolute;
203 left : 302px;
204 top : 0px;
205 bottom : 0px;
206 right : 0px;
207 overflow : auto;
118e9399
AD
208}
209
78ac6caf
AD
210#headlines h1 a {
211 color : #684C99;
212}
213
bb674f94
AD
214#headlines ul#headlines-content .cb {
215 vertical-align : middle;
216 margin-right : 5px;
217 float : left;
c01f40f4
AD
218}
219
11a7a966 220#headlines ul#headlines-content img.icon {
c01f40f4
AD
221 width : 16px;
222 height : 16px;
223 vertical-align : middle;
224 margin-right : 5px;
bb674f94 225 float : right;
c01f40f4
AD
226}
227
228#headlines ul#headlines-content {
229 list-style-type : none;
230 color : gray;
231 margin : 0px;
232 padding : 0px;
233}
234
235#headlines ul#headlines-content li {
bb674f94
AD
236 margin : 0px 0px 0px 2px;
237 padding : 10px;
238 color : gray;
1ca8997b 239 clear : left;
bb674f94
AD
240 background : #eeeeee;
241 border-width : 0px 0px 1px 0px;
242 border-style : solid;
243 border-color : #e0e0e0;
c01f40f4
AD
244}
245
8a9646b3 246#headlines ul#headlines-content a.title {
bb674f94 247 font-size : 14px;
e638cd02 248 font-weight : bold;
e638cd02 249 display : block;
bb674f94
AD
250 margin-left : 21px;
251 position : relative;
8a9646b3
AD
252}
253
254#headlines ul#headlines-content li.fresh a.title {
e638cd02
AD
255 color : #007FFF;
256}
257
2f57dff5 258#headlines ul#headlines-content li.unread a.title {
bb674f94
AD
259 color : black;
260 /* color : #8DB1D6; */
c01f40f4
AD
261}
262
2f57dff5 263#headlines ul#headlines-content li.read a.title {
bb674f94 264 color : gray;
2f57dff5
AD
265}
266
bb674f94
AD
267#headlines ul#headlines-content li.unread,
268#headlines ul#headlines-content li.fresh {
269 background-color : white;
270}
271
272#headlines ul#headlines-content li.selected {
273 background-color : #fff7d5;
274 border-color : white white #e0e0e0;
2f57dff5
AD
275}
276
eb4f33ec
AD
277#headlines ul#headlines-content img#H-LOADING-IMG {
278 margin-left : 5px;
279}
280
c01f40f4 281#headlines ul#headlines-content div.excerpt {
c01f40f4 282 color : #404040;
118e9399 283 cursor : pointer;
8a9646b3 284 margin-top : 5px;
118e9399
AD
285}
286
287#headlines ul#headlines-content div.content {
288 color : #404040;
c01f40f4
AD
289}
290
11a7a966
AD
291#headlines ul#headlines-content div.content img {
292 max-width : 75%;
293}
294
1ca8997b
AD
295#headlines ul#headlines-content div.body {
296 margin-left : 21px;
118e9399 297 /*margin-left : 42px;*/
1ca8997b
AD
298}
299
c01f40f4 300#headlines ul#headlines-content div.info {
1ca8997b 301 font-size : 11px;
c01f40f4
AD
302}
303
304#headlines ul#headlines-content div.info a {
305 color : gray;
306}
307
c7a5c8a5
AD
308#overlay {
309 background : white;
310 left : 0;
311 top : 0;
312 height : 100%;
313 width : 100%;
314 z-index : 100;
315 position : absolute;
316 text-align : center;
317}
318
319#overlay_inner {
320 margin : 1em;
321}
322
323#overlay img {
324 vertical-align : middle;
325}
ba7e88e5
AD
326
327div.fatalError button {
328 margin-top : 5px;
329}
330
331div.fatalError textarea {
332 width : 100%;
333 height : 100px;
334}
335
29a5b4aa
AD
336div.insensitive {
337 color : gray;
338}
bb674f94
AD
339
340