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