diff options
Diffstat (limited to 'inc/shaarli.css')
-rw-r--r-- | inc/shaarli.css | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/inc/shaarli.css b/inc/shaarli.css index a949666e..5b4b88b6 100644 --- a/inc/shaarli.css +++ b/inc/shaarli.css | |||
@@ -184,6 +184,12 @@ cursor:pointer; | |||
184 | .paging a:visited { color:#ccc; } | 184 | .paging a:visited { color:#ccc; } |
185 | .paging a:hover { color:#FFFFC9; } | 185 | .paging a:hover { color:#FFFFC9; } |
186 | .paging a:active { color:#fff; } | 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 | |||
187 | #headerform { color:#ffffff; padding:5px 5px 5px 5px; clear: both;} | 193 | #headerform { color:#ffffff; padding:5px 5px 5px 5px; clear: both;} |
188 | #toolsdiv { color:#ffffff; padding:5px 5px 5px 5px; clear:left; } | 194 | #toolsdiv { color:#ffffff; padding:5px 5px 5px 5px; clear:left; } |
189 | #uploaddiv { color:#ffffff; padding:5px 5px 5px 5px; clear:left; } | 195 | #uploaddiv { color:#ffffff; padding:5px 5px 5px 5px; clear:left; } |
@@ -325,6 +331,11 @@ div.daily | |||
325 | position:relative; | 331 | position:relative; |
326 | border-bottom: 2px solid black; | 332 | border-bottom: 2px solid black; |
327 | } | 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 | |||
328 | div.dailyAbout | 339 | div.dailyAbout |
329 | { | 340 | { |
330 | float:left; | 341 | float:left; |
@@ -383,6 +394,11 @@ div.dailyEntryDescription | |||
383 | clear:both; | 394 | clear:both; |
384 | } | 395 | } |
385 | 396 | ||
397 | /* For lazy images loading in picture wall. | ||
398 | using http://www.appelsiini.net/projects/lazyload | ||
399 | */ | ||
400 | .lazyimage { display:none; } | ||
401 | |||
386 | @media print { | 402 | @media print { |
387 | html {border:none;background:#fff!important;color:#000!important;} | 403 | html {border:none;background:#fff!important;color:#000!important;} |
388 | body {font-size:12pt;width:auto!important;margin:auto!important;} | 404 | body {font-size:12pt;width:auto!important;margin:auto!important;} |
@@ -397,3 +413,36 @@ a {color:#000!important;text-decoration:none!important;} | |||
397 | .linktag { border: 1px solid black; font-style:italic; font-size:8pt;} | 413 | .linktag { border: 1px solid black; font-style:italic; font-size:8pt;} |
398 | 414 | ||
399 | } | 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 | |||