]> git.wh0rd.org - tt-rss.git/blob - utility.css
3a69e1bca6d8e08ef0421a39251cc9c64a9eaf1d
[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 margin : 0px;
103 }
104
105 div.rss a.extlink {
106 color : gray;
107 border-width : 0px 0px 1px 0px;
108 border-color : #778899;
109 border-style : dotted;
110 font-size : 9pt;
111 }
112
113 div.rss p.description {
114 color : gray;
115 font-size : 9pt;
116 }
117
118 div.rss div.content {
119 margin-top : 0.5em;
120 }
121
122 div.rss img.feedicon {
123 float : right;
124 }
125
126 div.rss hr {
127 border-width : 0px 0px 1px 0px;
128 border-style : dashed;
129 border-color : #e0e0e0;
130 }
131
132 body#sharepopup {
133 background-color : white;
134 background-image : url("images/toolbar.png");
135 background-repeat : repeat-x;
136 background-position : bottom;
137 margin : 10px;
138 padding : 0px;
139 }
140
141 body#sharepopup h1 {
142 font-size : 14px;
143 margin : 0px;
144 color : #88b0f0;
145 }
146
147 body#sharepopup table {
148 background : white;
149 border : 1px solid #88b0f0;
150 padding : 5px;
151 }
152
153 body#sharepopup form {
154 height : 100%;
155 }
156
157 body#sharepopup input {
158 width : 100%;
159 }
160
161 div.autocomplete {
162 position : absolute;
163 width : 250px;
164 background-color : white;
165 border :1px solid #778899;
166 margin : 0px;
167 padding : 0px;
168 z-index : 4;
169 }
170
171 div.autocomplete ul {
172 list-style-type : none;
173 margin : 0px;
174 padding : 0px;
175 font-size : 10px;
176 }
177
178 div.autocomplete ul li.selected {
179 background-color : #fff7d5;
180 }
181
182 div.autocomplete ul li {
183 list-style-type : none;
184 display : block;
185 margin : 0;
186 padding : 2px;
187 height : 32px;
188 cursor : pointer;
189 }
190
191 fieldset {
192 border-width : 0px;
193 padding : 0px 0px 5px 0px;
194 margin : 0px;
195 }
196
197 fieldset input {
198 font-family : sans-serif;
199 font-size : medium;
200 border-spacing : 2px;
201 border : 1px solid #b5bcc7;
202 padding : 2px;
203 }
204
205 fieldset label {
206 width : 120px;
207 margin-right : 20px;
208 display : inline-block;
209 text-align : right;
210 color : gray;
211 }
212