summaryrefslogtreecommitdiff
path: root/tt-rss.css
blob: 13c3b66aa0d92b7661000f85eb0853fe2cf760f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
body {
	background : white;
	color : black;
	margin : 0px;
	padding : 0px;
}

a {
	color : black;
	text-decoration : none;
}

a:hover {
	text-decoration : underline;
}

a.button {
	border : 1px solid #d0d0d0;
	background : white;
	color : black;
	padding : 2px 10px 2px 10px;
}

a.button:hover {
	background : #f0f0f0;
	text-decoration : none;
}

table.feedOverview {
	margin : 5px;
	border : 1px solid #c0c0c0;
	background : #f0f0f0;
	-moz-border-radius : 5px;
	padding : 5px;
	font-size : small;
}

td.headlineToolbar {
	padding-top : 10px;
}

table.headlines td.title {
	font-weight : bold;
	font-size : large;
	border-width : 0px 0px 1px 0px;
	border-color : #d0d0d0;
	border-style : solid;
	text-align : right;
}

table.headlines td.headlineUpdated {
	width : 200px;

}

table.main td.toolbar {
	height : 40px;
	text-align : right;
	background : #f0f0f0;
	padding-right : 5px;
}

table.main td.header {
	font-size : 18pt;
	background-color : #f0f0f0;
	background-image : url("header.png");
	background-position : top left;
	background-repeat : repeat-x;
	height : 50px;
	padding-left : 80px;
	padding-top : 30px;
	font-weight : bold;
}

table.main td.feeds {
	width : 250px;
	border-width : 1px 1px 0px 0px;
	border-color : #c0c0c0;
	border-style : solid;
	padding : 10px;
}

table.main td.headlines {
	height : 25%;
	padding : 10px;
	border-width : 1px 0px 0px 0px;
	border-color : #c0c0c0;
	border-style : solid;
	overflow : scroll;
}

table.main td.content {
	padding : 10px;
	border-width : 1px 0px 0px 0px;
	border-color : #c0c0c0;
	border-style : solid;
	overflow : scroll;
}

table.main td.notify {
	height : 40px;
	border-width : 1px 0px 0px 0px;
	border-color : #c0c0c0;
	border-style : solid;
	font-size : small;
	text-align : center;
	color : gray;
}

.even {
	background-color : #f0f0f0;
}

.evenUnread {
	background-color : #f0f0f0;
	font-weight : bold;
}

.oddUnread {
	font-weight : bold;
}

li {
	list-style-type : none;

}

ul {
	margin : 0px;
	padding : 0px;
	border : 1px solid #f0f0f0;
}

.invisible {
	display : none;
}