]> git.wh0rd.org - tt-rss.git/blob - utility.css
css cleanup; remove auxDlg; add separate prefs.css
[tt-rss.git] / utility.css
1 body {
2 font-family : sans-serif;
3 font-size : 12px;
4 background : #eee;
5 margin-left : auto;
6 margin-right : auto;
7 max-width : 800px;
8 }
9
10 form {
11 margin : 0px;
12 padding : 0px;
13 }
14
15 div.content {
16 background : white;
17 border : 1px solid #ccc;
18 padding : 10px;
19 box-shadow : 0px 0px 3px #ccc;
20 }
21
22 p.warning {
23 color : red;
24 }
25
26 p.query, code {
27 color : green;
28 }
29
30 p.insensitive {
31 color : gray;
32 }
33
34 div.insensitive-small {
35 color : gray;
36 font-size : 10px;
37 }
38
39 .floatingLogo {
40 float : right;
41 }
42
43 a {
44 color : #4684ff;
45 text-decoration : none;
46 }
47
48 a:hover {
49 color : black;
50 }
51
52 div.notice, div.warning, div.error {
53 padding : 4px 10px 4px 4px;
54 display : inline-block;
55 margin : 2px 0px 2px 0px;
56 font-size : 12px;
57 box-shadow : 0px 0px 2px #ccc;
58 }
59
60 div.notice {
61 background : #ecf4ff;
62 }
63
64 div.warning {
65 background : #fff7d5;
66 }
67
68 div.error {
69 background : #ffcccc;
70 }
71
72 div.warning img, div.notice img, div.error img {
73 margin-right : 4px;
74 vertical-align : middle;
75 }
76
77 h1 {
78 color : black;
79 font-size : 32px;
80 font-family : serif;
81 /* text-shadow : 2px 2px 2px #f0f0f0; */
82 }
83
84 h2 {
85 color : #88b0f0;
86 font-size : 14pt;
87 border-width : 0px 0px 1px 0px;
88 border-color : #f0f0f0;
89 border-style : solid;
90 }
91
92 div.rss h1 {
93 border-width : 0px 0px 1px 0px;
94 border-color : gray;
95 border-style : dotted;
96 color : gray;
97 margin-right : 90px;
98 }
99
100 div.rss h2 {
101 font-size : 12pt;
102 }
103
104 div.rss a.extlink {
105 color : gray;
106 border-width : 0px 0px 1px 0px;
107 border-color : #778899;
108 border-style : dotted;
109 font-size : 9pt;
110 }
111
112 div.rss img {
113 max-width : 775px;
114 }
115
116 div.rss p.description {
117 color : gray;
118 font-size : 9pt;
119 }
120
121 div.rss div.content {
122 margin-top : 0.5em;
123 }
124
125 div.rss img.feedicon {
126 float : right;
127 }
128
129 div.rss hr {
130 border-width : 0px 0px 1px 0px;
131 border-style : dashed;
132 border-color : #e0e0e0;
133 }
134
135 body#sharepopup {
136 background-color : white;
137 background-image : url("images/toolbar.png");
138 background-repeat : repeat-x;
139 background-position : bottom;
140 margin : 10px;
141 padding : 0px;
142 }
143
144 body#sharepopup h1 {
145 font-size : 14px;
146 margin : 0px;
147 color : #88b0f0;
148 }
149
150 body#sharepopup table {
151 background : white;
152 border : 1px solid #88b0f0;
153 padding : 5px;
154 }
155
156 body#sharepopup form {
157 height : 100%;
158 }
159
160 body#sharepopup input {
161 width : 100%;
162 }
163
164 div.autocomplete {
165 position : absolute;
166 width : 250px;
167 background-color : white;
168 border :1px solid #778899;
169 margin : 0px;
170 padding : 0px;
171 z-index : 4;
172 }
173
174 div.autocomplete ul {
175 list-style-type : none;
176 margin : 0px;
177 padding : 0px;
178 font-size : 10px;
179 }
180
181 div.autocomplete ul li.selected {
182 background-color : #fff7d5;
183 }
184
185 div.autocomplete ul li {
186 list-style-type : none;
187 display : block;
188 margin : 0;
189 padding : 2px;
190 height : 32px;
191 cursor : pointer;
192 }
193
194 fieldset {
195 border-width : 0px;
196 padding : 0px 0px 5px 0px;
197 margin : 0px;
198 }
199
200 fieldset input {
201 font-family : sans-serif;
202 font-size : medium;
203 border-spacing : 2px;
204 border : 1px solid #b5bcc7;
205 padding : 2px;
206 }
207
208 fieldset label {
209 width : 120px;
210 margin-right : 20px;
211 display : inline-block;
212 text-align : right;
213 color : gray;
214 }
215