shaarli.css 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287
  1. /**
  2. * General
  3. */
  4. body {
  5. background: #d0d0d0;
  6. }
  7. .strong {
  8. font-weight: bold;
  9. }
  10. .clear {
  11. clear: both;
  12. }
  13. .center {
  14. text-align: center;
  15. margin: auto;
  16. }
  17. .label {
  18. display: inline-block;
  19. padding: .25em .4em;
  20. font-size: 75%;
  21. font-weight: 700;
  22. line-height: 1;
  23. text-align: center;
  24. white-space: nowrap;
  25. vertical-align: baseline;
  26. border-radius: .25rem;
  27. }
  28. pre {
  29. max-width: 100%;
  30. }
  31. @font-face {
  32. font-family: 'Roboto';
  33. font-weight: 400;
  34. font-style: normal;
  35. src:
  36. local('Roboto'),
  37. local('Roboto-Regular'),
  38. url('../fonts/Roboto-Regular.woff2') format('woff2'),
  39. url('../fonts/Roboto-Regular.woff') format('woff');
  40. }
  41. @font-face {
  42. font-family: 'Roboto';
  43. font-weight: 700;
  44. font-style: normal;
  45. src:
  46. local('Roboto'),
  47. local('Roboto-Bold'),
  48. url('../fonts/Roboto-Bold.woff2') format('woff2'),
  49. url('../fonts/Roboto-Bold.woff') format('woff');
  50. }
  51. body, .pure-g [class*="pure-u"] {
  52. font-family: Roboto, Arial, sans-serif;
  53. }
  54. /**
  55. * Extends Pure grids responsive to hide items.
  56. * Use xx-0 to hide an item on xx screen.
  57. * Display it at any level with xx-visible.
  58. */
  59. .pure-u-0 { display: none !important; }
  60. @media screen and (min-width: 35.5em) {
  61. .pure-u-sm-0 { display: none !important; }
  62. .pure-u-sm-visible { display: inline-block !important; }
  63. }
  64. @media screen and (min-width: 48em) {
  65. .pure-u-md-0 { display: none !important; }
  66. .pure-u-md-visible { display: inline-block !important; }
  67. }
  68. @media screen and (min-width: 64em) {
  69. .pure-u-lg-0 { display: none !important; }
  70. .pure-u-lg-visible { display: inline-block !important; }
  71. }
  72. @media screen and (min-width: 80em) {
  73. .pure-u-xl-0 { display: none !important; }
  74. .pure-u-xl-visible { display: inline-block !important; }
  75. }
  76. /**
  77. * Make pure-extras alert closable.
  78. */
  79. .pure-alert-closable .fa-times {
  80. float: right;
  81. }
  82. .pure-alert-close {
  83. cursor: pointer;
  84. }
  85. .pure-alert-success {
  86. background-color: #1b926c;
  87. }
  88. .anchor:target {
  89. padding-top: 40px;
  90. }
  91. /**
  92. * MENU
  93. **/
  94. .shaarli-menu {
  95. position: fixed;
  96. top: 0;
  97. width: 100%;
  98. --height: 50px;
  99. background: #1b926c;
  100. -webkit-font-smoothing: antialiased;
  101. /* Hack to transition with auto height: http://stackoverflow.com/a/8331169/1484919 */
  102. max-height: 45px;
  103. transition: max-height 0.5s;
  104. overflow: hidden;
  105. z-index: 999;
  106. }
  107. /* Chrome bugfix: with 100% height, it only displays the first element. */
  108. .pure-menu-item {
  109. height: 45px;
  110. }
  111. .shaarli-menu.open {
  112. max-height: 500px;
  113. transition: max-height 0.75s;
  114. }
  115. .head-logo {
  116. float: left;
  117. margin: 0 5px 0 0;
  118. }
  119. .pure-menu-link,
  120. .pure-menu-link:visited,
  121. .pure-menu-selected .pure-menu-link,
  122. .pure-menu-selected .pure-menu-link:visited {
  123. padding: 0.8em 1em;
  124. color: #f5f5f5;
  125. }
  126. .pure-menu-link:hover, .pure-menu-link:focus,
  127. .pure-menu-selected .pure-menu-link:hover,
  128. .pure-menu-selected .pure-menu-link:focus {
  129. color: #fff;
  130. background: transparent;
  131. }
  132. .pure-menu-item:hover::after {
  133. margin: -4px auto 0 auto;
  134. display: block;
  135. content:"";
  136. background: #fff;
  137. height: 4px;
  138. width: 100%;
  139. }
  140. .menu-toggle {
  141. width: 34px;
  142. height: 45px;
  143. position: absolute;
  144. top: 5px;
  145. right: 0;
  146. display: none;
  147. }
  148. .menu-toggle .bar {
  149. background-color: #b0ddce;
  150. display: block;
  151. width: 20px;
  152. height: 2px;
  153. border-radius: 100px;
  154. position: absolute;
  155. top: 18px;
  156. right: 7px;
  157. transition: all 0.5s;
  158. }
  159. .menu-toggle .bar:first-child {
  160. transform: translateY(-6px);
  161. }
  162. .menu-toggle.x .bar {
  163. transform: rotate(45deg);
  164. }
  165. .menu-toggle.x .bar:first-child {
  166. transform: rotate(-45deg);
  167. }
  168. @media screen and (max-width: 64em) {
  169. .menu-toggle {
  170. display: block;
  171. }
  172. }
  173. .header-buttons {
  174. text-align: right;
  175. }
  176. .linkcount {
  177. color: #252525;
  178. font-size: 0.8em;
  179. }
  180. @media screen and (min-width: 64em) {
  181. .linkcount {
  182. position: absolute;
  183. right: 5px;
  184. }
  185. }
  186. #search, #search-linklist, #search-tagcloud {
  187. text-align: center;
  188. width: 100%;
  189. }
  190. #search input[type="text"], #search-linklist input[type="text"] {
  191. padding: 0 5px;
  192. height: 30px;
  193. width: 260px;
  194. background: #f5f5f5;
  195. border: medium none currentColor;
  196. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.078), 0 1px 1px rgba(0, 0, 0, 0.298) inset;
  197. border-radius: 2px;
  198. color: #252525;
  199. }
  200. /* because chrome */
  201. #search input[type="text"]::-webkit-input-placeholder,
  202. #search-linklist input[type="text"]::-webkit-input-placeholder {
  203. color: #777777;
  204. }
  205. #search button,
  206. #search-tagcloud button,
  207. #search-linklist button {
  208. background: transparent;
  209. border: none;
  210. }
  211. #search button {
  212. color: #f5f5f5;
  213. }
  214. #search-linklist button {
  215. color: #252525;
  216. }
  217. #search button:hover,
  218. #search-linklist button:hover {
  219. color: #fff;
  220. }
  221. #search-tagcloud button:hover {
  222. color: #d0d0d0;
  223. }
  224. #search-linklist {
  225. padding: 5px 0;
  226. }
  227. @media screen and (min-width: 64em) {
  228. #search .searchform,
  229. #search-linklist .searchform {
  230. margin-right: 25px;
  231. text-align: right;
  232. }
  233. #search .tagfilter,
  234. #search-linklist .tagfilter {
  235. margin-left: 25px;
  236. text-align: left;
  237. }
  238. }
  239. @media screen and (max-width: 64em) {
  240. #search, #search * {
  241. visibility: hidden;
  242. }
  243. }
  244. .subheader-form a.button {
  245. color: #f5f5f5;
  246. font-weight: bold;
  247. text-decoration: none;
  248. border: 2px solid #f5f5f5;
  249. border-radius: 5px;
  250. padding: 3px 10px;
  251. }
  252. .linklist-item-editbuttons .delete-checkbox {
  253. display: none;
  254. }
  255. #header-login-form input[type="text"], #header-login-form input[type="password"] {
  256. width: 200px;
  257. }
  258. /* because chrome */
  259. #header-login-form input[type="text"]::-webkit-input-placeholder,
  260. #header-login-form input[type="password"]::-webkit-input-placeholder {
  261. color: #777777;
  262. }
  263. .subheader-form {
  264. visibility: hidden;
  265. position: fixed;
  266. width: 100%;
  267. text-align: center;
  268. background: #1b926c;
  269. display: block;
  270. z-index: 999;
  271. height: 30px;
  272. padding: 5px 0;
  273. }
  274. @media screen and (min-width: 64em) {
  275. .subheader-form.open, .subheader-form.open * {
  276. visibility: visible;
  277. }
  278. }
  279. .subheader-form input[type="text"], .subheader-form input[type="password"], .subheader-form .remember-me {
  280. margin: 0 0 5px 0;
  281. padding: 5px 5px 3px 15px;
  282. height: 20px;
  283. width: 20%;
  284. background: #f5f5f5;
  285. border: medium none currentColor;
  286. border-radius: 2px;
  287. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.078), 0 1px 4px rgba(0, 0, 0, 0.298) inset;
  288. color: #252525;
  289. }
  290. /* because chrome */
  291. .subheader-form input[type="text"]::-webkit-input-placeholder,
  292. .subheader-form input[type="password"]::-webkit-input-placeholder
  293. {
  294. color: #252525;
  295. }
  296. .subheader-form .remember-me {
  297. display: inline-block;
  298. width: auto;
  299. padding: 5px 20px 3px 20px;
  300. cursor: pointer;
  301. }
  302. .subheader-form .remember-me label, .subheader-form .remember-me input {
  303. cursor: pointer;
  304. }
  305. .subheader-form input[type="submit"] {
  306. display: inline-block;
  307. margin: 0 0 5px 0;
  308. padding: 4px 0 4px 0;
  309. height: 28px;
  310. width: 100px;
  311. background: #1b926c;
  312. border: 1px solid #f5f5f5;
  313. color: #f5f5f5;
  314. border-radius: 2px;
  315. }
  316. .subheader-form input[type="submit"]:hover {
  317. background: #f5f5f5;
  318. color: #1b926c;
  319. }
  320. .new-version-message {
  321. text-align: center;
  322. }
  323. .new-version-message a {
  324. color: rgb(151, 96, 13);
  325. font-weight: bold;
  326. }
  327. /**
  328. * CONTENT - GENERAL
  329. */
  330. #content {
  331. position: relative;
  332. z-index: 2;
  333. margin-top: 45px;
  334. }
  335. /**
  336. * Plugins additional forms
  337. */
  338. .toolbar-plugin {
  339. margin: 5px 0;
  340. text-align: center;
  341. }
  342. .toolbar-plugin input[type="text"] {
  343. padding: 0 5px;
  344. height: 30px;
  345. width: 300px;
  346. background: #f5f5f5;
  347. border: medium none currentColor;
  348. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.078), 0 1px 1px rgba(0, 0, 0, 0.298) inset;
  349. border-radius: 2px;
  350. color: #252525;
  351. }
  352. /* because chrome */
  353. .toolbar-plugin input[type="text"]::-webkit-input-placeholder {
  354. color: #777777;
  355. }
  356. .toolbar-plugin input[type="submit"] {
  357. padding: 0 10px;
  358. height: 30px;
  359. background: #f5f5f5;
  360. border: medium none currentColor;
  361. border-radius: 2px;
  362. color: #252525;
  363. }
  364. .toolbar-plugin input[type="submit"]:hover {
  365. background: #fff;
  366. }
  367. @media screen and (max-width: 64em) {
  368. .toolbar-plugin input[type="text"] {
  369. width: 70%;
  370. }
  371. }
  372. /**
  373. * CONTENT - LINKLIST PAGING
  374. * 64em -> lg
  375. */
  376. .linklist-filters {
  377. margin: 10px 0;
  378. color: #252525;
  379. font-size: 0.9em;
  380. }
  381. .linklist-filters a {
  382. padding: 5px 8px;
  383. text-decoration: none;
  384. }
  385. .linklist-filters .filter-off {
  386. color: #252525;
  387. background: #f5f5f5;
  388. }
  389. .linklist-filters .filter-on {
  390. color: #b0ddce;
  391. background: #1b926c;
  392. }
  393. .linklist-pages {
  394. margin: 10px 0;
  395. color: #252525;
  396. text-align: center;
  397. }
  398. .linklist-pages a {
  399. color: #252525;
  400. text-decoration: none;
  401. }
  402. .linklist-pages a:hover {
  403. color: #fff;
  404. }
  405. .linksperpage {
  406. margin: 10px 0;
  407. text-align: right;
  408. color: #252525;
  409. font-size: 0.9em;
  410. }
  411. .linksperpage a {
  412. padding: 5px 5px;
  413. text-decoration: none;
  414. color: #252525;
  415. background: #f5f5f5;
  416. }
  417. .linksperpage a, .linksperpage input[type="text"] {
  418. display: inline-block;
  419. width: 20px;
  420. text-align: center;
  421. }
  422. .linksperpage form {
  423. display: inline;
  424. }
  425. .linksperpage input[type="text"] {
  426. height: 20px;
  427. margin: 0;
  428. padding: 4px 5px 3px 8px;
  429. background: #f5f5f5;
  430. border: medium none currentColor;
  431. color: #252525;
  432. font-size: 0.8em;
  433. }
  434. /**
  435. * CONTENT - LINKLIST ITEMS
  436. */
  437. .linklist-item {
  438. margin: 0 0 15px 0;
  439. background: #f5f5f5;
  440. box-shadow: 2px 2px 0.5em #797979;
  441. }
  442. .linklist-item-title, .linklist-item-title h2 {
  443. margin: 0;
  444. word-wrap: break-word;
  445. }
  446. .linklist-item-title {
  447. position: relative;
  448. background: #f5f5f5;
  449. }
  450. .linklist-item-title h2 {
  451. padding: 3px 10px 0 10px;
  452. line-height: 30px;
  453. }
  454. .linklist-item-title a {
  455. font-size: 0.7em;
  456. color: #252525;
  457. text-decoration: none;
  458. vertical-align: middle;
  459. }
  460. .linklist-item-title .linklist-link {
  461. font-size: 1.1em;
  462. color: #1b926c;
  463. }
  464. .linklist-item-title a:visited .linklist-link {
  465. color: #555555;
  466. }
  467. .linklist-item-title a:hover, .linklist-item-title .linklist-link:hover{
  468. color: #252525;
  469. }
  470. .linklist-item-title .label-private {
  471. border: solid 1px #F89406;
  472. font-family: Arial, sans-serif;
  473. font-size: 0.65em;
  474. color: #F89406;
  475. }
  476. .linklist-item-title .fold-button {
  477. display: none;
  478. }
  479. .linklist-item-editbuttons {
  480. float: right;
  481. padding: 8px 5px;
  482. }
  483. .linklist-item-editbuttons * {
  484. display: block;
  485. float: left;
  486. margin: 0 1px;
  487. }
  488. .linklist-item-editbuttons a {
  489. font-size: 1em;
  490. }
  491. .edit-link {
  492. font-size: 1.2em;
  493. color: #0b5ea6;
  494. }
  495. .delete-link {
  496. font-size: 1.3em;
  497. color: #ac2925 !important;
  498. }
  499. .linklist-item-description {
  500. position: relative;
  501. padding: 10px;
  502. word-wrap: break-word;
  503. color: #252525;
  504. line-height: 1.3em;
  505. }
  506. {
  507. position: absolute;
  508. left: 3px;
  509. top: 0;
  510. display: block;
  511. content:"";
  512. background: #F89406;
  513. height: 95%;
  514. width: 2px;
  515. z-index: 1;
  516. }
  517. .linklist-item-description a {
  518. text-decoration: none;
  519. color: #1b926c;
  520. }
  521. .linklist-item-description a:hover {
  522. color: #252525;
  523. }
  524. .linklist-item-description a:visited {
  525. color: #14553f;
  526. }
  527. .linklist-item-thumbnail {
  528. position: relative;
  529. margin-top: 10px;
  530. padding: 10px;
  531. float: left;
  532. z-index: 50;
  533. }
  534. .linklist-item.private .linklist-item-title::before,
  535. .linklist-item.private .linklist-item-description::before,
  536. .linklist-item.private .linklist-item-thumbnail::before {
  537. position: absolute;
  538. left: 3px;
  539. top: 0;
  540. display: block;
  541. content:"";
  542. background: #F89406;
  543. height: 95%;
  544. width: 2px;
  545. z-index: 1;
  546. }
  547. .linklist-item.private .linklist-item-title::before {
  548. margin-top: 3px;
  549. }
  550. .linklist-item-infos {
  551. padding: 8px 8px 5px 8px;
  552. background: #ddd;
  553. color: #252525;
  554. }
  555. .linklist-item-infos a {
  556. color: #252525;
  557. text-decoration: none;
  558. }
  559. .linklist-item-infos a:hover {
  560. color: #000;
  561. }
  562. .linklist-item-infos .linklist-item-tags {
  563. font-size: 0.8em;
  564. }
  565. .linklist-item-infos .label-tag {
  566. font-size: 1em;
  567. }
  568. .linklist-item-infos-dateblock {
  569. font-size: 0.9em;
  570. }
  571. .linklist-plugin-icon {
  572. width: 13px;
  573. height: 13px;
  574. }
  575. .linklist-item-infos-url {
  576. text-align: right;
  577. white-space: nowrap;
  578. overflow: hidden;
  579. text-overflow: ellipsis;
  580. font-size: 0.8em;
  581. }
  582. .linklist-item-infos .mobile-buttons {
  583. text-align: right;
  584. }
  585. .linklist-item-infos .linklist-plugin-icon {
  586. display: inline-block;
  587. margin: 0 2px;
  588. width: 16px;
  589. height: 16px;
  590. }
  591. /** 64em -> lg **/
  592. @media screen and (max-width: 64em) {
  593. .linklist-item-infos-url {
  594. text-align: left;
  595. }
  596. }
  597. /**
  598. * Footer
  599. */
  600. #footer {
  601. margin: 20px 0;
  602. padding: 5px;
  603. text-align: center;
  604. color: #252525;
  605. }
  606. #footer:before {
  607. display: block;
  608. content:"";
  609. background: linear-gradient(to right, #949393, #252525, #949393);
  610. height: 1px;
  611. width: 80%;
  612. margin: 10px auto;
  613. }
  614. #footer a {
  615. color: #252525;
  616. }
  617. /**
  618. * PAGE FORM
  619. */
  620. .page-form {
  621. margin: 20px 0 0 0;
  622. background: #f5f5f5;
  623. box-shadow: 1px 1px 2px #797979;
  624. color: #252525;
  625. overflow: hidden;
  626. }
  627. .page-form .window-title {
  628. margin: 0 0 10px 0;
  629. padding: 10px 0;
  630. width: 100%;
  631. color: #1b926c;
  632. background: #f5f5f5;
  633. text-align: center;
  634. }
  635. .page-form .window-subtitle {
  636. text-align: center;
  637. }
  638. .page-form a {
  639. color: #1b926c;
  640. font-weight: bold;
  641. text-decoration: none;
  642. }
  643. .page-form p {
  644. padding: 5px 10px;
  645. margin: 0;
  646. }
  647. .page-form input[type="text"],
  648. .page-form input[type="password"],
  649. .page-form textarea {
  650. box-sizing: border-box;
  651. margin: 10px 0;
  652. padding: 5px 5px 3px 15px;
  653. height: 35px;
  654. width: 90%;
  655. background: #eeeeee;
  656. border: solid 1px #d8d8d8;
  657. border-radius: 2px;
  658. color: #252525;
  659. }
  660. .page-form textarea {
  661. min-height: 240px;
  662. padding: 15px 5px 3px 15px;
  663. resize: vertical;
  664. overflow-y: auto;
  665. word-wrap:break-word
  666. }
  667. /* because chrome */
  668. .page-form input[type="text"]::-webkit-input-placeholder,
  669. .page-form input[type="password"]::-webkit-input-placeholder {
  670. color: #777777;
  671. }
  672. .page-form input[type="submit"], .page-form a.button {
  673. margin: 15px 5px;
  674. height: 35px;
  675. line-height: 35px;
  676. width: 150px;
  677. background: #1b926c;
  678. color: #f5f5f5;
  679. border: none;
  680. box-shadow: 1px 1px 1px #ddd, -1px -1px 6px #ddd, -1px 1px 2px #ddd, 1px -1px 2px #ddd;
  681. font-size: 1.2em;
  682. text-decoration: none;
  683. vertical-align: center;
  684. font-weight: normal;
  685. display: inline-block;
  686. }
  687. .page-form .button.button-red {
  688. background: #ac2925;
  689. }
  690. .page-form .submit-buttons {
  691. margin-bottom: 10px;
  692. }
  693. @media screen and (min-width: 64em) {
  694. .page-form .submit-buttons {
  695. position: relative;
  696. }
  697. .page-form .submit-buttons .button.button-red {
  698. position: absolute;
  699. right: 5%;
  700. }
  701. }
  702. @media screen and (max-width: 64em) {
  703. .page-form .submit-buttons .button {
  704. display: block;
  705. margin: auto;
  706. }
  707. }
  708. .page-form select {
  709. color: #252525;
  710. }
  711. /**
  712. * PAGE FORM - LIGHT
  713. */
  714. .page-form-light div, .page-form-light p {
  715. text-align: center;
  716. }
  717. /**
  718. * PAGE FORM - COMPLETE
  719. */
  720. .page-form-complete {
  721. #background: #f5f5f5;
  722. }
  723. .page-form-complete div, .page-form-complete p {
  724. color: #252525;
  725. }
  726. .page-form-complete .form-label, .page-form-complete .form-input {
  727. position: relative;
  728. height: 60px;
  729. }
  730. .page-form-complete .form-label label,
  731. .page-form-complete .form-input input,
  732. .page-form-complete .form-input select.align,
  733. .page-form-complete .timezone {
  734. position: absolute;
  735. top: 50%;
  736. transform: translateY(-50%);
  737. }
  738. .page-form-complete .form-label label {
  739. text-align: right;
  740. right: 0;
  741. padding: 0 20px;
  742. }
  743. .page-form-complete .label-name {
  744. font-weight: bold;
  745. }
  746. .page-form-complete .label-desc {
  747. font-size: 0.8em;
  748. }
  749. .page-form-complete input[type="text"],
  750. .page-form-complete input[type="password"],
  751. .page-form-complete textarea {
  752. margin: 0;
  753. }
  754. .page-form section {
  755. margin: 10px 0 25px 0;
  756. }
  757. .page-form table {
  758. margin: auto;
  759. width: 90%;
  760. }
  761. .page-form table .order {
  762. text-decoration: none;
  763. color: #252525;
  764. }
  765. .page-form table, .page-form th, .page-form td {
  766. border-width: 1px 0;
  767. border-style: solid;
  768. border-color: #aaaaaa;
  769. }
  770. .page-form th, .page-form td {
  771. padding: 5px;
  772. }
  773. /* Awesomeplete fix */
  774. div.awesomplete {
  775. width: inherit;
  776. }
  777. div.awesomplete > input {
  778. display: inherit;
  779. }
  780. div.awesomplete > ul {
  781. z-index: 9999;
  782. }
  783. .page-form .awesomplete {
  784. width: 90%;
  785. }
  786. .page-form .awesomplete input {
  787. width: 100%;
  788. }
  789. .page-form div.awesomplete > ul {
  790. color: black;
  791. }
  792. form[name="linkform"].page-form {
  793. overflow: visible;
  794. }
  795. @media screen and (max-width: 64em) {
  796. .page-form-complete .form-label {
  797. height: inherit;
  798. }
  799. .page-form-complete .form-label label,
  800. .page-form-complete .form-input input,
  801. .page-form-complete .timezone {
  802. position: inherit;
  803. top: inherit;
  804. transform: translateY(0);
  805. }
  806. .page-form-complete .form-input input[type="checkbox"] {
  807. position: absolute;
  808. top: 50%;
  809. right: 50%;
  810. transform: translateY(-50%);
  811. }
  812. .page-form-complete .form-input {
  813. text-align: center;
  814. }
  815. .page-form-complete .form-label label {
  816. display: block;
  817. text-align: left;
  818. margin: 10px 0 0 0;
  819. }
  820. .timezone-continent:after {
  821. content:"\a\a";
  822. white-space: pre;
  823. }
  824. .page-form-complete .radio-buttons {
  825. text-align: left;
  826. padding: 5px 15px;
  827. }
  828. }
  829. /**
  830. * Page visitor (page form extended)
  831. */
  832. .page-visitor {
  833. color: #252525;
  834. }
  835. #page404 {
  836. color: #3f3f3f;
  837. }
  838. /**
  839. * EDIT LINK
  840. */
  841. #editlinkform .created-date {
  842. color: #767676;
  843. margin-bottom: 10px;
  844. }
  845. /**
  846. * LOGIN
  847. */
  848. #login-form .remember-me {
  849. margin: 5px 0;
  850. }
  851. /**
  852. * Search results
  853. */
  854. .search-result a {
  855. color: white;
  856. text-decoration: none;
  857. }
  858. .search-result .label-tag {
  859. border-color: white;
  860. }
  861. .search-result .label-tag .remove {
  862. border-left: white 1px solid;
  863. padding: 0 0 0 5px;
  864. margin: 0 0 0 5px;
  865. }
  866. .search-result .label-private {
  867. border: 1px solid white;
  868. }
  869. /**
  870. * TOOLS
  871. */
  872. .tools-item {
  873. margin: 10px 0;
  874. }
  875. .tools-item .pure-button:hover {
  876. background-image: none;
  877. background-color: #1b926c;
  878. color: #f5f5f5;
  879. }
  880. /**
  881. * PLUGIN ADMIN
  882. */
  883. #pluginform .mobile-row {
  884. font-size: 0.9em;
  885. }
  886. #pluginform .more {
  887. margin-top: 10px;
  888. }
  889. @media screen and (max-width: 64em) {
  890. #pluginform .main-row, #pluginform .main-row td {
  891. border-bottom-style: none;
  892. }
  893. #pluginform .mobile-row, #pluginform .mobile-row td {
  894. border-top-style: none;
  895. }
  896. }
  897. /**
  898. * IMPORT
  899. */
  900. #import-field {
  901. margin: 15px 0;
  902. }
  903. /**
  904. * TAG CLOUD
  905. */
  906. #cloudtag {
  907. padding: 10px;
  908. text-align: center;
  909. }
  910. #cloudtag, #cloudtag a {
  911. color: #252525;
  912. text-decoration: none;
  913. }
  914. #cloudtag .count {
  915. color: #7f7f7f;
  916. }
  917. /**
  918. * TAG LIST
  919. */
  920. #taglist {
  921. padding: 0 10px;
  922. }
  923. #taglist a {
  924. color: #252525;
  925. text-decoration: none;
  926. }
  927. #taglist .count {
  928. display: inline-block;
  929. width: 35px;
  930. text-align: right;
  931. color: #7f7f7f;
  932. }
  933. #taglist .rename-tag-form {
  934. display: none;
  935. }
  936. #taglist .delete-tag {
  937. color: #ac2925;
  938. display: none;
  939. }
  940. #taglist .rename-tag {
  941. color: #0b5ea6;
  942. }
  943. #taglist .validate-rename-tag {
  944. color: #1b926c;
  945. }
  946. /**
  947. * Picture wall CSS
  948. */
  949. #picwall_container {
  950. margin: 0 10px 10px 10px;
  951. color: #252525;
  952. background-color: #f5f5f5;
  953. clear: both;
  954. }
  955. .picwall_pictureframe {
  956. margin: 2px;
  957. background-color: #f5f5f5;
  958. z-index: 5;
  959. position: relative;
  960. display: table-cell;
  961. vertical-align: middle;
  962. width: 90px;
  963. height: 90px;
  964. overflow: hidden;
  965. text-align: center;
  966. float: left;
  967. }
  968. .b-lazy {
  969. -webkit-transition: opacity 500ms ease-in-out;
  970. -moz-transition: opacity 500ms ease-in-out;
  971. -o-transition: opacity 500ms ease-in-out;
  972. transition: opacity 500ms ease-in-out;
  973. opacity: 0;
  974. }
  975. .b-lazy.b-loaded {
  976. opacity: 1;
  977. }
  978. .picwall_pictureframe img {
  979. max-width: 100%;
  980. height: auto;
  981. color: transparent;
  982. } /* Adapt the width of the image */
  983. .picwall_pictureframe a {
  984. text-decoration: none;
  985. }
  986. /* CSS to show title when hovering an image - no javascript required. */
  987. .picwall_pictureframe span.info {
  988. display: none;
  989. font-family: Arial, sans-serif;
  990. }
  991. .picwall_pictureframe:hover span.info {
  992. display: block;
  993. position: absolute;
  994. top: 0;
  995. left: 0;
  996. width: 90px;
  997. height: 90px;
  998. font-weight: bold;
  999. font-size: 9pt;
  1000. color: #f5f5f5;
  1001. text-align: left;
  1002. background-color: rgba(0, 0, 0, 0.8);
  1003. }
  1004. /**
  1005. * DAILY
  1006. */
  1007. .daily-desc {
  1008. color: #7f7f7f;
  1009. font-size: 0.8em;
  1010. }
  1011. .daily-about a {
  1012. color: #343434;
  1013. text-decoration: none;
  1014. }
  1015. .daily-about a:hover {
  1016. color: #7f7f7f;
  1017. }
  1018. .daily-about h3:before, .daily-about h3:after {
  1019. display: block;
  1020. content:"";
  1021. background: linear-gradient(to right, #d5d4d4, #252525, #d5d4d4);
  1022. height: 1px;
  1023. width: 90%;
  1024. margin: 10px auto;
  1025. }
  1026. .daily-entry {
  1027. padding: 0 10px;
  1028. }
  1029. .daily-entry .daily-entry-title:after {
  1030. display: block;
  1031. content:"";
  1032. background: linear-gradient(to right, #fff, #515151, #fff);
  1033. height: 1px;
  1034. width: 70%;
  1035. margin: 5px auto;
  1036. }
  1037. .daily-entry .daily-entry-title {
  1038. margin: 10px 0 0 0;
  1039. }
  1040. .daily-entry .daily-entry-title a {
  1041. color: #000;
  1042. text-decoration: none;
  1043. }
  1044. .daily-entry .daily-entry-description {
  1045. padding: 5px 5px 0 5px;
  1046. font-size: 0.9em;
  1047. text-align: justify;
  1048. word-wrap: break-word;
  1049. }
  1050. .daily-entry .daily-entry-tags {
  1051. padding: 0 5px 5px 5px;
  1052. font-size: 0.8em;
  1053. }
  1054. .daily-entry-thumbnail {
  1055. float: left;
  1056. margin: 15px 5px 5px 15px;
  1057. }
  1058. .daily-entry-description a {
  1059. text-decoration: none;
  1060. color: #1b926c;
  1061. }
  1062. .daily-entry-description a:hover {
  1063. text-shadow: 1px 1px #ddd;
  1064. }
  1065. .daily-entry-description a:visited {
  1066. color: #20b988;
  1067. }
  1068. /*
  1069. * Fix empty bookmarklet name in Firefox
  1070. */
  1071. .pure-button {
  1072. -moz-user-select: auto;
  1073. }
  1074. .tag-sort {
  1075. margin-top: 30px;
  1076. text-align: center;
  1077. }
  1078. .tag-sort a {
  1079. display: inline-block;
  1080. margin: 0 15px;
  1081. color: white;
  1082. text-decoration: none;
  1083. font-weight: bold;
  1084. }