]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - inc/shaarli.css
Version 0.0.38 beta:
[github/shaarli/Shaarli.git] / inc / shaarli.css
1 /* CSS Stylsheet for Shaarli - http://sebsauvage.net/wiki/doku.php?id=php:shaarli */
2
3 /* CSS Reset from Yahoo to cope with browsers CSS inconsistencies. */
4 /*
5 Copyright (c) 2010, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.com/yui/license.html
6 version: 2.8.2r1
7 */
8 html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var,optgroup{font-style:inherit;font-weight:inherit;}del,ins{text-decoration:none;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:baseline;}sub{vertical-align:baseline;}legend{color:#000;}input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;}input,button,textarea,select{*font-size:100%;}
9
10 body { font-family: "Trebuchet MS",Verdana,Arial,Helvetica,sans-serif; font-size:10pt; background-color: #ffffff; }
11 input, textarea {
12 background-color: #dedede;
13 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dedede), to(#ffffff));
14 background: -webkit-linear-gradient(#dedede, #ffffff);
15 background: -moz-linear-gradient(#dedede, #ffffff);
16 background: -ms-linear-gradient(#dedede, #ffffff);
17 background: -o-linear-gradient(#dedede, #ffffff);
18 background: linear-gradient(#dedede, #ffffff);
19 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
20 padding:5px;
21 border-radius: 5px 5px 5px 5px;
22 border: none;
23 color:#000;
24
25 }
26
27 h1 { font-size:20pt; font-weight:bold; font-style:italic; margin-bottom:20px; }
28 /* I don't give a shit about IE. He can't understand selectors such as input[type='submit']. */
29
30 /* Buttons */
31 .bigbutton {
32 background-color: #c0c0c0;
33 background: -moz-linear-gradient(#c0c0c0, #ffffff) repeat scroll 0 0 transparent;
34 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#c0c0c0), to(#ffffff));
35 background: -webkit-linear-gradient(#c0c0c0, #ffffff);
36 background: -ms-linear-gradient(#c0c0c0, #ffffff);
37 background: -o-linear-gradient(#c0c0c0, #ffffff);
38 background: linear-gradient(#c0c0c0, #ffffff);
39 border-radius: 3px 3px 3px 3px;
40 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
41 cursor: pointer;
42 height: 24px;
43 margin-left: 5px;
44 padding: 0 5px;
45 color: #606060;
46 border-style:outset;
47 border-width:1px;
48
49 }
50 .smallbutton {
51 background-color: #c0c0c0;
52 background: -moz-linear-gradient(#c0c0c0, #ffffff) repeat scroll 0 0 transparent;
53 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#c0c0c0), to(#ffffff));
54 background: -webkit-linear-gradient(#c0c0c0, #ffffff);
55 background: -ms-linear-gradient(#c0c0c0, #ffffff);
56 background: -o-linear-gradient(#c0c0c0, #ffffff);
57 background: linear-gradient(#c0c0c0, #ffffff);
58 border-radius: 3px 3px 3px 3px;
59 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
60 cursor: pointer;
61 height: 20px;
62 margin-left: 5px;
63 padding: 0 5px;
64 color: #606060;
65 border-style:outset;
66 border-width:1px;
67
68 }
69
70 /* Edit/Delete buttons on links */
71 .button_edit, .button_delete { border-radius:0; box-shadow:none; border-style:none; border-width:0; padding:0; background:none; }
72 .button_edit { margin-left:10px; }
73
74
75 #pageheader #logo{
76 background-image: url('../images/logo.png');
77 background-repeat: no-repeat;
78 float:left;
79 margin:0 10px 0 10px;
80 width:105px;
81 height:55px;
82 cursor:pointer;
83
84 }
85
86 #pageheader
87 {
88 background-color: #333333;
89 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#333333), to(#111111));
90 background: -webkit-linear-gradient(#333333, #111111);
91 background: -moz-linear-gradient(#333333, #111111);
92 background: -ms-linear-gradient(#333333, #111111);
93 background: -o-linear-gradient(#333333, #111111);
94 background: linear-gradient(#333333, #111111);
95 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
96 width:auto;
97 padding:0 10px 5px 10px;
98 margin: auto;
99 }
100
101 #pageheader a
102 {
103 background-color: #333333;
104 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#333333), to(#000000));
105 background: -webkit-linear-gradient(#333333, #000000);
106 background: -moz-linear-gradient(#333333, #000000);
107 background: -ms-linear-gradient(#333333, #000000);
108 background: -o-linear-gradient(#333333, #000000);
109 background: linear-gradient(#333333, #000000);
110 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
111 padding:5px;
112 border-radius: 5px 5px 5px 5px;
113 margin:10px 3px 3px 3px;
114 color:#A2DD42;
115 float:left;
116 text-decoration:none;
117 }
118
119 #toolsdiv a{
120 clear:both;
121 }
122 #toolsdiv a span{
123 color:#ffffff;
124 }
125 .linksperpage,.tagfilter,.searchform,.addform {
126 background-color: #dedede;
127 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dedede), to(#ffffff));
128 background: -webkit-linear-gradient(#dedede, #ffffff);
129 background: -moz-linear-gradient(#dedede, #ffffff);
130 background: -ms-linear-gradient(#dedede, #ffffff);
131 background: -o-linear-gradient(#dedede, #ffffff);
132 background: linear-gradient(#dedede, #ffffff);
133 display:inline;
134 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
135 padding:5px;
136 border: none;
137 border-radius: 5px 5px 5px 5px;
138 margin:10px 3px 3px 3px;
139 color:#cecece;
140 }
141
142 .linksperpage{
143 box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
144 padding:3px;
145 }
146
147 .linksperpage input,.tagfilter input, .searchform input, .addform input{
148 border:none;
149 color:#606060;
150 background:none;
151 box-shadow:none;
152 padding:5px;
153 }
154
155 .linksperpage input{
156 padding:0;
157 }
158
159 .tagfilter input.bigbutton,.searchform input.bigbutton,.addform input.bigbutton{
160 background-color: #dedede;
161 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dedede), to(#ffffff));
162 background: -webkit-linear-gradient(#dedede, #ffffff);
163 background: -moz-linear-gradient(#dedede, #ffffff);
164 background: -ms-linear-gradient(#dedede, #ffffff);
165 background: -o-linear-gradient(#dedede, #ffffff);
166 background: linear-gradient(#dedede, #ffffff);
167 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
168 padding:0 5px 0 5px;
169 margin:5px 0 5px 0;
170 height:20px;
171 border-radius: 5px 5px 5px 5px;
172 cursor:pointer;
173 }
174
175 #shaarli_title { font-weight:bold; font-style:italic; margin-top:0;}
176 #shaarli_title a { color: #fff !important; }
177
178 #pageheader a:visited { color:#98C943; text-decoration:none;}
179 #pageheader a:hover { color:#FFFFC9; text-decoration:none;}
180 #pageheader a:active { color:#bbb; text-decoration:none;}
181 #searchcriteria { padding: 4px 0px 5px 5px; font-weight:bold;}
182 .paging { padding:5px;background-color:#777; color:#ccc; text-align:center; clear:both;}
183 .paging a:link { color:#ccc; text-decoration:none;}
184 .paging a:visited { color:#ccc; }
185 .paging a:hover { color:#FFFFC9; }
186 .paging a:active { color:#fff; }
187 #paging_privatelinks { float:left; }
188 #paging_linksperpage { float:right; padding-right:5px; }
189 #paging_current { display:inline; color:#fff; padding:0 20 0 20; }
190 #paging_older { margin-right:15px; }
191 #paging_newer { margin-left:15px; }
192
193 #headerform { color:#ffffff; padding:5px 5px 5px 5px; clear: both;}
194 #toolsdiv { color:#ffffff; padding:5px 5px 5px 5px; clear:left; }
195 #uploaddiv { color:#ffffff; padding:5px 5px 5px 5px; clear:left; }
196 #editlinkform { height:100%;color:#ffffff; padding:5px 5px 5px 15px; width:80%; clear:left; }
197 #linklist li {
198 padding:4px 10px 15px 20px; border-top: 1px solid #bbb; clear:both;
199 background-color: #F2F2F2;
200 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#F2F2F2), to(#ffffff));
201 background: -webkit-linear-gradient(#F2F2F2, #ffffff);
202 background: -moz-linear-gradient(#F2F2F2, #ffffff);
203 background: -ms-linear-gradient(#F2F2F2, #ffffff);
204 background: -o-linear-gradient(#F2F2F2, #ffffff);
205 background: linear-gradient(#F2F2F2, #ffffff);
206 }
207
208
209 #linklist li.publicLinkHightLight:hover,#linklist li:hover{
210 background: #E9FFCE;
211 }
212 #linklist li.private { background: url('../images/private.png') no-repeat 10px center; padding-left:60px; }
213 .private .linktitle a {color:#969696;}
214 .linktitle { font-size:14pt; font-weight:bold; }
215 .linktitle a { text-decoration: none; color:#80AD48; }
216 .linktitle a:hover { color:#F57900; }
217 .linkdate { font-size:8pt; color:#888; }
218 .linkdate a { background-image:url('../images/calendar.png');padding:2px 0 3px 20px;background-repeat:no-repeat;text-decoration: none; color:#E28E3F; }
219 .linkdate a:hover { color: #F57900 }
220 .linkurl { font-size:8pt; color:#4BAA74; }
221 .linkdescription { color:#000; margin-top:0; margin-bottom:12px; font-weight:normal; max-height:400px; overflow:auto; }
222 .linkdescription a { text-decoration: none; color:#3465A4; }
223 .linkdescription a:hover { color:#F57900; }
224 .linktaglist { padding-top:10px;}
225 .linktag {
226
227 font-size:9pt;
228 background-color: #F2F2F2;
229 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#F2F2F2), to(#ffffff));
230 background: -webkit-linear-gradient(#F2F2F2, #ffffff);
231 background: -moz-linear-gradient(#F2F2F2, #ffffff);
232 background: -ms-linear-gradient(#F2F2F2, #ffffff);
233 background: -o-linear-gradient(#F2F2F2, #ffffff);
234 background: linear-gradient(#F2F2F2, #ffffff);
235 box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
236 padding:3px 3px 3px 20px;
237 height:20px;
238 border-radius: 3px 3px 3px 3px;
239 cursor:pointer;
240 background-image:url('../images/tag_blue.png');
241 background-repeat:no-repeat;
242 background-position:3px center;
243 background-color:#ffffff;
244 }
245 .linktag:hover { border-color: #555573; color:#000; }
246 .linktag a { color:#777; text-decoration:none; }
247 .linkshort { font-size:8pt; color:#888; }
248 .linkshort a { text-decoration: none; color:#393964; }
249 .linkshort a:hover { text-decoration: underline; }
250 .buttoneditform { display:inline; }
251 #footer { font-size:8pt; text-align:center; border-top:1px solid #ddd; color: #888; clear:both; }
252 #footer a{ color:#486D08;}
253 #footer a:hover{ color:#000000;}
254 #newversion { background-color: #FFFFA0; color:#000; position:absolute; top:0;right:0; padding:2 7 2 7; font-size:9pt;}
255 #cloudtag { padding-left:10%; padding-right:10%; }
256 #cloudtag a { color:black; text-decoration:none; }
257 #installform td { font-size: 10pt; color:black; padding:10px 5px 10px 5px; clear:left; }
258 #changepasswordform { color:#ccc; padding:10px 5px 10px 5px; clear:left; }
259 #changetag { color:#ccc; padding:10px 5px 10px 5px; clear:left; }
260 #configform td { color:#ccc; font-size: 10pt; padding:10px 5px 10px 5px; }
261 #configform { color:#ccc; padding:10px 5px 10px 5px; clear:left; }
262 .thumbnail { float:right; margin-left: 10px; }
263 /* If you want thumbnails on the left:
264 .thumbnail { float:left; margin-right: 10px; }
265 .linkcontainer { position: static; margin-left:130px; }
266 */
267
268
269
270
271 /* --- Picture wall CSS --- */
272 #picwall_container { color:#fff; background-color:#000; clear:both; }
273 .picwall_pictureframe { background-color:#000; z-index:5; position:relative; display:table-cell; vertical-align:middle;width:90px; height:90px; overflow:hidden; text-align:center; float:left; }
274 .picwall_pictureframe img { max-width: 100%;height: auto; } /* Adapt the width of the image */
275 .picwall_pictureframe a {text-decoration:none;}
276
277 /* CSS to show title when hovering an image - no javascript required. */
278 .picwall_pictureframe span.info {display: none;}
279 .picwall_pictureframe:hover span.info {
280 display:block;
281 position:absolute;
282 top:0; left:0; width:90px;
283 font-weight:bold;
284 font-size:8pt;
285 color:#fff;
286 text-align: left;
287 background-color: transparent;
288 background-color: rgba(0, 0, 0, 0.4); /* FF3+, Saf3+, Opera 10.10+, Chrome, IE9 */
289 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000,endColorstr=#66000000); /* IE6\96IE9 */
290 text-shadow:2px 2px 1px #000000;
291 }
292
293 /* Minimal customisation for jQuery widgets */
294 .ui-autocomplete { background-color:#fff; padding-left:5px;}
295 .ui-state-hover { background-color: #604dff; color:#fff; }
296
297 #linklist li.publicLinkHightLight{
298 background: #ffffff;
299 }
300
301 div.qrcode {
302 width:220px;
303 height:220px;
304 background-color: #ffffff;
305 border: 1px solid black;
306 position: absolute;
307 top:-100px;
308 left:-100px;
309 text-align:center;
310 font-size: 8pt;
311 z-index:50;
312 -webkit-box-shadow:2px 2px 20px 2px #333333;
313 -moz-box-shadow:2px 2px 20px 2px #333333;
314 -o-box-shadow:2px 2px 20px 2px #333333;
315 -ms-box-shadow:2px 2px 20px 2px #333333;
316 box-shadow:2px 2px 20px 2px #333333;
317 }
318
319 div.daily
320 {
321 font-family: Georgia, 'DejaVu Serif', Norasi, serif;
322 background-color: #E6D6BE;
323 /* Background paper texture by BashCorpo:
324 http://www.bashcorpo.dk/textures.php
325 http://bashcorpo.deviantart.com/art/Grungy-paper-texture-v-5-22966998 */
326 background-image: url("../images/Paper_texture_v5_by_bashcorpo_w1000.jpg");
327 -webkit-background-size: cover;
328 -moz-background-size: cover;
329 -o-background-size: cover;
330 background-size: cover;
331 position:relative;
332 border-bottom: 2px solid black;
333 }
334
335 #daily_col1 { float:left;position:relative; width:33%; padding-left:1%; }
336 #daily_col2 { float:left;position:relative; width:33%; }
337 #daily_col3 { float:left;position:relative; width:33%;}
338
339 div.dailyAbout
340 {
341 float:left;
342 border: 1px solid black;
343 font-size: 8pt;
344 position:absolute;
345 left:10px;
346 top: 15px;
347 padding: 5px 5px 5px 5px;
348 text-align:center;
349 }
350 div.dailyAbout a { color: #890500; }
351 div.dailyTitle
352 {
353 font-weight: bold;
354 font-size: 44pt;
355 text-align:center;
356 padding:10px 20px 0px 20px;
357 }
358 div.dailyDate
359 {
360 font-size: 12pt;
361 font-weight:bold;
362 text-align:center;
363 padding:0px 20px 30px 20px;
364 }
365
366 /* Individual entries in "Daily": */
367 div.dailyEntry
368 {
369 margin: 5px 10px 2px 5px;
370 font-size: 11pt;
371 border-top: 1px solid #555;
372 }
373 div.dailyEntry a { text-decoration:none; color: #890500; }
374 div.dailyEntryTags { font-size:7.75pt; }
375 div.dailyEntryTitle { font-size:18pt; font-weight:bold;}
376 div.dailyEntryThumbnail
377 {
378 width:100%;
379 text-align:center;
380 background-color:rgb(128,128,128);
381 background:url(../images/50pc_transparent.png);
382 padding:4px 0px 2px 0px;
383 }
384 div.dailyEntryDescription
385 {
386 margin-top: 10px;
387 margin-bottom: 30px;
388 text-align:justify;
389 overflow:auto;
390 }
391
392 /* Common css screwdriver */
393 .clear{
394 clear:both;
395 }
396
397 /* For lazy images loading in picture wall.
398 using http://www.appelsiini.net/projects/lazyload
399 */
400 .lazyimage { display:none; }
401
402 @media print {
403 html {border:none;background:#fff!important;color:#000!important;}
404 body {font-size:12pt;width:auto!important;margin:auto!important;}
405 p {orphans:3; /*pas de ligne seule en bas */widows:3;/*pas de ligne seule en haut*/}
406 a {color:#000!important;text-decoration:none!important;}
407 #pageheader, .paging, #linklist li form, #footer {display:none;}
408 #linklist li { padding:2 0 10 0; border-top: 2px solid #000; clear:both; }
409 #linklist li.private { background-color: none; border-left:0; }
410 .linkdate { line-height:2; }
411 .linkurl { color:#000; }
412 .linkdescription { font-size:10pt;}
413 .linktag { border: 1px solid black; font-style:italic; font-size:8pt;}
414
415 }
416
417
418 @media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 854px)
419 {
420 /* A few fixes for mobile devices (far from perfect). */
421 .nomobile { display:none; }
422 #logo { display:none; }
423 #pageheader a
424 {
425 padding:5px;
426 border-radius: 5px 5px 5px 5px;
427 margin:3px;
428 }
429 .searchform,.tagfilter { display:block !important; margin:0px !important; padding:0px !important; width:100% !important; }
430 .searchform input,.tagfilter input { margin:0px !important; padding:0px !important; display:inline !important; }
431 .tagfilter input.bigbutton,.searchform input.bigbutton,.addform input.bigbutton{ width:30%; font-size:smaller;}
432 #searchform_value { width:70% !important; }
433 #tagfilter_value { width:70% !important; }
434 div.qrcode { position:relative; float:left; top:-10px; left:0px; }
435 #paging_privatelinks { float;none; }
436 #paging_linksperpage { float:none; margin-bottom:10px; font-size:smaller;}
437 #paging_older,#paging_newer,#paging_linksperpage a { border: 1px solid black; padding:3px 5px 3px 5px; background-color:#666; color:#fff; border-radius: 5px 5px 5px 5px;}
438 .thumbnail { float:none; height:auto; margin: 0px; text-align:center;}
439 #cloudtag { padding:0px; }
440 div.dailyAbout { float:none; position:relative; width:100%; clear:both; padding:0px; top:0px; left:0px; }
441 #daily_col1,#daily_col2,#daily_col3 { float:none; width:100%; padding:0px;}
442 div.dailyTitle { font-size: 18pt; margin-top:5px; padding:0px;}
443 div.dailyDate { font-size: 11pt;padding:0px; display:block; }
444 div.dailyEntryTitle { font-size:16pt; font-weight:bold;}
445 div.dailyEntryDescription { font-size:10pt; }
446
447 }
448