shaarli.css 20 KB

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