shaarli.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919
  1. /* Cascading Stylesheet for Shaarli - http://sebsauvage.net/wiki/doku.php?id=php:shaarli */
  2. /* CSS Reset from Yahoo to cope with browsers CSS inconsistencies. */
  3. /*
  4. Copyright (c) 2010, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.com/yui/license.html
  5. version: 2.8.2r1
  6. */
  7. 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%;}
  8. body {
  9. font-family: "Trebuchet MS",Verdana,Arial,Helvetica,sans-serif;
  10. font-size: 10pt;
  11. background-color: #ffffff;
  12. word-wrap: break-word;
  13. }
  14. input, textarea {
  15. background-color: #dedede;
  16. background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dedede), to(#ffffff));
  17. background: -webkit-linear-gradient(#dedede, #ffffff);
  18. background: -moz-linear-gradient(#dedede, #ffffff);
  19. background: -ms-linear-gradient(#dedede, #ffffff);
  20. background: -o-linear-gradient(#dedede, #ffffff);
  21. background: linear-gradient(#dedede, #ffffff);
  22. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  23. padding: 5px;
  24. border-radius: 5px 5px 5px 5px;
  25. border: none;
  26. color: #000;
  27. }
  28. a {
  29. text-decoration: none;
  30. }
  31. h1 {
  32. font-size: 20pt;
  33. font-weight: bold;
  34. font-style: italic;
  35. margin-bottom: 20px;
  36. }
  37. /* Buttons */
  38. .bigbutton {
  39. background-color: #c0c0c0;
  40. background: -moz-linear-gradient(#c0c0c0, #ffffff) repeat scroll 0 0 transparent;
  41. background: -webkit-gradient(linear, 0 0, 0 bottom, from(#c0c0c0), to(#ffffff));
  42. background: -webkit-linear-gradient(#c0c0c0, #ffffff);
  43. background: -ms-linear-gradient(#c0c0c0, #ffffff);
  44. background: -o-linear-gradient(#c0c0c0, #ffffff);
  45. background: linear-gradient(#c0c0c0, #ffffff);
  46. border-radius: 3px 3px 3px 3px;
  47. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  48. cursor: pointer;
  49. height: 24px;
  50. margin-left: 5px;
  51. padding: 0 5px;
  52. color: #606060;
  53. border-style: outset;
  54. border-width: 1px;
  55. }
  56. .smallbutton {
  57. background-color: #c0c0c0;
  58. background: -moz-linear-gradient(#c0c0c0, #ffffff) repeat scroll 0 0 transparent;
  59. background: -webkit-gradient(linear, 0 0, 0 bottom, from(#c0c0c0), to(#ffffff));
  60. background: -webkit-linear-gradient(#c0c0c0, #ffffff);
  61. background: -ms-linear-gradient(#c0c0c0, #ffffff);
  62. background: -o-linear-gradient(#c0c0c0, #ffffff);
  63. background: linear-gradient(#c0c0c0, #ffffff);
  64. border-radius: 3px 3px 3px 3px;
  65. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  66. cursor: pointer;
  67. height: 20px;
  68. margin-left: 5px;
  69. padding: 0 5px;
  70. color: #606060;
  71. border-style: outset;
  72. border-width: 1px;
  73. }
  74. /* Small tab on the left of each link with edit/delete buttons. */
  75. .button_edit, .button_delete {
  76. border-radius: 0;
  77. box-shadow: none;
  78. border-style: none;
  79. border-width: 0;
  80. padding: 0;
  81. background: none;
  82. }
  83. .linkeditbuttons {
  84. position: absolute;
  85. left: -1px;
  86. padding: 4px 2px 2px 2px;
  87. background-color: #f0f0f0;
  88. -webkit-border-radius: 0px 6px 6px 0px;
  89. -moz-border-radius: 0px 6px 6px 0px;
  90. -o-border-radius: 0px 6px 6px 0px;
  91. -ms-border-radius: 0px 6px 6px 0px;
  92. border-radius: 0px 6px 6px 0px;
  93. -webkit-box-shadow: 0px 0px 3px 0px #333333;
  94. -moz-box-shadow: 0px 0px 3px 0px #333333;
  95. -o-box-shadow: 0px 0px 3px 0px #333333;
  96. -ms-box-shadow: 0px 0px 3px 0px #333333;
  97. box-shadow: 0px 0px 3px 0px #333333;
  98. }
  99. #pageheader #logo {
  100. background-image: url('../images/logo.png');
  101. background-repeat: no-repeat;
  102. float: left;
  103. margin: 0 10px 0 10px;
  104. width: 105px;
  105. height: 55px;
  106. cursor: pointer;
  107. }
  108. #pageheader {
  109. background-color: #333333;
  110. background: -webkit-gradient(linear, 0 0, 0 bottom, from(#333333), to(#111111));
  111. background: -webkit-linear-gradient(#333333, #111111);
  112. background: -moz-linear-gradient(#333333, #111111);
  113. background: -ms-linear-gradient(#333333, #111111);
  114. background: -o-linear-gradient(#333333, #111111);
  115. background: linear-gradient(#333333, #111111);
  116. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  117. width: auto;
  118. padding: 0 10px 5px 10px;
  119. margin: auto;
  120. }
  121. #pageheader a {
  122. background-color: #333333;
  123. background: -webkit-gradient(linear, 0 0, 0 bottom, from(#333333), to(#000000));
  124. background: -webkit-linear-gradient(#333333, #000000);
  125. background: -moz-linear-gradient(#333333, #000000);
  126. background: -ms-linear-gradient(#333333, #000000);
  127. background: -o-linear-gradient(#333333, #000000);
  128. background: linear-gradient(#333333, #000000);
  129. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  130. padding: 5px;
  131. border-radius: 5px 5px 5px 5px;
  132. margin: 10px 3px 3px 3px;
  133. color: #A2DD42;
  134. float: left;
  135. text-decoration: none;
  136. }
  137. #toolsdiv a {
  138. clear: both;
  139. }
  140. #toolsdiv a span {
  141. color: #ffffff;
  142. }
  143. .linksperpage, .tagfilter, .searchform, .addform {
  144. background-color: #dedede;
  145. background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dedede), to(#ffffff));
  146. background: -webkit-linear-gradient(#dedede, #ffffff);
  147. background: -moz-linear-gradient(#dedede, #ffffff);
  148. background: -ms-linear-gradient(#dedede, #ffffff);
  149. background: -o-linear-gradient(#dedede, #ffffff);
  150. background: linear-gradient(#dedede, #ffffff);
  151. display: inline;
  152. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  153. padding: 5px;
  154. border: none;
  155. border-radius: 5px 5px 5px 5px;
  156. margin: 10px 3px 3px 3px;
  157. color: #cecece;
  158. }
  159. .linksperpage {
  160. box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
  161. padding: 3px;
  162. }
  163. .linksperpage input, .tagfilter input, .searchform input, .addform input {
  164. border: none;
  165. color: #606060;
  166. background: none;
  167. box-shadow: none;
  168. padding: 5px;
  169. }
  170. .linksperpage input {
  171. padding: 0;
  172. }
  173. .tagfilter input.bigbutton, .searchform input.bigbutton, .addform input.bigbutton {
  174. background-color: #dedede;
  175. background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dedede), to(#ffffff));
  176. background: -webkit-linear-gradient(#dedede, #ffffff);
  177. background: -moz-linear-gradient(#dedede, #ffffff);
  178. background: -ms-linear-gradient(#dedede, #ffffff);
  179. background: -o-linear-gradient(#dedede, #ffffff);
  180. background: linear-gradient(#dedede, #ffffff);
  181. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  182. padding: 0 5px 0 5px;
  183. margin: 5px 0 5px 0;
  184. height: 20px;
  185. border-radius: 5px 5px 5px 5px;
  186. cursor: pointer;
  187. }
  188. #shaarli_title {
  189. font-weight: bold;
  190. font-style: italic;
  191. margin-top: 0;
  192. }
  193. #shaarli_title a {
  194. color: #fff !important;
  195. }
  196. #pageheader a:visited {
  197. color: #98C943;
  198. text-decoration: none;
  199. }
  200. #pageheader a:hover {
  201. color: #FFFFC9;
  202. text-decoration: none;
  203. }
  204. #pageheader a:active {
  205. color: #bbb;
  206. text-decoration: none;
  207. }
  208. #searchcriteria {
  209. padding: 4px 0px 5px 5px;
  210. font-weight: bold;
  211. }
  212. .paging {
  213. padding: 5px;
  214. background-color: #777;
  215. color: #ccc;
  216. text-align: center;
  217. clear: both;
  218. }
  219. .paging a:link {
  220. color: #ccc;
  221. text-decoration: none;
  222. }
  223. .paging a:visited {
  224. color: #ccc;
  225. }
  226. .paging a:hover {
  227. color: #FFFFC9;
  228. }
  229. .paging a:active {
  230. color: #fff;
  231. }
  232. #paging_privatelinks {
  233. float: left;
  234. }
  235. #paging_linksperpage {
  236. float: right;
  237. padding-right: 5px;
  238. }
  239. #paging_current {
  240. display: inline;
  241. color: #fff;
  242. padding: 0 20 0 20;
  243. }
  244. #paging_older {
  245. margin-right: 15px;
  246. }
  247. #paging_newer {
  248. margin-left: 15px;
  249. }
  250. #headerform {
  251. color: #ffffff;
  252. padding: 5px 5px 5px 5px;
  253. clear: both;
  254. }
  255. #toolsdiv {
  256. color: #ffffff;
  257. padding: 5px 5px 5px 5px;
  258. clear: left;
  259. }
  260. #uploaddiv {
  261. color: #ffffff;
  262. padding: 5px 5px 5px 5px;
  263. clear: left;
  264. }
  265. #editlinkform {
  266. height: 100%;
  267. color: #ffffff;
  268. padding: 5px 5px 5px 15px;
  269. width: 80%;
  270. clear: left;
  271. }
  272. #linklist li {
  273. padding: 4px 10px 15px 20px;
  274. border-top: 1px solid #bbb;
  275. clear: both;
  276. background-color: #F2F2F2;
  277. background: -webkit-gradient(linear, 0 0, 0 bottom, from(#F2F2F2), to(#ffffff));
  278. background: -webkit-linear-gradient(#F2F2F2, #ffffff);
  279. background: -moz-linear-gradient(#F2F2F2, #ffffff);
  280. background: -ms-linear-gradient(#F2F2F2, #ffffff);
  281. background: -o-linear-gradient(#F2F2F2, #ffffff);
  282. background: linear-gradient(#F2F2F2, #ffffff);
  283. }
  284. /*
  285. #linklist li.publicLinkHightLight:hover, #linklist li:hover {
  286. background: #E9FFCE;
  287. }
  288. */
  289. .linkdate, .linkarchive {
  290. font-size:8pt;
  291. color:#888;
  292. }
  293. .linkdate a, .linkarchive a {
  294. color:#E28E3F;
  295. }
  296. #linklist li.private {
  297. background: url('../images/private.png') no-repeat 10px center;
  298. padding-left: 60px;
  299. }
  300. #linklist li {
  301. padding-left: 26px;
  302. }
  303. .private .linktitle a {
  304. color: #969696;
  305. }
  306. .linktitle {
  307. font-size: 14pt;
  308. font-weight: bold;
  309. }
  310. .linktitle a {
  311. text-decoration: none;
  312. color: #80AD48;
  313. }
  314. .linktitle a:hover {
  315. color: #F57900;
  316. }
  317. .linkdate, .linkarchive {
  318. font-size: 8pt;
  319. color: #888;
  320. }
  321. .linkdate a, .linkarchive a {
  322. background-image: url('../images/calendar.png');
  323. padding: 2px 0 3px 20px;
  324. background-repeat: no-repeat;
  325. text-decoration: none;
  326. color: #E28E3F;
  327. }
  328. .linkdate a:hover {
  329. color: #F57900 }
  330. .linkurl {
  331. font-size: 8pt;
  332. color: #4BAA74;
  333. }
  334. .linkdescription {
  335. color: #000;
  336. margin-top: 0;
  337. margin-bottom: 12px;
  338. font-weight: normal;
  339. max-height: 400px;
  340. overflow: auto;
  341. }
  342. .linkdescription a {
  343. text-decoration: none;
  344. color: #3465A4;
  345. }
  346. .linkdescription a:hover {
  347. color: #F57900;
  348. }
  349. .linktaglist {
  350. padding-top: 10px;
  351. line-height: 200%;
  352. }
  353. .linktag {
  354. font-size: 9pt;
  355. background-color: #F2F2F2;
  356. background: -webkit-gradient(linear, 0 0, 0 bottom, from(#F2F2F2), to(#ffffff));
  357. background: -webkit-linear-gradient(#F2F2F2, #ffffff);
  358. background: -moz-linear-gradient(#F2F2F2, #ffffff);
  359. background: -ms-linear-gradient(#F2F2F2, #ffffff);
  360. background: -o-linear-gradient(#F2F2F2, #ffffff);
  361. background: linear-gradient(#F2F2F2, #ffffff);
  362. box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  363. padding: 3px 3px 3px 20px;
  364. height: 20px;
  365. border-radius: 3px 3px 3px 3px;
  366. cursor: pointer;
  367. background-image: url('../images/tag_blue.png');
  368. background-repeat: no-repeat;
  369. background-position: 3px center;
  370. background-color: #ffffff;
  371. }
  372. .linktag:hover {
  373. border-color: #555573;
  374. color: #000;
  375. }
  376. .linktag a {
  377. color: #777;
  378. text-decoration: none;
  379. }
  380. .linkshort {
  381. font-size: 8pt;
  382. color: #888;
  383. }
  384. .linkshort a {
  385. text-decoration: none;
  386. color: #393964;
  387. }
  388. .linkshort a:hover {
  389. text-decoration: underline;
  390. }
  391. .buttoneditform {
  392. display: inline;
  393. }
  394. #footer {
  395. font-size: 8pt;
  396. text-align: center;
  397. border-top: 1px solid #ddd;
  398. color: #888;
  399. clear: both;
  400. }
  401. #footer a {
  402. color: #486D08;
  403. }
  404. #footer a:hover {
  405. color: #000000;
  406. }
  407. #newversion {
  408. background-color: #FFFFA0;
  409. color: #000;
  410. position: absolute;
  411. top: 0;
  412. right: 0;
  413. padding: 2 7 2 7;
  414. font-size: 9pt;
  415. }
  416. #cloudtag {
  417. padding-left: 10%;
  418. padding-right: 10%;
  419. }
  420. #cloudtag a {
  421. color: black;
  422. text-decoration: none;
  423. }
  424. #installform td {
  425. font-size: 10pt;
  426. color: black;
  427. padding: 10px 5px 10px 5px;
  428. clear: left;
  429. }
  430. #changepasswordform {
  431. color: #ccc;
  432. padding: 10px 5px 10px 5px;
  433. clear: left;
  434. }
  435. #changetag {
  436. color: #ccc;
  437. padding: 10px 5px 10px 5px;
  438. clear: left;
  439. }
  440. #configform td {
  441. color: #ccc;
  442. font-size: 10pt;
  443. padding: 10px 5px 10px 5px;
  444. }
  445. #configform {
  446. color: #ccc;
  447. padding: 10px 5px 10px 5px;
  448. clear: left;
  449. }
  450. .thumbnail {
  451. float: right;
  452. margin-left: 10px;
  453. }
  454. /* If you want thumbnails on the left:
  455. .thumbnail {
  456. float: left;
  457. margin-right: 10px;
  458. }
  459. .linkcontainer {
  460. position: static;
  461. margin-left: 130px;
  462. }
  463. */
  464. /* --- Picture wall CSS --- */
  465. #picwall_container {
  466. color: #fff;
  467. background-color: #000;
  468. clear: both;
  469. }
  470. .picwall_pictureframe {
  471. background-color: #000;
  472. z-index: 5;
  473. position: relative;
  474. display: table-cell;
  475. vertical-align: middle;
  476. width: 90px;
  477. height: 90px;
  478. overflow: hidden;
  479. text-align: center;
  480. float: left;
  481. }
  482. .picwall_pictureframe img {
  483. max-width: 100%;
  484. height: auto;
  485. } /* Adapt the width of the image */
  486. .picwall_pictureframe a {
  487. text-decoration: none;
  488. }
  489. /* CSS to show title when hovering an image - no javascript required. */
  490. .picwall_pictureframe span.info {
  491. display: none;
  492. }
  493. .picwall_pictureframe:hover span.info {
  494. display: block;
  495. position: absolute;
  496. top: 0;
  497. left: 0;
  498. width: 90px;
  499. font-weight: bold;
  500. font-size: 8pt;
  501. color: #fff;
  502. text-align: left;
  503. background-color: transparent;
  504. background-color: rgba(0, 0, 0, 0.4);
  505. /* FF3+, Saf3+, Opera 10.10+, Chrome, IE9 */
  506. filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000);
  507. /* IE6–IE9 */
  508. text-shadow: 2px 2px 1px #000000;
  509. }
  510. /* Minimal customisation for jQuery widgets */
  511. .ui-autocomplete {
  512. background-color: #fff;
  513. padding-left: 5px;
  514. }
  515. .ui-state-hover {
  516. background-color: #604dff;
  517. color: #fff;
  518. }
  519. #linklist li.publicLinkHightLight {
  520. background: #ffffff;
  521. }
  522. div#permalinkQrcode {
  523. padding: 20px;
  524. width: 220px;
  525. height: 220px;
  526. background-color: #ffffff;
  527. border: 1px solid black;
  528. position: absolute;
  529. top: -100px;
  530. left: -100px;
  531. text-align: center;
  532. font-size: 8pt;
  533. z-index: 50;
  534. -webkit-box-shadow: 2px 2px 20px 2px #333333;
  535. -moz-box-shadow: 2px 2px 20px 2px #333333;
  536. -o-box-shadow: 2px 2px 20px 2px #333333;
  537. -ms-box-shadow: 2px 2px 20px 2px #333333;
  538. box-shadow: 2px 2px 20px 2px #333333;
  539. }
  540. div.daily {
  541. font-family: Georgia, 'DejaVu Serif', Norasi, serif;
  542. background-color: #E6D6BE;
  543. /* Background paper texture by BashCorpo:
  544. http://www.bashcorpo.dk/textures.php
  545. http://bashcorpo.deviantart.com/art/Grungy-paper-texture-v-5-22966998 */
  546. background-image: url("../images/Paper_texture_v5_by_bashcorpo_w1000.jpg");
  547. -webkit-background-size: cover;
  548. -moz-background-size: cover;
  549. -o-background-size: cover;
  550. background-size: cover;
  551. position: relative;
  552. border-bottom: 2px solid black;
  553. }
  554. #daily_col1 {
  555. float: left;
  556. position: relative;
  557. width: 33%;
  558. padding-left: 1%;
  559. }
  560. #daily_col2 {
  561. float: left;
  562. position: relative;
  563. width: 33%;
  564. }
  565. #daily_col3 {
  566. float: left;
  567. position: relative;
  568. width: 33%;
  569. }
  570. div.dailyAbout {
  571. float: left;
  572. border: 1px solid black;
  573. font-size: 8pt;
  574. position: absolute;
  575. left: 10px;
  576. top: 15px;
  577. padding: 5px 5px 5px 5px;
  578. text-align: center;
  579. }
  580. div.dailyAbout a {
  581. color: #890500;
  582. }
  583. div.dailyTitle {
  584. font-weight: bold;
  585. font-size: 44pt;
  586. text-align: center;
  587. padding: 10px 20px 0px 20px;
  588. }
  589. div.dailyDate {
  590. font-size: 12pt;
  591. font-weight: bold;
  592. text-align: center;
  593. padding: 0px 20px 30px 20px;
  594. }
  595. /* Individual entries in "Daily": */
  596. div.dailyEntry {
  597. margin: 5px 10px 2px 5px;
  598. font-size: 11pt;
  599. border-top: 1px solid #555;
  600. }
  601. div.dailyEntry a {
  602. text-decoration: none;
  603. color: #890500;
  604. }
  605. div.dailyEntryTags {
  606. font-size: 7.75pt;
  607. }
  608. div.dailyEntryTitle {
  609. font-size: 18pt;
  610. font-weight: bold;
  611. }
  612. div.dailyEntryThumbnail {
  613. width: 100%;
  614. text-align: center;
  615. background-color: rgb(128, 128, 128);
  616. background: url(../images/50pc_transparent.png);
  617. padding: 4px 0px 2px 0px;
  618. }
  619. div.dailyEntryDescription {
  620. margin-top: 10px;
  621. margin-bottom: 30px;
  622. text-align: justify;
  623. overflow: auto;
  624. }
  625. /* Common CSS screwdriver */
  626. .clear {
  627. clear: both;
  628. }
  629. /* For lazy images loading in picture wall.
  630. Using http://www.appelsiini.net/projects/lazyload
  631. */
  632. .lazyimage {
  633. display: none;
  634. }
  635. @media print {
  636. html {
  637. border: none;
  638. background: #fff !important;
  639. color: #000 !important;
  640. }
  641. body {
  642. font-size: 12pt;
  643. width: auto !important;
  644. margin: auto !important;
  645. }
  646. /* Minimum numer of lines to display when splitting a paragraph
  647. over two pages */
  648. p {
  649. orphans: 3;
  650. widows: 3;
  651. }
  652. a {
  653. color: #000 !important;
  654. text-decoration: none !important;
  655. }
  656. #pageheader, .paging, #linklist li form, #footer {
  657. display: none;
  658. }
  659. #linklist li {
  660. padding: 2 0 10 0;
  661. border-top: 2px solid #000;
  662. clear: both;
  663. }
  664. #linklist li.private {
  665. background-color: none;
  666. border-left: 0;
  667. }
  668. .linkdate {
  669. line-height: 2;
  670. }
  671. .linkurl {
  672. color: #000;
  673. }
  674. .linkdescription {
  675. font-size: 10pt;
  676. }
  677. .linktag {
  678. border: 1px solid black;
  679. font-style: italic;
  680. font-size: 8pt;
  681. }
  682. }
  683. @media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 854px) {
  684. /* A few fixes for mobile devices (far from perfect). */
  685. .nomobile {
  686. display: none;
  687. }
  688. #logo {
  689. display: none;
  690. }
  691. #pageheader a {
  692. padding: 5px;
  693. border-radius: 5px 5px 5px 5px;
  694. margin: 3px;
  695. }
  696. .searchform, .tagfilter {
  697. display: block !important;
  698. margin: 0px !important;
  699. padding: 0px !important;
  700. width: 100% !important;
  701. }
  702. .searchform input, .tagfilter input {
  703. margin: 0px !important;
  704. padding: 0px !important;
  705. display: inline !important;
  706. }
  707. .tagfilter input.bigbutton, .searchform input.bigbutton, .addform input.bigbutton {
  708. width: 30%;
  709. font-size: smaller;
  710. }
  711. #searchform_value {
  712. width: 70% !important;
  713. }
  714. #tagfilter_value {
  715. width: 70% !important;
  716. }
  717. div.qrcode {
  718. position: relative;
  719. float: left;
  720. top: -10px;
  721. left: 0px;
  722. }
  723. #paging_privatelinks {
  724. float: none;
  725. }
  726. #paging_linksperpage {
  727. float: none;
  728. margin-bottom: 10px;
  729. font-size: smaller;
  730. }
  731. #paging_older, #paging_newer, #paging_linksperpage a {
  732. border: 1px solid black;
  733. padding: 3px 5px 3px 5px;
  734. background-color: #666;
  735. color: #fff;
  736. border-radius: 5px 5px 5px 5px;
  737. }
  738. .thumbnail {
  739. float: none;
  740. height: auto;
  741. margin: 0px;
  742. text-align: center;
  743. }
  744. #cloudtag {
  745. padding: 0px;
  746. }
  747. div.dailyAbout {
  748. float: none;
  749. position: relative;
  750. width: 100%;
  751. clear: both;
  752. padding: 0px;
  753. top: 0px;
  754. left: 0px;
  755. }
  756. #daily_col1, #daily_col2, #daily_col3 {
  757. float: none;
  758. width: 100%;
  759. padding: 0px;
  760. }
  761. div.dailyTitle {
  762. font-size: 18pt;
  763. margin-top: 5px;
  764. padding: 0px;
  765. }
  766. div.dailyDate {
  767. font-size: 11pt;
  768. padding: 0px;
  769. display: block;
  770. }
  771. div.dailyEntryTitle {
  772. font-size: 16pt;
  773. font-weight: bold;
  774. }
  775. div.dailyEntryDescription {
  776. font-size: 10pt;
  777. }
  778. }
  779. /* Highlight search results */
  780. .highlight {
  781. background-color: #FFFF33;
  782. }