shaarli.css 21 KB

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