shaarli.css 20 KB

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