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