shaarli.css 20 KB

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