]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/Resources/static/themes/baggy/css/main.css
Added creation date on entries view
[github/wallabag/wallabag.git] / app / Resources / static / themes / baggy / css / main.css
CommitLineData
19f2f11e
NL
1/* ==========================================================================
2 Sommaire
3
4 1 = Style Guide
5 2 = Layout
6 3 = Pictos
7 4 = Messages
8 5 = Article
9 6 = Media queries
371ac69a 10
19f2f11e
NL
11 ========================================================================== */
12
13html {
14 min-height: 100%;
15}
16
17body {
5ecdfcd0 18 background-color: #eee;
19f2f11e
NL
19}
20
21.login {
22 background-color: #333;
23}
24
25.login #main {
26 padding: 0;
27 margin: 0;
28}
29
30.login form {
5ecdfcd0 31 background-color: #fff;
19f2f11e 32 padding: 1.5em;
5ecdfcd0 33 box-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
19f2f11e
NL
34 width: 20em;
35 position: absolute;
36 top: 8em;
37 left: 50%;
38 margin-left: -10em;
39}
40
41.login .logo {
42 position: absolute;
43 top: 2em;
44 left: 50%;
371ac69a 45 margin-left: -55px;
19f2f11e
NL
46}
47
48/* ==========================================================================
49 1 = Style Guide
50 ========================================================================== */
51
371ac69a 52::selection {
5ecdfcd0 53 color: #fff;
19f2f11e 54 background-color: #000;
371ac69a 55}
19f2f11e
NL
56
57.desktopHide {
58 display: none;
59}
60
61.logo {
62 position: fixed;
63 z-index: 20;
64 top: 0.4em;
371ac69a 65 left: 0.6em;
19f2f11e
NL
66}
67
5ecdfcd0
TC
68h2,
69h3,
70h4 {
71 font-family: "PT Sans", sans-serif;
19f2f11e
NL
72 text-transform: uppercase;
73}
74
5ecdfcd0
TC
75p,
76li,
77label {
19f2f11e
NL
78 color: #666;
79}
80
81a {
82 color: #000;
83 font-weight: bold;
84}
85
5ecdfcd0 86a.nostyle {
1d4d9aaf 87 text-decoration: none;
5ecdfcd0
TC
88}
89
90a:hover,
91a:focus {
19f2f11e
NL
92 text-decoration: none;
93}
94
95form fieldset {
5ecdfcd0 96 border: 0;
19f2f11e
NL
97 padding: 0;
98 margin: 0;
99}
100
5ecdfcd0
TC
101form input[type="text"],
102form input[type="number"],
103select,
104form input[type="password"],
105form input[type="url"],
106form input[type="email"] {
19f2f11e
NL
107 border: 1px solid #999;
108 padding: 0.5em 1em;
109 min-width: 12em;
110 color: #666;
111}
112
5ecdfcd0
TC
113@media screen and (-webkit-min-device-pixel-ratio: 0) {
114 select {
19f2f11e
NL
115 -webkit-appearance: none;
116 border-radius: 0;
5ecdfcd0 117 background: #fff url("../../_global/img/bg-select.png") no-repeat right center;
19f2f11e
NL
118 }
119}
120
121.inline .row {
122 display: inline-block;
123 margin-right: 0.5em;
124}
125
126.inline label {
127 min-width: 6em;
128}
129
130fieldset label {
131 display: inline-block;
132 min-width: 12.5em;
133 color: #666;
134}
135
136label {
137 margin-right: 0.5em;
138}
139
140form .row {
141 margin-bottom: 0.5em;
142}
143
5ecdfcd0
TC
144form button,
145input[type="submit"] {
146 cursor: pointer;
19f2f11e 147 background-color: #000;
5ecdfcd0 148 color: #fff;
19f2f11e
NL
149 padding: 0.5em 1em;
150 display: inline-block;
5ecdfcd0 151 border: 1px solid #000;
19f2f11e
NL
152}
153
5ecdfcd0
TC
154form button:hover,
155form button:focus,
156input[type="submit"]:hover,
157input[type="submit"]:focus {
158 background-color: #fff;
159 color: #000;
160 -webkit-transition: all 0.5s ease;
161 -moz-transition: all 0.5s ease;
162 -ms-transition: all 0.5s ease;
163 -o-transition: all 0.5s ease;
164 transition: all 0.5s ease;
165}
19f2f11e
NL
166
167#bookmarklet {
168 cursor: move;
371ac69a 169}
19f2f11e 170
5ecdfcd0 171h2::after {
19f2f11e
NL
172 content: "";
173 height: 4px;
174 width: 70px;
175 background-color: #000;
176 display: block;
177}
178
179.links {
180 padding: 0;
181 margin: 0;
182}
19f2f11e 183
5ecdfcd0
TC
184.links li {
185 list-style: none;
186 margin: 0;
187 padding: 0;
188}
19f2f11e
NL
189
190#links {
191 position: fixed;
192 top: 0;
193 width: 10em;
194 left: 0;
195 text-align: right;
196 background-color: #333;
197 padding-top: 9.5em;
198 height: 100%;
5ecdfcd0 199 box-shadow: inset -4px 0 20px rgba(0, 0, 0, 0.6);
19f2f11e
NL
200 z-index: 15;
201}
202
203#main {
1d4d9aaf 204 margin-left: 12em;
19f2f11e
NL
205 position: relative;
206 z-index: 10;
207 padding-right: 5%;
208 padding-bottom: 1em;
209}
210
5ecdfcd0
TC
211#links > li > a {
212 display: block;
213 padding: 0.5em 2em 0.5em 1em;
214 color: #fff;
215 position: relative;
216 text-transform: uppercase;
217 text-decoration: none;
218 font-weight: normal;
219 font-family: "PT Sans", sans-serif;
220 -webkit-transition: all 0.5s ease;
221 -moz-transition: all 0.5s ease;
222 -ms-transition: all 0.5s ease;
223 -o-transition: all 0.5s ease;
224 transition: all 0.5s ease;
225}
19f2f11e 226
5ecdfcd0
TC
227#links > li > a:hover,
228#links > li > a:focus {
229 background-color: #999;
230 color: #000;
231}
19f2f11e 232
5ecdfcd0
TC
233#links .current::after {
234 content: "";
235 width: 0;
236 height: 0;
237 position: absolute;
238 border-style: solid;
239 border-width: 10px;
240 border-color: transparent #eee transparent transparent;
241 right: 0;
242 top: 50%;
243 margin-top: -10px;
244}
19f2f11e 245
5ecdfcd0
TC
246#links li:last-child {
247 position: fixed;
248 bottom: 1em;
249 width: 10em;
250}
19f2f11e 251
5ecdfcd0
TC
252#links li:last-child a::before {
253 font-size: 1.2em;
254 position: relative;
255 top: 2px;
256}
19f2f11e
NL
257
258#sort {
5ecdfcd0
TC
259 padding: 0;
260 list-style-type: none;
261 opacity: 0.5;
262 display: inline-block;
19f2f11e
NL
263}
264
265#sort li {
5ecdfcd0
TC
266 display: inline;
267 font-size: 0.9em;
19f2f11e
NL
268}
269
270#sort li + li {
5ecdfcd0 271 margin-left: 10px;
19f2f11e
NL
272}
273
274#sort a {
5ecdfcd0
TC
275 padding: 2px 2px 0;
276 vertical-align: middle;
19f2f11e
NL
277}
278
279#sort img {
5ecdfcd0 280 vertical-align: baseline;
19f2f11e 281}
5ecdfcd0 282
19f2f11e 283#sort img:hover {
5ecdfcd0 284 cursor: pointer;
19f2f11e
NL
285}
286
287#display-mode {
288 float: right;
19f2f11e
NL
289 margin-top: 10px;
290 margin-bottom: 10px;
291 opacity: 0.5;
292}
5ecdfcd0 293
19f2f11e
NL
294#listmode {
295 width: 16px;
296 display: inline-block;
297 text-decoration: none;
298}
5ecdfcd0 299
19f2f11e
NL
300#listmode a:hover {
301 opacity: 1;
302}
5ecdfcd0 303
19f2f11e
NL
304#listmode.tablemode {
305 background-image: url("../img/baggy/table.png");
306 background-repeat: no-repeat;
307 background-position: bottom;
308}
5ecdfcd0 309
19f2f11e
NL
310#listmode.listmode {
311 background-image: url("../img/baggy/list.png");
312 background-repeat: no-repeat;
313 background-position: bottom;
314}
315
5ecdfcd0
TC
316#warning_message {
317 position: fixed;
318 background-color: #ff6347;
319 z-index: 1000;
320 bottom: 0;
321 left: 0;
322 width: 100%;
323 color: #000;
324}
19f2f11e
NL
325
326/* ==========================================================================
327 2 = Layout
328 ========================================================================== */
371ac69a 329
19f2f11e 330#content {
56349e47 331 margin-top: 2em;
19f2f11e
NL
332 min-height: 30em;
333}
334
335footer {
336 text-align: right;
337 position: relative;
338 bottom: 0;
339 right: 5em;
340 color: #999;
341 font-size: 0.8em;
342 font-style: italic;
343 z-index: 20;
344}
345
346footer a {
347 color: #999;
348 font-weight: normal;
349}
350
351.list-entries {
5ecdfcd0 352 letter-spacing: -5px;
19f2f11e
NL
353}
354
26864574 355.listmode .entry {
5ecdfcd0
TC
356 width: 100% !important;
357 margin-left: 0 !important;
19f2f11e
NL
358}
359
1d4d9aaf
TC
360.card-entry-labels {
361 position: absolute;
362 top: 100px;
363 left: -1em;
364 z-index: 90;
365 max-width: 50%;
366 padding-left: 0;
367}
368
369.card-entry-labels li {
370 margin: 10px 10px 10px auto;
371 padding: 5px 12px 5px 25px;
372 background-color: rgba(0, 0, 0, 0.6);
373 border-radius: 0 3px 3px 0;
374 color: #fff;
375 cursor: default;
376 max-height: 2em;
377 overflow: hidden;
378 text-overflow: ellipsis;
379 white-space: nowrap;
380}
381
382.card-entry-tags {
383 max-height: 2em;
384 overflow-y: hidden;
385 padding: 0;
645c0d5b 386 margin: 0;
1d4d9aaf
TC
387}
388
645c0d5b
TC
389.card-entry-tags li,
390.card-entry-tags span {
1d4d9aaf
TC
391 display: inline-block;
392 margin: 0 5px;
393 padding: 5px 12px;
394 background-color: rgba(0, 0, 0, 0.6);
395 border-radius: 3px;
396 max-height: 2em;
397 overflow: hidden;
398 text-overflow: ellipsis;
645c0d5b
TC
399}
400
401.card-entry-tags a,
402.card-entry-labels a {
403 text-decoration: none;
404 font-weight: normal;
1d4d9aaf
TC
405 color: #fff;
406}
407
645c0d5b
TC
408.nav-panel-add-tag {
409 margin-top: 10px;
410}
411
19f2f11e
NL
412.list-entries + .results {
413 margin-bottom: 2em;
414}
415
1c282b1d
NL
416.reading-time,
417.created-at {
19f2f11e
NL
418 color: #999;
419 font-style: italic;
420 font-weight: normal;
421 font-size: 0.9em;
422}
423
424.estimatedTime small {
425 position: relative;
426 top: -1px;
427}
428
26864574 429.entry {
5ecdfcd0
TC
430 background-color: #fff;
431 letter-spacing: normal;
432 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
19f2f11e
NL
433 display: inline-block;
434 width: 32%;
435 margin-bottom: 1.5em;
436 vertical-align: top;
1d4d9aaf 437 margin-right: 1%;
19f2f11e
NL
438 position: relative;
439 overflow: hidden;
1d4d9aaf
TC
440 padding: 1.5em 1.5em 3em;
441 height: 440px;
19f2f11e
NL
442}
443
5ecdfcd0 444.entry::before {
19f2f11e
NL
445 content: "";
446 width: 0;
447 height: 0;
5ecdfcd0 448 border-style: solid;
1d4d9aaf 449 border-color: transparent transparent #000;
19f2f11e
NL
450 border-width: 10px;
451 position: absolute;
452 bottom: 0.3em;
453 z-index: 10;
454 right: 1.5em;
455 -webkit-transition: all 0.5s ease;
5ecdfcd0
TC
456 -moz-transition: all 0.5s ease;
457 -ms-transition: all 0.5s ease;
458 -o-transition: all 0.5s ease;
459 transition: all 0.5s ease;
19f2f11e
NL
460}
461
5ecdfcd0 462.entry::after {
19f2f11e
NL
463 content: "";
464 position: absolute;
465 height: 7px;
466 width: 100%;
467 bottom: 0;
468 left: 0;
469 background-color: #000;
470 -webkit-transition: all 0.5s ease;
5ecdfcd0
TC
471 -moz-transition: all 0.5s ease;
472 -ms-transition: all 0.5s ease;
473 -o-transition: all 0.5s ease;
474 transition: all 0.5s ease;
19f2f11e
NL
475}
476
26864574 477.entry:hover {
5ecdfcd0 478 box-shadow: 0 3px 10px rgba(0, 0, 0, 1);
19f2f11e
NL
479}
480
5ecdfcd0 481.entry:hover::after {
19f2f11e
NL
482 height: 40px;
483}
484
5ecdfcd0 485.entry:hover::before {
19f2f11e
NL
486 bottom: 2.4em;
487}
488
26864574 489.entry:hover h2 a {
19f2f11e
NL
490 color: #666;
491}
492
26864574 493.entry h2 {
19f2f11e
NL
494 text-transform: none;
495 margin-bottom: 0;
496 line-height: 1.2;
497}
498
5ecdfcd0
TC
499.entry h2::after {
500 content: none;
501}
19f2f11e 502
26864574 503.entry h2 a {
19f2f11e
NL
504 display: block;
505 text-decoration: none;
506 color: #000;
507 word-wrap: break-word;
508 -webkit-transition: all 0.5s ease;
5ecdfcd0
TC
509 -moz-transition: all 0.5s ease;
510 -ms-transition: all 0.5s ease;
511 -o-transition: all 0.5s ease;
512 transition: all 0.5s ease;
19f2f11e 513}
19f2f11e 514
b026d3b1 515img.preview {
1d4d9aaf
TC
516 max-width: calc(100% + 3em);
517 left: -1.5em;
518 position: relative;
b026d3b1
NL
519}
520
26864574 521.entry p {
19f2f11e
NL
522 color: #666;
523 font-size: 0.9em;
524 line-height: 1.7;
645c0d5b 525 margin-top: 5px;
19f2f11e
NL
526}
527
5ecdfcd0
TC
528.entry h2 a::first-letter {
529 text-transform: uppercase;
530}
19f2f11e 531
26864574 532.entry:hover .tools {
19f2f11e
NL
533 bottom: 0;
534}
535
26864574 536.entry .tools {
19f2f11e
NL
537 position: absolute;
538 bottom: -50px;
539 left: 0;
540 width: 100%;
541 z-index: 10;
542 padding-right: 0.5em;
543 text-align: right;
544 -webkit-transition: all 0.5s ease;
5ecdfcd0
TC
545 -moz-transition: all 0.5s ease;
546 -ms-transition: all 0.5s ease;
547 -o-transition: all 0.5s ease;
548 transition: all 0.5s ease;
19f2f11e
NL
549}
550
5ecdfcd0
TC
551.entry .tools a {
552 color: #666;
553 text-decoration: none;
554 display: block;
555 padding: 0.4em;
556}
19f2f11e 557
5ecdfcd0
TC
558.entry .tools a:hover {
559 color: #fff;
560}
19f2f11e 561
5ecdfcd0
TC
562.entry .tools li {
563 display: inline-block;
564}
19f2f11e 565
26864574 566.entry:nth-child(3n+1) {
19f2f11e
NL
567 margin-left: 0;
568}
569
570.results {
571 letter-spacing: -5px;
572 padding: 0 0 0.5em;
573}
574
575.results > * {
576 display: inline-block;
577 vertical-align: top;
578 letter-spacing: normal;
579 width: 50%;
5ecdfcd0 580 text-align: right;
19f2f11e
NL
581}
582
624a7c6d 583div.pagination ul {
19f2f11e 584 text-align: right;
19f2f11e
NL
585}
586
587.nb-results {
588 text-align: left;
589 font-style: italic;
590 color: #999;
591}
592
624a7c6d 593div.pagination ul > * {
19f2f11e
NL
594 display: inline-block;
595 margin-left: 0.5em;
596}
597
624a7c6d 598div.pagination ul a {
19f2f11e
NL
599 color: #999;
600 text-decoration: none;
601}
602
5ecdfcd0
TC
603div.pagination ul a:hover,
604div.pagination ul a:focus {
605 text-decoration: underline;
624a7c6d 606}
19f2f11e 607
5ecdfcd0
TC
608div.pagination ul .prev.disabled,
609div.pagination ul .next.disabled {
19f2f11e
NL
610 display: none;
611}
612
624a7c6d 613div.pagination ul .current {
9fb6ac83
FG
614 height: 25px;
615 padding: 4px 8px;
616 border: 1px solid #d5d5d5;
617 text-decoration: none;
618 font-weight: bold;
619 color: #000;
620 background-color: #ccc;
621}
622
19f2f11e
NL
623/* ==========================================================================
624 2.1 = "save a link" related styles
625 ========================================================================== */
626
627.popup-form {
5ecdfcd0 628 background: rgba(0, 0, 0, 0.5);
19f2f11e
NL
629 position: absolute;
630 top: 0;
631 left: 10em;
632 z-index: 20;
633 height: 100%;
634 width: 100%;
635 margin: 0;
b0b893ea 636 margin-top: -30% !important;
19f2f11e
NL
637 padding: 2em;
638 display: none;
5ecdfcd0 639 border-left: 1px #eee solid;
19f2f11e
NL
640}
641
5ecdfcd0
TC
642.popup-form form {
643 background-color: #fff;
0d3bafdf
JB
644 position: absolute;
645 top: 0;
646 left: 0;
647 z-index: 20;
648 border: 10px solid #000;
649 width: 400px;
650 height: 200px;
651 padding: 2em;
5ecdfcd0 652}
19f2f11e
NL
653
654#bagit-form-form .addurl {
5ecdfcd0 655 margin-left: 0;
19f2f11e
NL
656}
657
658.closeMessage,
659.close-button {
660 background-color: #000;
5ecdfcd0
TC
661 color: #fff;
662 font-size: 1.2em;
663 line-height: 1.6;
664 width: 1.6em;
665 height: 1.6em;
666 text-align: center;
19f2f11e
NL
667 text-decoration: none;
668}
5ecdfcd0
TC
669
670.closeMessage:hover,
671.closeMessage:focus,
672.close-button:hover,
673.close-button:focus {
0d3bafdf
JB
674 background-color: #999;
675 color: #000;
5ecdfcd0 676}
19f2f11e
NL
677
678.close-button--popup {
5ecdfcd0
TC
679 display: inline-block;
680 position: absolute;
681 top: 0;
682 right: 0;
683 font-size: 1.4em;
19f2f11e
NL
684}
685
686.active-current {
687 background-color: #999;
688}
689
5ecdfcd0 690.active-current::after {
19f2f11e
NL
691 content: "";
692 width: 0;
693 height: 0;
694 position: absolute;
695 border-style: solid;
696 border-width: 10px;
5ecdfcd0 697 border-color: transparent #eee transparent transparent;
19f2f11e
NL
698 right: 0;
699 top: 50%;
700 margin-top: -10px;
701}
702
703.opacity03 {
704 opacity: 0.3;
705}
706
707.add-to-wallabag-link-after {
708 background-color: #000;
709 color: #fff;
1d4d9aaf 710 padding: 0 3px 2px;
19f2f11e
NL
711}
712
713a.add-to-wallabag-link-after {
5ecdfcd0
TC
714 visibility: hidden;
715 position: absolute;
716 opacity: 0;
717 transition-duration: 2s;
718 transition-timing-function: ease-out;
19f2f11e
NL
719}
720
5ecdfcd0
TC
721#article article a:hover + a.add-to-wallabag-link-after,
722a.add-to-wallabag-link-after:hover {
723 opacity: 1;
724 visibility: visible;
725 transition-duration: 0.3s;
726 transition-timing-function: ease-in;
19f2f11e
NL
727}
728
5ecdfcd0
TC
729a.add-to-wallabag-link-after::after {
730 content: "w";
19f2f11e
NL
731}
732
733#add-link-result {
734 font-weight: bold;
735 font-size: 0.9em;
736}
737
5ecdfcd0 738.btn-clickable {
1d4d9aaf 739 cursor: pointer;
5ecdfcd0
TC
740}
741
19f2f11e
NL
742/* ==========================================================================
743 3 = Pictos
744 ========================================================================== */
371ac69a 745
19f2f11e 746@font-face {
5ecdfcd0 747 font-family: icomoon;
0471e905 748 src: url("../fonts/IcoMoon-Free.ttf");
19f2f11e
NL
749 font-weight: normal;
750 font-style: normal;
751}
752
5ecdfcd0
TC
753@font-face {
754 font-family: 'Material Icons';
755 font-style: normal;
756 font-weight: 400;
757 src: url(../fonts/MaterialIcons-Regular.eot);
1d4d9aaf 758
5ecdfcd0
TC
759 /* For IE6-8 */
760 src: local("Material Icons"), local("MaterialIcons-Regular"), url(../fonts/MaterialIcons-Regular.woff2) format("woff2"), url(../fonts/MaterialIcons-Regular.woff) format("woff"), url(../fonts/MaterialIcons-Regular.ttf) format("truetype");
761}
762
763.material-icons {
764 font-family: 'Material Icons';
765 font-weight: normal;
766 font-style: normal;
767 font-size: 1em; /* Preferred icon size */
768 width: 1em;
769 height: 1em;
770 display: inline-block;
771 line-height: 1;
772 text-transform: none;
773 letter-spacing: normal;
774 word-wrap: normal;
775 white-space: nowrap;
776 direction: ltr;
777
778 /* Support for all WebKit browsers. */
779 -webkit-font-smoothing: antialiased;
1d4d9aaf 780
5ecdfcd0
TC
781 /* Support for Safari and Chrome. */
782 text-rendering: optimizeLegibility;
783
784 /* Support for Firefox. */
785 -moz-osx-font-smoothing: grayscale;
786
787 /* Support for IE. */
788 font-feature-settings: 'liga';
789}
790
791.material-icons.md-18 { font-size: 18px; }
792.material-icons.md-24 { font-size: 24px; }
793.material-icons.md-36 { font-size: 36px; }
794.material-icons.md-48 { font-size: 48px; }
795
19f2f11e
NL
796.icon span,
797.icon-image span {
798 position: absolute;
799 top: -9999px;
800}
801
5ecdfcd0
TC
802[class^="icon-"]::before,
803[class*=" icon-"]::before {
804 font-family: icomoon;
19f2f11e
NL
805 speak: none;
806 font-style: normal;
807 font-weight: normal;
808 font-variant: normal;
809 text-transform: none;
810 line-height: 1;
811
a494c33e
TC
812 /* Enable Ligatures ================ */
813 letter-spacing: 0;
814 -webkit-font-feature-settings: "liga";
815 -moz-font-feature-settings: "liga=1";
816 -moz-font-feature-settings: "liga";
817 -ms-font-feature-settings: "liga" 1;
818 -o-font-feature-settings: "liga";
819 font-feature-settings: "liga";
820
19f2f11e
NL
821 /* Better Font Rendering =========== */
822 -webkit-font-smoothing: antialiased;
823 -moz-osx-font-smoothing: grayscale;
824}
825
5ecdfcd0
TC
826.icon-flattr::before {
827 content: "\ead4";
19f2f11e 828}
5ecdfcd0
TC
829
830.icon-mail::before {
831 content: "\ea86";
19f2f11e 832}
5ecdfcd0
TC
833
834.icon-up-open::before {
19f2f11e
NL
835 content: "\e80b";
836}
5ecdfcd0
TC
837
838.icon-star::before {
839 content: "\e9d9";
19f2f11e 840}
5ecdfcd0
TC
841
842.icon-check::before {
843 content: "\ea10";
19f2f11e 844}
5ecdfcd0
TC
845
846.icon-link::before {
847 content: "\e9cb";
19f2f11e 848}
5ecdfcd0
TC
849
850.icon-reply::before {
19f2f11e
NL
851 content: "\e806";
852}
5ecdfcd0
TC
853
854.icon-menu::before {
855 content: "\e9bd";
19f2f11e 856}
5ecdfcd0
TC
857
858.icon-clock::before {
19f2f11e
NL
859 content: "\e803";
860}
5ecdfcd0
TC
861
862.icon-twitter::before {
a494c33e 863 content: "\ea96";
19f2f11e 864}
5ecdfcd0
TC
865
866.icon-down-open::before {
19f2f11e
NL
867 content: "\e809";
868}
5ecdfcd0
TC
869
870.icon-trash::before {
871 content: "\e9ac";
19f2f11e 872}
5ecdfcd0
TC
873
874.icon-delete::before {
875 content: "\ea0d";
19f2f11e 876}
5ecdfcd0
TC
877
878.icon-power::before {
879 content: "\ea14";
19f2f11e 880}
5ecdfcd0
TC
881
882.icon-arrow-up-thick::before {
883 content: "\ea3a";
19f2f11e 884}
5ecdfcd0
TC
885
886.icon-rss::before {
19f2f11e
NL
887 content: "\e808";
888}
5ecdfcd0
TC
889
890.icon-print::before {
891 content: "\e954";
19f2f11e 892}
5ecdfcd0
TC
893
894.icon-reload::before {
0cf434c0
JB
895 content: "\ea2e";
896}
19f2f11e 897
5ecdfcd0
TC
898.icon-price-tags::before {
899 content: "\e936";
900}
19f2f11e 901
a494c33e
TC
902.icon-eye::before {
903 content: "\e9ce";
904}
905
906.icon-no-eye::before {
907 content: "\e9d1";
908}
909
910.icon-calendar::before {
911 content: "\e953";
912}
913
914.icon-time::before {
915 content: "\e952";
916}
917
19f2f11e 918/* .icon-image class, for image-based icons
0d3bafdf 919 ========================================================================== */
19f2f11e
NL
920
921.icon-image {
5ecdfcd0 922 background-size: 16px 16px;
9f7d154e
TC
923 background-repeat: no-repeat;
924 background-position: center;
5ecdfcd0
TC
925 padding-right: 1em !important;
926 padding-left: 1em !important;
19f2f11e
NL
927}
928
929/* Carrot (http://carrot.org) */
930.icon-image--carrot {
5ecdfcd0 931 background-image: url("../../_global/img/icons/carrot-icon--white.png");
19f2f11e
NL
932}
933
934/* Diaspora */
935.icon-image--diaspora {
5ecdfcd0 936 background-image: url("../../_global/img/icons/diaspora-icon--black.png");
a24c1ee3 937}
19f2f11e 938
9f3a1cd2 939/* shaarli */
a494c33e
TC
940.icon-image--shaarli {
941 background-image: url("../../_global/img/icons/shaarli.png");
942}
943
19f2f11e
NL
944/* ==========================================================================
945 Icon selected
946 ========================================================================== */
947
5ecdfcd0
TC
948.icon-star.fav::before {
949 color: #fff;
19f2f11e
NL
950}
951
5ecdfcd0
TC
952.icon-check.archive::before {
953 color: #fff;
19f2f11e
NL
954}
955
956/* ==========================================================================
957 4 = Messages
958 ========================================================================== */
959
960.messages {
961 text-align: left;
962 margin-top: 1em;
963}
964
5ecdfcd0
TC
965.messages > * {
966 display: inline-block;
967}
19f2f11e
NL
968
969.warning {
19f2f11e
NL
970 font-weight: bold;
971 display: block;
972 width: 100%;
973}
974
975.more-info {
5ecdfcd0 976 font-size: 0.85em;
19f2f11e 977 line-height: 1.5;
5ecdfcd0 978 color: #aaa;
19f2f11e
NL
979}
980
5ecdfcd0 981.more-info a {
0d3bafdf 982 color: #aaa;
5ecdfcd0 983}
19f2f11e
NL
984
985/* ==========================================================================
986 5 = Article
987 ========================================================================== */
988
989#article {
990 width: 70%;
991 margin-bottom: 3em;
992 text-align: justify;
993}
994
995#article .tags {
996 margin-bottom: 1em;
997}
998
999#article i {
1000 font-style: normal;
1001}
1002
1003blockquote {
5ecdfcd0
TC
1004 border: 1px solid #999;
1005 background-color: #fff;
19f2f11e
NL
1006 padding: 1em;
1007 margin: 0;
1008}
1009
1010#article h1 {
1011 text-align: left;
1012}
1013
5ecdfcd0
TC
1014#article h2,
1015#article h3,
1016#article h4 {
19f2f11e
NL
1017 text-transform: none;
1018}
1019
5ecdfcd0 1020#article h2::after {
19f2f11e
NL
1021 content: none;
1022}
1023
1024.topPosF {
1025 position: fixed;
1026 right: 20%;
1027 bottom: 2em;
1028 font-size: 1.5em;
1029}
1030
1031#article_toolbar {
1032 margin-bottom: 1em;
1033}
1034
1035#article_toolbar li {
1036 display: inline-block;
645c0d5b 1037 margin: 3px auto;
19f2f11e
NL
1038}
1039
1040#article_toolbar a {
1041 background-color: #000;
1042 padding: 0.3em 0.5em 0.2em;
5ecdfcd0 1043 color: #fff;
19f2f11e
NL
1044 text-decoration: none;
1045}
371ac69a 1046
5ecdfcd0
TC
1047#article_toolbar a:hover,
1048#article_toolbar a:focus {
56349e47
TC
1049 background-color: #999;
1050}
1051
1052#nav-btn-add-tag {
5ecdfcd0 1053 cursor: pointer;
56349e47 1054}
19f2f11e 1055
5ecdfcd0 1056.shaarli::before {
19f2f11e
NL
1057 content: "*";
1058}
1059
1060.return {
1061 text-decoration: none;
1062 margin-top: 1em;
1063 display: block;
1064}
1065
5ecdfcd0 1066.return::before {
19f2f11e
NL
1067 margin-right: 0.5em;
1068}
1069
1070.notags {
1071 font-style: italic;
1072 color: #999;
1073}
1074
1075.icon-rss {
1076 background-color: #000;
5ecdfcd0 1077 color: #fff;
19f2f11e
NL
1078 padding: 0.2em 0.5em;
1079}
1080
5ecdfcd0 1081.icon-rss::before {
19f2f11e
NL
1082 position: relative;
1083 top: 2px;
1084}
1085
1086.list-tags li {
1087 margin-bottom: 0.5em;
1088}
1089
5ecdfcd0
TC
1090.list-tags .icon-rss:hover,
1091.list-tags .icon-rss:focus {
1092 background-color: #fff;
19f2f11e
NL
1093 color: #000;
1094 text-decoration: none;
1095}
1096
1097.list-tags a {
1098 text-decoration: none;
1099}
1100
5ecdfcd0
TC
1101.list-tags a:hover,
1102.list-tags a:focus {
19f2f11e
NL
1103 text-decoration: underline;
1104}
1105
1106pre code {
0d3bafdf 1107 font-family: "Courier New", Courier, monospace;
19f2f11e
NL
1108}
1109
c146f694 1110#filters {
5def3f58 1111 position: fixed;
1a5f7e2d 1112 width: 20%;
5def3f58
JB
1113 height: 100%;
1114 top: 0;
1115 right: 0;
5ecdfcd0 1116 background-color: #fff;
5def3f58
JB
1117 padding: 15px;
1118 padding-right: 30px;
1119 padding-top: 30px;
0d3bafdf 1120 border-left: 1px #333 solid;
5def3f58 1121 z-index: 12;
5ecdfcd0 1122 min-width: 300px;
5def3f58
JB
1123}
1124
c146f694 1125#filters form .filter-group {
5def3f58 1126 margin: 5px;
d2fcbf5d
JB
1127}
1128
5ecdfcd0 1129#download-form {
1d4d9aaf
TC
1130 position: fixed;
1131 width: 10%;
1132 height: 100%;
1133 top: 0;
1134 right: 0;
1135 background-color: #fff;
1136 padding: 15px;
1137 padding-right: 30px;
1138 padding-top: 30px;
1139 border-left: 1px #333 solid;
1140 z-index: 12;
1141 min-width: 200px;
5ecdfcd0
TC
1142}
1143
1144#download-form li {
1d4d9aaf
TC
1145 display: block;
1146 padding: 0.5em 2em 0.5em 1em;
1147 color: #fff;
1148 position: relative;
1149 text-transform: uppercase;
1150 text-decoration: none;
1151 font-weight: 400;
1152 font-family: PT Sans, sans-serif;
1153 transition: all 0.5s ease;
5ecdfcd0 1154}
19f2f11e
NL
1155
1156/* ==========================================================================
1157 6 = Media Queries
1158 ========================================================================== */
1159
1160@media screen and (max-width: 1050px) {
26864574 1161 .entry {
19f2f11e
NL
1162 width: 49%;
1163 }
c146f694 1164
26864574 1165 .entry:nth-child(3n+1) {
19f2f11e
NL
1166 margin-left: 1.5%;
1167 }
c146f694 1168
26864574 1169 .entry:nth-child(2n+1) {
19f2f11e
NL
1170 margin-left: 0;
1171 }
1172}
1173
1174@media screen and (max-width: 900px) {
1175 #article {
1176 width: 80%;
1177 }
c146f694 1178
19f2f11e
NL
1179 .topPosF {
1180 right: 2.5em;
1181 }
1182}
1183
1184@media screen and (max-width: 700px) {
26864574 1185 .entry {
19f2f11e
NL
1186 width: 100%;
1187 margin-left: 0;
1188 }
c146f694 1189
19f2f11e
NL
1190 #display-mode {
1191 display: none;
1192 }
1193}
1194
d32e1c42
TC
1195@media screen and (max-height: 770px) {
1196 .menu.users,
1197 .menu.internal,
1198 .menu.developer {
1199 display: none;
1200 }
1201}
1202
19f2f11e 1203@media screen and (max-width: 500px) {
26864574 1204 .entry {
19f2f11e
NL
1205 width: 100%;
1206 margin-left: 0;
1207 }
5ecdfcd0 1208
19f2f11e
NL
1209 body > header {
1210 background-color: #333;
1211 position: fixed;
1212 top: 0;
1213 width: 100%;
1214 height: 3em;
1215 z-index: 11;
1216 }
5ecdfcd0 1217
19f2f11e
NL
1218 #links li:last-child {
1219 position: static;
1220 width: auto;
1221 }
5ecdfcd0
TC
1222
1223 #links li:last-child a::before {
19f2f11e
NL
1224 content: none;
1225 }
5ecdfcd0 1226
19f2f11e
NL
1227 .logo {
1228 width: 1.25em;
1229 height: 1.25em;
1230 left: 0;
1231 top: 0;
1232 }
5ecdfcd0 1233
19f2f11e
NL
1234 .login > header {
1235 position: static;
1236 }
5ecdfcd0 1237
19f2f11e
NL
1238 .login form {
1239 width: 100%;
1240 position: static;
1241 margin-left: 0;
1242 }
5ecdfcd0 1243
19f2f11e 1244 .login .logo {
19f2f11e
NL
1245 height: auto;
1246 top: 0.5em;
1247 width: 75px;
19f2f11e
NL
1248 margin-left: -37.5px;
1249 }
5ecdfcd0 1250
19f2f11e
NL
1251 .desktopHide {
1252 display: block;
1253 position: fixed;
1254 z-index: 20;
1255 top: 0;
1256 right: 0;
5ecdfcd0 1257 border: 0;
19f2f11e
NL
1258 width: 2.5em;
1259 height: 2.5em;
1260 cursor: pointer;
1261 background-color: #999;
1262 font-size: 1.2em;
1263 }
c146f694 1264
5ecdfcd0
TC
1265 .desktopHide:hover,
1266 .desktopHide:focus {
1267 background-color: #fff;
1268 }
1269
19f2f11e
NL
1270 #links {
1271 display: none;
1272 width: 100%;
1273 height: auto;
1274 padding-top: 3em;
1275 }
5ecdfcd0 1276
19f2f11e
NL
1277 #links.menu--open {
1278 display: block;
1279 }
5ecdfcd0
TC
1280
1281 footer {
19f2f11e
NL
1282 position: static;
1283 margin-right: 3em;
1284 }
5ecdfcd0 1285
19f2f11e
NL
1286 #main {
1287 margin-left: 1.5em;
1288 padding-right: 1.5em;
1289 position: static;
1290 margin-top: 3em;
1291 }
5ecdfcd0 1292
1d4d9aaf
TC
1293 .card-entry-labels {
1294 display: none;
1295 }
1296
19f2f11e
NL
1297 #article_toolbar .topPosF {
1298 display: none;
1299 }
1300
1301 #article {
1302 width: 100%;
1303 }
1304
1305 #article h1 {
1306 font-size: 1.5em;
1307 }
5ecdfcd0 1308
19f2f11e
NL
1309 #article_toolbar a {
1310 padding: 0.3em 0.4em 0.2em;
1311 }
371ac69a 1312
19f2f11e
NL
1313 #display-mode {
1314 display: none;
1315 }
1316
5ecdfcd0
TC
1317 .popup-form,
1318 #bagit-form,
1319 #search-form {
19f2f11e
NL
1320 left: 0;
1321 width: 100%;
1322 border-left: none;
1323 }
1324
1325 .popup-form form,
1326 #bagit-form form,
1327 #search-form form {
1328 width: 100%;
1329 }
1330}