]> git.wh0rd.org - tt-rss.git/blob - tt-rss.css
basic functionality pass 1
[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 : #f0f0f0;
66 height : 50px;
67 padding-left : 80px;
68 padding-top : 30px;
69 font-weight : bold;
70 }
71
72 table.main td.feeds {
73 width : 250px;
74 border-width : 1px 1px 0px 0px;
75 border-color : #c0c0c0;
76 border-style : solid;
77 padding : 10px;
78 }
79
80 table.main td.headlines {
81 height : 25%;
82 padding : 10px;
83 border-width : 1px 0px 0px 0px;
84 border-color : #c0c0c0;
85 border-style : solid;
86 overflow : scroll;
87 }
88
89 table.main td.content {
90 padding : 10px;
91 border-width : 1px 0px 0px 0px;
92 border-color : #c0c0c0;
93 border-style : solid;
94 overflow : scroll;
95 }
96
97 table.main td.notify {
98 height : 40px;
99 border-width : 1px 0px 0px 0px;
100 border-color : #c0c0c0;
101 border-style : solid;
102 font-size : small;
103 text-align : center;
104 color : gray;
105 }
106
107 .even {
108 background-color : #f0f0f0;
109 }
110
111 .evenUnread {
112 background-color : #f0f0f0;
113 font-weight : bold;
114 }
115
116 .oddUnread {
117 font-weight : bold;
118 }
119
120 li {
121 list-style-type : none;
122
123 }
124
125 ul {
126 margin : 0px;
127 padding : 0px;
128 border : 1px solid #f0f0f0;
129 }