]> git.wh0rd.org - tt-rss.git/blob - tt-rss.css
basic functionality pass 4
[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-image : url("button.png");
20 background-position : top;
21 background-repeat : repeat-x;
22 background-color : white;
23 color : black;
24 padding : 2px 10px 2px 10px;
25 font-size : small;
26 }
27
28 a.button:hover {
29 background : white;
30 text-decoration : none;
31 }
32
33 table.feedOverview {
34 margin : 5px;
35 border : 1px solid #c0c0c0;
36 background : #f0f0f0;
37 -moz-border-radius : 5px;
38 padding : 5px;
39 font-size : small;
40 }
41
42 td.headlineToolbar {
43 padding-top : 10px;
44 }
45
46 table.feeds td.footer {
47 font-weight : bold;
48 border-width : 1px 0px 0px 0px;
49 border-color : #d0d0d0;
50 border-style : solid;
51 text-align : right;
52 font-size : small;
53 }
54
55 table.headlines td.search {
56 font-size : small;
57 /* border-width : 0px 0px 1px 0px;
58 border-color : #d0d0d0;
59 border-style : solid;
60 padding-bottom : 3px; */
61 }
62
63 table.headlines td.title {
64 font-weight : bold;
65 font-size : large;
66 border-width : 0px 0px 1px 0px;
67 border-color : #d0d0d0;
68 border-style : solid;
69 text-align : right;
70 padding-bottom : 3px;
71 }
72
73 table.headlines td.headlineUpdated {
74 width : 200px;
75
76 }
77
78 input {
79 border : 1px solid #a0a0a0;
80 }
81
82 table.main td.toolbar {
83 height : 40px;
84 background : #f0f0f0;
85 padding-right : 5px;
86 font-size : small;
87 text-align : right;
88 }
89
90 table.main td.header {
91 font-size : 18pt;
92 background-color : #f0f0f0;
93 background-image : url("header.png");
94 background-position : top left;
95 background-repeat : repeat-x;
96 height : 50px;
97 padding-left : 80px;
98 padding-top : 30px;
99 font-weight : bold;
100 }
101
102 table.main td.feeds {
103 width : 250px;
104 border-width : 1px 1px 0px 0px;
105 border-color : #c0c0c0;
106 border-style : solid;
107 padding : 10px;
108 }
109
110 table.main td.headlines {
111 height : 25%;
112 padding : 10px;
113 border-width : 1px 0px 0px 0px;
114 border-color : #c0c0c0;
115 border-style : solid;
116 overflow : scroll;
117 }
118
119 table.main td.content {
120 padding : 10px;
121 border-width : 1px 0px 0px 0px;
122 border-color : #c0c0c0;
123 border-style : solid;
124 overflow : scroll;
125 }
126
127 table.main td.notify {
128 height : 40px;
129 border-width : 1px 0px 0px 0px;
130 border-color : #c0c0c0;
131 border-style : solid;
132 font-size : small;
133 text-align : center;
134 color : gray;
135 }
136
137 .even {
138 background-color : #f0f0f0;
139 }
140
141 .evenUnread {
142 background-color : #f0f0f0;
143 font-weight : bold;
144 }
145
146 .oddUnread {
147 font-weight : bold;
148 }
149
150 li {
151 list-style-type : none;
152
153 }
154
155 ul {
156 margin : 0px;
157 padding : 0px;
158 border : 1px solid #f0f0f0;
159 }
160
161 .invisible {
162 display : none;
163 }