]> git.wh0rd.org - tt-rss.git/blob - tt-rss.css
13c3b66aa0d92b7661000f85eb0853fe2cf760f7
[tt-rss.git] / tt-rss.css
1 body {
2 background : white;
3 color : black;
4 margin : 0px;
5 padding : 0px;
6 }
7
8 a {
9 color : black;
10 text-decoration : none;
11 }
12
13 a:hover {
14 text-decoration : underline;
15 }
16
17 a.button {
18 border : 1px solid #d0d0d0;
19 background : white;
20 color : black;
21 padding : 2px 10px 2px 10px;
22 }
23
24 a.button:hover {
25 background : #f0f0f0;
26 text-decoration : none;
27 }
28
29 table.feedOverview {
30 margin : 5px;
31 border : 1px solid #c0c0c0;
32 background : #f0f0f0;
33 -moz-border-radius : 5px;
34 padding : 5px;
35 font-size : small;
36 }
37
38 td.headlineToolbar {
39 padding-top : 10px;
40 }
41
42 table.headlines td.title {
43 font-weight : bold;
44 font-size : large;
45 border-width : 0px 0px 1px 0px;
46 border-color : #d0d0d0;
47 border-style : solid;
48 text-align : right;
49 }
50
51 table.headlines td.headlineUpdated {
52 width : 200px;
53
54 }
55
56 table.main td.toolbar {
57 height : 40px;
58 text-align : right;
59 background : #f0f0f0;
60 padding-right : 5px;
61 }
62
63 table.main td.header {
64 font-size : 18pt;
65 background-color : #f0f0f0;
66 background-image : url("header.png");
67 background-position : top left;
68 background-repeat : repeat-x;
69 height : 50px;
70 padding-left : 80px;
71 padding-top : 30px;
72 font-weight : bold;
73 }
74
75 table.main td.feeds {
76 width : 250px;
77 border-width : 1px 1px 0px 0px;
78 border-color : #c0c0c0;
79 border-style : solid;
80 padding : 10px;
81 }
82
83 table.main td.headlines {
84 height : 25%;
85 padding : 10px;
86 border-width : 1px 0px 0px 0px;
87 border-color : #c0c0c0;
88 border-style : solid;
89 overflow : scroll;
90 }
91
92 table.main td.content {
93 padding : 10px;
94 border-width : 1px 0px 0px 0px;
95 border-color : #c0c0c0;
96 border-style : solid;
97 overflow : scroll;
98 }
99
100 table.main td.notify {
101 height : 40px;
102 border-width : 1px 0px 0px 0px;
103 border-color : #c0c0c0;
104 border-style : solid;
105 font-size : small;
106 text-align : center;
107 color : gray;
108 }
109
110 .even {
111 background-color : #f0f0f0;
112 }
113
114 .evenUnread {
115 background-color : #f0f0f0;
116 font-weight : bold;
117 }
118
119 .oddUnread {
120 font-weight : bold;
121 }
122
123 li {
124 list-style-type : none;
125
126 }
127
128 ul {
129 margin : 0px;
130 padding : 0px;
131 border : 1px solid #f0f0f0;
132 }
133
134 .invisible {
135 display : none;
136 }