shaarli.css 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229
  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 .linklist-link:visited {
  465. color: #1b926c;
  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. }
  642. .page-form p {
  643. padding: 0 10px;
  644. margin: 0;
  645. }
  646. .page-form input[type="text"],
  647. .page-form input[type="password"],
  648. .page-form textarea {
  649. box-sizing: border-box;
  650. margin: 10px 0;
  651. padding: 5px 5px 3px 15px;
  652. height: 35px;
  653. width: 90%;
  654. background: #eeeeee;
  655. border: solid 1px #d8d8d8;
  656. border-radius: 2px;
  657. color: #252525;
  658. }
  659. .page-form textarea {
  660. min-height: 240px;
  661. padding: 15px 5px 3px 15px;
  662. resize: vertical;
  663. overflow-y: auto;
  664. word-wrap:break-word
  665. }
  666. /* because chrome */
  667. .page-form input[type="text"]::-webkit-input-placeholder,
  668. .page-form input[type="password"]::-webkit-input-placeholder {
  669. color: #777777;
  670. }
  671. .page-form input[type="submit"], .page-form a.button {
  672. margin: 15px 5px;
  673. height: 35px;
  674. line-height: 35px;
  675. width: 150px;
  676. background: #1b926c;
  677. color: #f5f5f5;
  678. border: none;
  679. box-shadow: 1px 1px 1px #ddd, -1px -1px 6px #ddd, -1px 1px 2px #ddd, 1px -1px 2px #ddd;
  680. font-size: 1.2em;
  681. text-decoration: none;
  682. vertical-align: center;
  683. font-weight: normal;
  684. display: inline-block;
  685. }
  686. .page-form .button.button-red {
  687. background: #ac2925;
  688. }
  689. .page-form .submit-buttons {
  690. margin-bottom: 10px;
  691. }
  692. @media screen and (min-width: 64em) {
  693. .page-form .submit-buttons {
  694. position: relative;
  695. }
  696. .page-form .submit-buttons .button.button-red {
  697. position: absolute;
  698. right: 5%;
  699. }
  700. }
  701. @media screen and (max-width: 64em) {
  702. .page-form .submit-buttons .button {
  703. display: block;
  704. margin: auto;
  705. }
  706. }
  707. .page-form select {
  708. color: #252525;
  709. }
  710. /**
  711. * PAGE FORM - LIGHT
  712. */
  713. .page-form-light div, .page-form-light p {
  714. text-align: center;
  715. }
  716. /**
  717. * PAGE FORM - COMPLETE
  718. */
  719. .page-form-complete {
  720. #background: #f5f5f5;
  721. }
  722. .page-form-complete div, .page-form-complete p {
  723. color: #252525;
  724. }
  725. .page-form-complete .form-label, .page-form-complete .form-input {
  726. position: relative;
  727. height: 60px;
  728. }
  729. .page-form-complete .form-label label,
  730. .page-form-complete .form-input input,
  731. .page-form-complete .form-input select.align,
  732. .page-form-complete .timezone {
  733. position: absolute;
  734. top: 50%;
  735. transform: translateY(-50%);
  736. }
  737. .page-form-complete .form-label label {
  738. text-align: right;
  739. right: 0;
  740. padding: 0 20px;
  741. }
  742. .page-form-complete .label-name {
  743. font-weight: bold;
  744. }
  745. .page-form-complete .label-desc {
  746. font-size: 0.8em;
  747. }
  748. .page-form-complete input[type="text"],
  749. .page-form-complete input[type="password"],
  750. .page-form-complete textarea {
  751. margin: 0;
  752. }
  753. .page-form section {
  754. margin: 10px 0 25px 0;
  755. }
  756. .page-form table {
  757. margin: auto;
  758. width: 90%;
  759. }
  760. .page-form table .order {
  761. text-decoration: none;
  762. color: #252525;
  763. }
  764. .page-form table, .page-form th, .page-form td {
  765. border-width: 1px 0;
  766. border-style: solid;
  767. border-color: #aaaaaa;
  768. }
  769. .page-form th, .page-form td {
  770. padding: 5px;
  771. }
  772. /* Awesomeplete fix */
  773. div.awesomplete {
  774. width: inherit;
  775. }
  776. div.awesomplete > input {
  777. display: inherit;
  778. }
  779. div.awesomplete > ul {
  780. z-index: 9999;
  781. }
  782. .page-form .awesomplete {
  783. width: 90%;
  784. }
  785. .page-form .awesomplete input {
  786. width: 100%;
  787. }
  788. .page-form div.awesomplete > ul {
  789. color: black;
  790. }
  791. form[name="linkform"].page-form {
  792. overflow: visible;
  793. }
  794. @media screen and (max-width: 64em) {
  795. .page-form-complete .form-label {
  796. height: inherit;
  797. }
  798. .page-form-complete .form-label label,
  799. .page-form-complete .form-input input,
  800. .page-form-complete .timezone {
  801. position: inherit;
  802. top: inherit;
  803. transform: translateY(0);
  804. }
  805. .page-form-complete .form-input input[type="checkbox"] {
  806. position: absolute;
  807. top: 50%;
  808. right: 50%;
  809. transform: translateY(-50%);
  810. }
  811. .page-form-complete .form-input {
  812. text-align: center;
  813. }
  814. .page-form-complete .form-label label {
  815. display: block;
  816. text-align: left;
  817. margin: 10px 0 0 0;
  818. }
  819. .timezone-continent:after {
  820. content:"\a\a";
  821. white-space: pre;
  822. }
  823. .page-form-complete .radio-buttons {
  824. text-align: left;
  825. padding: 5px 15px;
  826. }
  827. }
  828. /**
  829. * Page visitor (page form extended)
  830. */
  831. .page-visitor {
  832. color: #252525;
  833. }
  834. #page404 {
  835. color: #3f3f3f;
  836. }
  837. /**
  838. * LOGIN
  839. */
  840. #login-form .remember-me {
  841. margin: 5px 0;
  842. }
  843. /**
  844. * Search results
  845. */
  846. .search-result a {
  847. color: white;
  848. text-decoration: none;
  849. }
  850. .search-result .label-tag {
  851. border-color: white;
  852. }
  853. .search-result .label-tag .remove {
  854. border-left: white 1px solid;
  855. padding: 0 0 0 5px;
  856. margin: 0 0 0 5px;
  857. }
  858. .search-result .label-private {
  859. border: 1px solid white;
  860. }
  861. /**
  862. * TOOLS
  863. */
  864. .tools-item {
  865. margin: 10px 0;
  866. }
  867. .tools-item .pure-button:hover {
  868. background-image: none;
  869. background-color: #1b926c;
  870. color: #f5f5f5;
  871. }
  872. /**
  873. * PLUGIN ADMIN
  874. */
  875. #pluginform .mobile-row {
  876. font-size: 0.9em;
  877. }
  878. #pluginform .more {
  879. margin-top: 10px;
  880. }
  881. @media screen and (max-width: 64em) {
  882. #pluginform .main-row, #pluginform .main-row td {
  883. border-bottom-style: none;
  884. }
  885. #pluginform .mobile-row, #pluginform .mobile-row td {
  886. border-top-style: none;
  887. }
  888. }
  889. /**
  890. * IMPORT
  891. */
  892. #import-field {
  893. margin: 15px 0;
  894. }
  895. /**
  896. * TAG CLOUD
  897. */
  898. #cloudtag {
  899. padding: 10px;
  900. text-align: center;
  901. }
  902. #cloudtag, #cloudtag a {
  903. color: #000;
  904. text-decoration: none;
  905. }
  906. #cloudtag .count {
  907. color: #7f7f7f;
  908. }
  909. /**
  910. * Picture wall CSS
  911. */
  912. #picwall_container {
  913. margin: 0 10px 10px 10px;
  914. color: #252525;
  915. background-color: #f5f5f5;
  916. clear: both;
  917. }
  918. .picwall_pictureframe {
  919. margin: 2px;
  920. background-color: #f5f5f5;
  921. z-index: 5;
  922. position: relative;
  923. display: table-cell;
  924. vertical-align: middle;
  925. width: 90px;
  926. height: 90px;
  927. overflow: hidden;
  928. text-align: center;
  929. float: left;
  930. }
  931. .b-lazy {
  932. -webkit-transition: opacity 500ms ease-in-out;
  933. -moz-transition: opacity 500ms ease-in-out;
  934. -o-transition: opacity 500ms ease-in-out;
  935. transition: opacity 500ms ease-in-out;
  936. opacity: 0;
  937. }
  938. .b-lazy.b-loaded {
  939. opacity: 1;
  940. }
  941. .picwall_pictureframe img {
  942. max-width: 100%;
  943. height: auto;
  944. color: transparent;
  945. } /* Adapt the width of the image */
  946. .picwall_pictureframe a {
  947. text-decoration: none;
  948. }
  949. /* CSS to show title when hovering an image - no javascript required. */
  950. .picwall_pictureframe span.info {
  951. display: none;
  952. font-family: Arial, sans-serif;
  953. }
  954. .picwall_pictureframe:hover span.info {
  955. display: block;
  956. position: absolute;
  957. top: 0;
  958. left: 0;
  959. width: 90px;
  960. height: 90px;
  961. font-weight: bold;
  962. font-size: 9pt;
  963. color: #f5f5f5;
  964. text-align: left;
  965. background-color: rgba(0, 0, 0, 0.8);
  966. }
  967. /**
  968. * DAILY
  969. */
  970. .daily-desc {
  971. color: #7f7f7f;
  972. font-size: 0.8em;
  973. }
  974. .daily-about a {
  975. color: #343434;
  976. text-decoration: none;
  977. }
  978. .daily-about a:hover {
  979. color: #7f7f7f;
  980. }
  981. .daily-about h3:before, .daily-about h3:after {
  982. display: block;
  983. content:"";
  984. background: linear-gradient(to right, #d5d4d4, #252525, #d5d4d4);
  985. height: 1px;
  986. width: 90%;
  987. margin: 10px auto;
  988. }
  989. .daily-entry {
  990. padding: 0 10px;
  991. }
  992. .daily-entry .daily-entry-title:after {
  993. display: block;
  994. content:"";
  995. background: linear-gradient(to right, #fff, #515151, #fff);
  996. height: 1px;
  997. width: 70%;
  998. margin: 5px auto;
  999. }
  1000. .daily-entry .daily-entry-title {
  1001. margin: 10px 0 0 0;
  1002. }
  1003. .daily-entry .daily-entry-title a {
  1004. color: #000;
  1005. text-decoration: none;
  1006. }
  1007. .daily-entry .daily-entry-description {
  1008. padding: 5px 5px 0 5px;
  1009. font-size: 0.9em;
  1010. text-align: justify;
  1011. word-wrap: break-word;
  1012. }
  1013. .daily-entry .daily-entry-tags {
  1014. padding: 0 5px 5px 5px;
  1015. font-size: 0.8em;
  1016. }
  1017. .daily-entry-thumbnail {
  1018. float: left;
  1019. margin: 15px 5px 5px 15px;
  1020. }
  1021. .daily-entry-description a {
  1022. text-decoration: none;
  1023. color: #1b926c;
  1024. }
  1025. .daily-entry-description a:hover {
  1026. text-shadow: 1px 1px #ddd;
  1027. }
  1028. .daily-entry-description a:visited {
  1029. color: #20b988;
  1030. }
  1031. /*
  1032. * Fix empty bookmarklet name in Firefox
  1033. */
  1034. .pure-button {
  1035. -moz-user-select: auto;
  1036. }