styling social links with colors
[gitweb-theme-danix.git] / gitweb-danixland / gitweb.css
CommitLineData
a6a0a341 1/* Fonts
2------------------------------------------------------------------------- */
3@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,400;0,600;1,400;1,600&family=Red+Hat+Mono&display=swap');
4
f17ef185 5/* Reset
6------------------------------------------------------------------------- */
7
8/* Based on http://meyerweb.com/eric/tools/css/reset/ */
9/* v1.0 | 20080212 */
10
11html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
12blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
13font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b,
14u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table,
15caption, tbody, tfoot, thead, tr, th, td {
16 margin: 0;
17 padding: 0;
18 border: 0;
19 outline: 0;
20 font-size: 100%;
21 vertical-align: baseline;
22 background: transparent;
23}
24
25ol, ul { list-style: none; }
26
27blockquote, q { quotes: none; }
28
29blockquote:before, blockquote:after,
30q:before, q:after {
31 content: '';
32 content: none;
33}
34
35:focus { outline: 0; }
36
37ins { text-decoration: none; }
38
39del { text-decoration: line-through; }
40
41table {
42 border-collapse: collapse;
43 border-spacing: 0;
44}
45
46a { outline: none; }
47
b2b72247 48/* Colors
49------------------------------------------------------------------------- */
50:root {
51 --bg: #D8D9CF;
acb5821a 52 --bg-alt: #F0EEED;
b2b72247 53 --fg: #393E46;
3020319e 54 --link: #FF8B13;
55 --link-visited: #e7b788;
05bbea0e 56 --border: 34,40,49,0.035;
d5af761b 57 --accent: #FD7014;
f5db486f 58/* Icons */
d904bd06 59 --file-icon: url("file-dark.svg");
60 --dir-icon: url("folder-dark.svg");
61 --ref-icon: url("commit-dark.svg");
62 --tag-icon: url("tag-dark.svg");
63 --branch-icon: url("merge-dark.svg");
9406f526 64 --rss-icon:url("rss-dark.svg");
65 --opml-icon:url("opml-dark.svg");
f5db486f 66/* social colors */
67 --twitter: #1DA1F2;
68 --instagram: #E4405F;
69 --spotify: ##1ed760;
70 --github: #6e5494;
b2b72247 71}
72@media screen and (prefers-color-scheme: dark) {
1bc0e66a 73 :root {
74 --bg: #393E46;
acb5821a 75 --bg-alt: #222831;
1bc0e66a 76 --fg: #D8D9CF;
05bbea0e 77 --border: 216,217,207,0.2;
a8dc308a 78 --file-icon: url("file.svg");
79 --dir-icon: url("folder.svg");
80 --ref-icon: url("commit.svg");
81 --tag-icon: url("tag.svg");
82 --branch-icon: url("merge.svg");
9406f526 83 --rss-icon:url("rss.svg");
84 --opml-icon:url("opml.svg");
1bc0e66a 85 }
b2b72247 86}
87
f17ef185 88
a6a0a341 89/* General
f17ef185 90---------------------------------------------------------------------------- */
91
92html {
93 position: relative;
94 min-height: 100%;
95}
96
97body {
a6a0a341 98 font: 13px 'Montserrat',Helvetica,arial,freesans,clean,sans-serif;
f17ef185 99 line-height: 1.4;
100 margin: 0 0 105px;
b2b72247 101 background-color: var(--bg);
102 color: var(--fg);
f17ef185 103}
104
105/* Monospaced Fonts */
106.sha1, .mode, .diff_tree .list, .pre, .diff, .patchset {
a6a0a341 107 font-family: 'Red Hat Mono','Consolas','Bitstream Vera Sans Mono',monospace;
f17ef185 108}
109
110a:link, a:visited {
f17ef185 111 text-decoration: none;
112}
113
3020319e 114a:link {
115 color: var(--link);
116}
117
118a:visited {
119 color: var(--link-visited);
120}
121
f17ef185 122a:hover {
123 text-decoration: underline;
124}
125
126td.list a[href*='tree'], td.list a[href*='blob'] {
d904bd06 127 padding-left: 40px;
f17ef185 128 display: block;
129 float: left;
9325b442 130 height: 32px;
131 line-height: 32px;
f17ef185 132}
133
3020319e 134/* Folder Icon */
423a1cf3 135td.list a[href*='tree'] {
136 background: var(--dir-icon) center left no-repeat;
f17ef185 137}
138
3020319e 139/* File Icon */
f17ef185 140td.list a[href*='blob'] {
423a1cf3 141 background: var(--file-icon) center left no-repeat;
f17ef185 142}
143
144i {
145 font-style: normal;
146}
147
148td, th {
149 padding: 5px;
150}
151
152.page_nav br {
153 display: none;
154}
155
156#generating_info {
157 font-size: 10px;
d9ae720e 158 color: var(--fg);
f17ef185 159 text-align: center;
160}
161
162#generating_time, #generating_cmd {
163 font-weight: bold;
164}
165
166/* Page Header
167---------------------------------------------------------------------------- */
168
169.page_header {
170 height: 50px;
171 line-height: 50px;
172 position: relative;
173 padding: 0 27px;
174 margin-bottom: 20px;
175 font-size: 20px;
9406f526 176 font-family: 'Montserrat', Helvetica, Arial, Freesans, Clean, sans-serif;
acb5821a 177 background: var(--bg); /* old browsers */
178 background: -moz-linear-gradient(top, var(--bg) 0%, var(--bg-alt) 100%); /* firefox */
179 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,var(--bg)), color-stop(100%,var(--bg-alt))); /* webkit */
180 background: -o-linear-gradient(top, var(--bg) 0%, var(--bg-alt) 100%);
05bbea0e 181 border-bottom: 1px solid rgba(var(--border));
f17ef185 182}
183
184.page_header a:link, .page_header a:visited {
5ddc14e1 185 color: var(--link);
f17ef185 186 text-decoration: none;
187 padding: 3px;
188 font-weight: bold;
189}
190
191.page_header a:hover {
192 font-weight: bold;
193 padding: 3px;
194 text-decoration: underline;
195}
196
197.page_header a:first-child {
198 background: transparent;
199}
200
201.page_header img.logo {
202 position: relative;
203 top: 7px;
204 margin-right: 5px;
205}
206
207/* Page Footer
208---------------------------------------------------------------------------- */
209
fdd09006 210.page_footer,
211.site-footer {
f17ef185 212 width: 100%;
c63d74b2 213 background: var(--bg-alt);
79480124 214 margin: 0;
f17ef185 215}
216
fdd09006 217.page_footer {
27ee5f03 218 height: 40px;
fdd09006 219 position: absolute;
220 left: 0;
221 bottom: 0;
27ee5f03 222 line-height: 40px;
7f75d732 223 border-top: 2px solid var(--border);
224 border-bottom: 1px solid var(--border);
fdd09006 225}
226
f17ef185 227.page_footer_text {
5ddc14e1 228 color: var(--fg);
27ee5f03 229 text-align: right;
3bacc307 230 padding-right: 2em;
f17ef185 231 display: inline;
fdd09006 232 float: right;
27ee5f03 233 width: calc(100% - 2em);
f17ef185 234 overflow: hidden;
235 white-space: nowrap;
236 text-overflow: ellipsis;
237}
238
27ee5f03 239.site-footer {
3bacc307 240 display: flex;
241 flex-direction: row;
242 flex-wrap: nowrap;
243 justify-content: space-around;
244 align-items: stretch;
245 align-content: stretch;
27ee5f03 246}
247
3bacc307 248.site-footer .columns {
249 width: 30%;
250 display: block;
251 flex-grow: 0;
252 flex-shrink: 1;
253 flex-basis: auto;
254 align-self: auto;
255 order: 0;
256}
79480124 257
258.social-links ul li {
259 display: inline-block;
260 margin: 1em;
261 padding: 0.5em;
262 background-color: var(--fg);
263 color: var(--bg);
264}
265
f5db486f 266.social-links ul li.spotify a {
267 color: var(--spotify);
268}
269.social-links ul li.twitter a {
270 color: var(--twitter);
271}
272.social-links ul li.instagram a {
273 color: var(--instagram);
274}
275.social-links ul li.github a {
276 color: var(--github);
277}
278
f17ef185 279a.rss_logo {
29e3a25d 280 border: 0;
281 clip: rect(1px, 1px, 1px, 1px);
282 clip-path: inset(100%);
283 height: 1px;
284 overflow: hidden;
285 padding: 0;
286 position: absolute;
287 white-space: nowrap;
288 width: 1px;
f17ef185 289}
290
f17ef185 291
292/* Index include
293---------------------------------------------------------------------------- */
294
295.index_include {
296 width: 95%;
297 margin: 0 auto 15px;
5ddc14e1 298 background: -moz-linear-gradient(center top , var(--bg) 0%, var(--bg-alt) 100%) repeat scroll 0 0 transparent;
299 border: 1px solid var(--border);
f17ef185 300 padding: 8px;
301 -webkit-box-sizing: border-box;
302 -moz-box-sizing: border-box;
303 box-sizing: border-box;
304}
305
306/* Elements
307---------------------------------------------------------------------------- */
308
309.project_list,
310.shortlog,
311.tree,
312.commit_search,
313.history {
314 width: 95%;
315 margin: 0 auto 15px auto;
d1808a6c 316 border: 1px solid var(--border);
f17ef185 317 -moz-box-shadow: 0 0 3px rgba(0,0,0,0.2);
318 -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.2);
319 box-shadow: 0 0 3px rgba(0,0,0,0.2);
320}
321
322.project_list th,
323.shortlog th,
324.tree th,
325.commit_search th {
326 color: #afafaf;
327 font-weight: normal;
328}
329
330.project_list th {
331 font-weight: bold;
332}
333
334.project_list tr,
335.shortlog tr,
336.tree tr,
337.commit_search tr {
338 background: #eaeaea;
339 height: 2.5em;
340 text-align: left;
341 color: #545454;
342}
343
344.project_list tr.dark, .project_list tr.light,
345.shortlog tr.dark, .shortlog tr.light,
346.tree tr.dark, .tree tr.light,
347.commit_search tr.dark, .commit_search tr.light,
348.history tr.dark, .history tr.light,
349.heads tr.dark, .heads tr.light {
350 background: #F9F9F9; /* old browsers */
351 background: -moz-linear-gradient(top, #F9F9F9 0%, #EFEFEF 100%); /* firefox */
352 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F9F9F9), color-stop(100%,#EFEFEF)); /* webkit */
353 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F9F9F9', endColorstr='#EFEFEF',GradientType=0 ); /* ie */
354 background: -o-linear-gradient(top, #F9F9F9 0%, #EFEFEF 100%);
355 height: 2.5em;
356 border-bottom: 1px solid #e1e1e1;
357}
358
359th .header {
360 background: transparent;
361 border: 0;
362 padding: 0;
363 font-weight: bold;
364}
365
366.tree {
367 width: 100%;
368 margin: 0;
369}
370
371.projsearch {
372 position: absolute;
373 right: 4%;
374 top: 15px;
375}
376
377.projsearch a {
378 display: none;
379}
380
381.commit_search {
382 background: #eaeaea;
383}
384
385.page_nav,
386.list_head,
387.page_path,
388.search {
389 width: 94%;
390 background: #eaeaea;
391 color: #545454;
392 border: 1px solid #d8d8d8;
393 padding: 5px;
394 margin: 0 auto 15px auto;
395}
396
397.history {
398 background: #eaeaea;
399}
400
401.title {
402 margin: 0 auto 15px auto;
403 padding: 5px;
404 width: 95%;
405}
406
407.readme {
408 background: #eaf2f5;
409 border: 1px solid #bedce7;
410 -moz-box-sizing: border-box;
411 -webkit-box-sizing: border-box;
412 box-sizing: border-box;
413 margin: 0 auto 15px auto;
414 padding: 15px;
415 width: 95%;
416}
417
418.readme h1 {
419 display: block;
420 font-size: 2em;
421 font-weight: bold;
422 margin-bottom: 0.67em;
423 margin-top: 0;
424}
425
426.readme h2 {
427 font-size: 1.5em;
428 font-weight: bold;
429 margin-bottom: 0.83em;
430}
431
432
433.readme h3 {
434 font-size: 1.17em;
435 font-weight: bold;
436 margin-bottom: 1em;
437}
438
439.readme p {
440 margin-bottom: 1em;
441}
442
443.readme ul {
444 list-style: disc;
445 margin-bottom: 1em;
446 margin-left: 1.5em;
447}
448
449.readme ul ul {
450 margin-bottom: 0;
451}
452
453.readme ol {
454 list-style: decimal;
455 margin-bottom: 1em;
456 margin-left: 1.5em;
457}
458
459.readme ol ol {
460 margin-bottom: 0;
461}
462
463.readme pre {
9406f526 464 font-family: 'Red Hat Mono', monospace;
f17ef185 465 margin: 1em 0;
466 white-space: pre;
467}
468
469.readme tt, .readme code, .readme kbd, .readme samp {
9406f526 470 font-family: 'Red Hat Mono', monospace;
f17ef185 471}
472
473.readme blockquote {
474 margin: 1em;
475}
476
477.projects_list,
478.tags {
479 width: 95%;
480 background: #f0f0f0;
481 color: #545454;
482 border: 1px solid #d8d8d8;
483 padding: 5px;
484 margin: 0 auto 15px auto;
485}
486
487.heads {
488 width: 95%;
489 color: #545454;
490 border: 1px solid #d8d8d8;
491 padding: 5px;
492 margin: 0 auto 15px auto;
493}
494
495.header {
496 width: 94%;
497 margin: 0 auto 15px auto;
498 background: #eaf2f5;
499 border: 1px solid #bedce7;
500 padding: 5px;
501}
502
503.header .age {
504 float: left;
505 color: #000;
506 font-weight: bold;
507 width: 10em;
508}
509
510.title_text {
511 width: 94%;
512 background: #eaf2f5;
513 border: 1px solid #bedce7;
514 padding: 5px;
515 margin: 0 auto 0 auto;
516}
517
518.log_body {
519 width: 94%;
520 background: #eaf2f5;
521 border: 1px solid #bedce7;
522 border-top: 0;
523 padding: 5px;
524 margin: 0 auto 15px auto;
525}
526
527.page_body {
528 line-height: 1.4em;
529 width: 94%;
530 background: #f8f8f8;
531 border: 1px solid #d8d8d8;
532 padding: 5px;
533 margin: 15px auto 15px auto;
534}
535
536.diff_tree {
537 width: 95%;
538 background: #f0f0f0;
539 border: 1px solid #d8d8d8;
540 padding: 5px;
541 margin: 0 auto 15px auto;
542}
543
544.page_body > .list_head {
545 width: 98.5%;
546}
547
548.page_body > .diff_tree {
549 width: 99.5%;
550}
551
552.patch > .header {
553 width: 99%;
554}
555
556.author .avatar,
557.author_date .avatar {
558 position: relative;
559 top: 3px;
560}
561
562.object_header .avatar {
563 border: 1px solid #D8D8D8;
564 float: right;
565}
566
567.object_header td,
568.object_header th {
569 vertical-align: top;
570}
571
572/* Refs
573---------------------------------------------------------------------------- */
574
575span.refs span {
576 color: #707070;
577 display: inline-block;
578 margin: 0;
d9ae720e 579 background-color: var(--bg);
580 border: 1px solid var(--border);
f17ef185 581 border-radius: 3px;
582 height: 18px;
583 padding: 0 6px;
584 text-overflow: ellipsis;
585}
586
587span.refs span.ref {
588 color: #707070;
589 display: inline-block;
590 margin: 0;
d9ae720e 591 background-color: var(--bg-alt);
592 border: 1px solid var(--link);
f17ef185 593 border-radius: 3px;
594 height: 18px;
595 padding: 0 6px;
596 text-overflow: ellipsis;
12b03037 597/* Node vertical */
598 background-image: var(--ref-icon);
f17ef185 599 background-repeat: no-repeat;
600 padding-left: 18px;
601}
602
603span.refs span.tag {
604 color: #707070;
605 display: inline-block;
606 margin: 0;
607 background-color: #ffffab;
608 border: 1px solid #d9d93b;
609 border-radius: 3px;
610 height: 18px;
611 padding: 0 6px;
612 text-overflow: ellipsis;
12b03037 613/* tag icon */
614 background-image: var(--tag-icon);
f17ef185 615 background-repeat: no-repeat;
616 padding-left: 18px;
617}
618
619span.refs span.head {
620 color: #707070;
621 display: inline-block;
622 margin: 0;
623 background-color: #c4ffc4;
624 border: 1px solid #78ff78;
625 border-radius: 3px;
626 height: 18px;
627 padding: 0 6px;
628 text-overflow: ellipsis;
12b03037 629/* git branch */
630 background-image: var(--branch-icon);
f17ef185 631 background-repeat: no-repeat;
632 padding-left: 18px;
633}
634
635span.refs a {
636 color: #4e4e4e;
637 font: 11px "Bitstream Vera Sans Mono", "DejaVu Sans Mono", Monaco, monospace;
638 line-height: 18px;
639}
640
641/* Diffs
642---------------------------------------------------------------------------- */
643
644div.diff.to_file a.path,
645div.diff.to_file {
646 color: #007000;
647}
648
649div.diff.from_file a.path,
650div.diff.from_file {
651 color: #aa0000;
652}
653
654.patch .header {
655 margin: 0;
656}
657
658.patchset {
659 overflow-x: auto;
660 overflow-y: hidden;
661}
662
663.chunk_header {
664 background: #eaf2f5;
665 color: #999;
666}
667
668.rem {
669 background: #ffdddd;
670}
671.rem .marked {
672 background: #ffaaaa;
673}
674.add {
675 background: #ddffdd;
676}
677.add .marked {
678 background: #7dff7d;
679}
680
681.extended_header {
682 width: 99.5%;
683}
684
685div.chunk_block {
686 overflow: hidden;
687}
688
689div.chunk_block div.old {
690 float: left;
691 width: 50%;
692 overflow: hidden;
693 border-right: 5px solid #EAF2F5;
694}
695
696div.chunk_block.rem,
697div.chunk_block.add {
698 background: transparent;
699}
700
701div.chunk_block div.old .add,
702div.chunk_block div.old .rem {
703 padding-right: 3px;
704}
705
706div.chunk_block div.new .add,
707div.chunk_block div.new .rem {
708 padding-left: 3px;
709}
710
711div.chunk_block div.new {
712 margin-left: 50%;
713 width: 50%;
714 border-left: 5px solid #EAF2F5;
715}
716
717/* Category
718---------------------------------------------------------------------------- */
719
720td.category {
721 background: #E6F1F6; /* old browsers */
722 background: -moz-linear-gradient(top, #C8D8E7 0%, #E6F1F3 100%); /* firefox */
723 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#C8D8E7), color-stop(100%,#E6F1F3)); /* webkit */
724 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#C8D8E7', endColorstr='#E6F1F3',GradientType=0 ); /* ie */
725 background: -o-linear-gradient(top, #C8D8E7 0%, #E6F1F3 100%);
726 font-weight: bold;
727 border-bottom: 1px solid #D1D1D1;
728 border-top: 1px solid #D1D1D1;
729}
730
731/* Age
732---------------------------------------------------------------------------- */
733
734/* noage: "No commits" */
735.project_list td.noage {
736 color: #cdcdcd;
737}
738
739/* age2: 60*60*24*2 <= age */
740.project_list td.age2, .blame td.age2 {
741 color: #545454;
742}
743
744/* age1: 60*60*2 <= age < 60*60*24*2 */
745.project_list td.age1 {
746 color: #009900;
747}
748
749/* age0: age < 60*60*2 */
750.project_list td.age0 {
751 color: #009900;
752 font-weight: bold;
753}
754
755/* File status
756---------------------------------------------------------------------------- */
757
758.diff_tree span.file_status.new {
759 color: #008000;
760}
761
762table.diff_tree span.file_status.deleted {
763 color: #c00000;
764}
765
766table.diff_tree span.file_status.moved,
767table.diff_tree span.file_status.mode_chnge {
768 color: #545454;
769}
770
771table.diff_tree span.file_status.copied {
772 color: #70a070;
773}
774
775span.cntrl {
776 border: dashed #aaaaaa;
777 border-width: 1px;
778 padding: 0px 2px 0px 2px;
779 margin: 0px 2px 0px 2px;
780}
781
782span.match {
783 background: #aaffaa;
784 color: #000;
785}
786
787td.error {
788 color: red;
789 background: yellow;
790}
791
792/* blob view */
793
794td.pre, div.pre, div.diff {
795 white-space: pre-wrap;
796}
797
798/* JavaScript-based timezone manipulation */
799
800.popup { /* timezone selection UI */
801 position: absolute;
802 /* "top: 0; right: 0;" would be better, if not for bugs in browsers */
803 top: 0; left: 0;
804 border: 1px solid #d8d8d8;
805 padding: 2px;
806 background-color: #f0f0f0;
807 font-style: normal;
808 color: #545454;
809 cursor: auto;
810}
811
812.close-button { /* close timezone selection UI without selecting */
813 /* float doesn't work within absolutely positioned container,
814 * if width of container is not set explicitly */
815 /* float: right; */
816 position: absolute;
817 top: 0px; right: 0px;
818 border: 1px solid #ffaaaa;
819 margin: 1px 1px 1px 1px;
820 padding-bottom: 2px;
821 width: 12px;
822 height: 10px;
823 font-size: 9px;
824 font-weight: bold;
825 text-align: center;
826 background-color: #ffdddd;
827 cursor: pointer;
828}
829
830/* Style definition generated by highlight 2.4.5, http://www.andre-simon.de/ */
831
832/* Highlighting theme definition: */
833
834.num { color:#6ecf36; }
835.esc { color:#ff00ff; }
836.str { color:#ff00d3; background-color: #edc9ec }
837.dstr { color:#818100; }
838.slc { color:#838183; font-style:italic; }
839.com { color:#838183; font-style:italic; }
840.dir { color:#008200; }
841.sym { color:#000000; }
842.line { color:#555555; }
843.kwa { color:#666666; font-weight:bold; }
844.kwb { color:#6b3099; }
845.kwc { color:#d4663d; }
846.kwd { color:#2928ff; }
847
d5af761b 848/*
849 * Styling for my custom added sections
850 */
851
852/* Header */
853div.site-header {
854 background-color: var(--bg-alt);
855 color: var(--fg);
769ac656 856 padding: 1em;
d5af761b 857}
858div.site-header h1 {
859 text-transform: uppercase;
a6a0a341 860 font-size: 2em;
d5af761b 861}
862div.site-header h1 span.evident {
863 background-color: var(--accent);
864 color: var(--bg);
865}