xref: /webtrees/resources/css/minimal.css (revision 30e63383b10bafff54347985dcdbd10c40c33f62)
1/**
2 * webtrees: online genealogy
3 * Copyright (C) 2020 webtrees development team
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <https://www.gnu.org/licenses/>.
14 */
15
16/* The minimal theme */
17@import "_base.css";
18
19/* Colors for chart boxes, etc. */
20:root {
21  --sex-f-fg: #888888;
22  --sex-m-fg: #888888;
23  --sex-u-fg: #888888;
24  --sex-f-bg: #ffffff;
25  --sex-m-bg: #ffffff;
26  --sex-u-bg: #ffffff;
27    --chart-line: solid gray thin;
28    --chart-line-radius: 1rem;
29}
30
31/* Override Bootstrap formatting */
32.btn-link {
33    padding-left: 0.25rem;
34    padding-right: 0.25rem;
35}
36
37.table-given-name {
38    overflow-x: hidden;
39}
40
41.container-fluid {
42    padding-left: 5px;
43    padding-right: 5px;
44}
45
46table {
47    border-collapse: separate;
48}
49
50/*
51 * Pages have the following high-level structure:
52 *
53 * wt-global wt-theme-<THEME> wt-route-<ROUTE>
54 * +---wt-header-wrapper
55 * |   +---wt-header-container
56 * |       +---wt-header-content
57 * |           +---wt-accessibility-links
58 * |           +---wt-site-logo
59 * |           +---wt-site-title
60 * |           +---wt-header-search
61 * |           |   +---wt-header-search-form
62 * |           |       +---wt-header-search-field
63 * |           |       +---wt-header-search-button
64 * |           +---wt-secondary-navigation
65 * |           |   +---wt-user-menu
66 * |           +---wt-primary-navigation
67 * |               +---wt-genealogy-menu
68 * +---wt-main-wrapper
69 * |   +---wt-main-container
70 * |       +---wt-main-content
71 * |           +---wt-messages
72 * |           +---wt-page-title
73 * |           +---wt-page-options wt-page-options-xxxxx
74 * |           +---wt-page-content
75 * +---wt-footers
76 *     +---wt-footer wt-footer-xxxxx
77 */
78
79.wt-global {
80    /* Avoid extremes of black and white.  It is better for users with dyslexia. */
81    color: #0a0a0a;
82    background-color: #f9f9f9;
83}
84
85.wt-header-wrapper {
86}
87
88.wt-header-container {
89    margin-top: 1rem;
90}
91
92.wt-header-content {
93}
94
95.wt-accessibility-links {
96}
97
98.wt-site-logo {
99    display: none;
100}
101
102.wt-site-title {
103    order: 1;
104    flex: 1 1 auto;
105    width: auto;
106    font-size: 1.75rem;
107}
108
109.wt-header-search {
110    order: 3;
111    flex: 0 0 15rem;
112}
113
114.wt-header-search-form {
115}
116
117.wt-header-search-field {
118}
119
120.wt-header-search-button {
121}
122
123.wt-secondary-navigation {
124    order: 2;
125    flex: 0 0 auto;
126    width: auto;
127    white-space: nowrap;
128}
129
130.wt-user-menu {
131    flex-wrap: nowrap;
132}
133
134.wt-user-menu .nav-link {
135    padding: 0.5rem;
136}
137
138.wt-primary-navigation {
139    order: 4;
140    /* Extend to full page width */
141    flex: 0 1 100vw;
142    max-width: 100vw;
143    /* Recalculate margins for content */
144    margin: 0 calc(50% - 50vw);
145    padding: 0 calc(50vw - 50%);
146    border-bottom: 2px solid #aaa;
147}
148
149.wt-genealogy-menu {
150    justify-content: center;
151}
152
153.wt-genealogy-menu .nav-link {
154    padding: 0.5rem;
155}
156
157.wt-main-container {
158    /* Space between the header/footer and the main content. */
159    padding-top: 1rem;
160    padding-bottom: 1rem;
161}
162
163.wt-main {
164}
165
166.wt-messages {
167}
168
169.wt-page-title {
170    text-align: center;
171}
172
173.wt-page-content {
174    margin-top: 1rem;
175}
176
177.wt-footers {
178}
179
180.wt-footer {
181}
182
183.wt-footer-contact {
184}
185
186.wt-footer-cookies {
187    background: #aaa;
188    color: #fff;
189    transition: height 0.5s;
190}
191
192.wt-footer-page-views {
193}
194
195.wt-footer-powered-by {
196}
197
198.wt-footer-powered-by-webtrees {
199}
200
201/*
202 * The tree/user home pages
203 *
204 * wt-home-page / wt-user-page
205 * +---wt-main-blocks
206 * |   +---wt-block, wt-block-AAA
207 * |   +---wt-block, wt-block-BBB
208 * |   +---wt-block, wt-block-CCC
209 * +---wt-side-blocks
210 *     +---wt-block, wt-block-XXX
211 *     +---wt-block, wt-block-YYY
212 *     +---wt-block, wt-block-ZZZ
213 *
214 * Each block as the structure
215 * wt-block, wt-block-XXX
216 * +---wt-block-header, wt-block-header-XXX
217 * +---wt-block-content, wt-block-content-XXX
218 */
219
220.wt-block {
221    border: solid #000 1px;
222}
223
224.wt-block-header {
225    background-color: #fff;
226}
227
228.wt-block-content {
229}
230
231.wt-block-content .list_table {
232    border-spacing: 1px;
233    border: solid #000 1px;
234    border-right: 0;
235}
236
237.wt-block-content .list_value,
238.wt-block-content .list_value_wrap {
239    border: 0;
240    border-top: solid #000 1px;
241    border-right: solid #000 1px;
242}
243
244/*
245 * The individual page.
246 *
247 * wt-route-individual
248 * +---wt-header-wrapper
249 */
250
251.wt-individual-silhouette {
252    content: url(images/individual-silhouette-unknown.png);
253}
254
255.wt-individual-silhouette-f {
256    content: url(images/individual-silhouette-female.png);
257}
258
259.wt-individual-silhouette-m {
260    content: url(images/individual-silhouette-male.png);
261}
262
263/*
264 * Chart-boxes are used to build the various charts.
265 * Each type of chart will set its own size and hide/show content.
266 *
267 * wt-chart-box
268 * +--- wt-chart-box-thumbnail
269 * +--- wt-chart-box-extra
270 *      +--- wt-chart-box-zoom
271 *           +--- wt-chart-box-icon
272 *           +--- wt-chart-box-dropdown wt-chart-box-zoom-dropdown
273 *      +--- wt-chart-box-links
274 *           +--- wt-chart-box-icon
275 *           +--- wt-chart-box-dropdown wt-chart-box-links-dropdown
276 * +--- wt-chart-box-name
277 * +--- wt-chart-box-lifespan
278 * +--- wt-chart-box-facts
279 *     +--- wt-chart-box-fact
280 */
281.wt-chart-box,
282.wt-chart-box-menu {
283    background: var(--sex-u-bg);
284    border: dashed var(--sex-u-fg) thin;
285}
286
287.wt-chart-box {
288    height: 5rem;
289    padding: 2px;
290    line-height: 1.1;
291}
292
293.wt-chart-box-f,
294.wt-chart-box-f .wt-chart-box-dropdown {
295    background: var(--sex-f-bg);
296    border: solid var(--sex-f-fg) thin;
297}
298
299.wt-chart-box-m,
300.wt-chart-box-m .wt-chart-box-dropdown {
301    background: var(--sex-m-bg);
302    border: solid var(--sex-m-fg) thin;
303}
304
305/* ---Pending edits--- */
306.wt-new {
307    outline: solid thin blue;
308}
309
310.wt-old {
311    outline: solid thin red;
312}
313
314.list_value,
315.list_value_wrap {
316    border: solid #000 1px;
317    vertical-align: top;
318    padding: 4px;
319}
320
321.list_table {
322    margin: 0 auto;
323}
324
325.filtersH,
326.filtersF {
327    margin: 4px;
328}
329
330.filtersH img {
331    margin-bottom: 2px;
332}
333
334.list-charts {
335    text-align: center;
336}
337
338#place-hierarchy h2,
339#place-hierarchy h4 {
340    text-align: center;
341}
342
343/* ======== Block styles ===== */
344#index_main_blocks {
345    clear: none;
346    width: 60%;
347    float: left;
348}
349
350#index_small_blocks {
351    clear: none;
352    width: 40%;
353    float: right;
354}
355
356#index_full_blocks {
357    clear: none;
358    width: 100%;
359}
360
361.block {
362    background-color: #fff;
363    color: #555;
364    border: solid #ccc 1px;
365    padding: 3px;
366    vertical-align: top;
367}
368
369.blockcontent {
370    margin: 5px;
371    overflow: auto;
372}
373
374.blockcontent .list_table {
375    border-spacing: 0;
376    border: solid #555 1px;
377    border-right: 0;
378}
379
380.blockcontent .list_value,
381.blockcontent .list_value_wrap {
382    border: 0;
383    border-top: solid #555 1px;
384    border-right: solid #555 1px;
385}
386
387.blockheader {
388    font-weight: bold;
389}
390
391/* end Block styles */
392
393.user_welcome_block table,
394.gedcom_block_block table {
395    margin: auto;
396}
397
398.user_welcome_block td,
399.gedcom_block_block td {
400    width: 33%;
401    text-align: center;
402    vertical-align: top;
403}
404
405.user_welcome_block i,
406.gedcom_block_block i {
407    background-image: none;
408    height: 0;
409    width: 0;
410}
411
412/* Table of genealogical facts */
413.wt-facts-table caption {
414    caption-side: top;
415}
416
417.wt-facts-table th {
418    border: 1px solid #000;
419    font-weight: normal;
420    min-width: 20%;
421}
422
423.wt-facts-table td {
424    border: solid #000 1px;
425}
426
427a {
428    color: #333;
429    text-decoration: none;
430}
431
432a:hover {
433    color: #333;
434    text-decoration: underline;
435}
436
437a:hover {
438    text-decoration: underline!important;
439}
440
441.parentdeath {
442    padding: 1px;
443}
444
445/* ==== FAQ table styles ===== */
446table.faq {
447    background-color: #ddd;
448    margin: 5px 0 50px 5px;
449    width: 98%;
450}
451
452table.faq tr:nth-child(odd) td {
453    background-color: #fff;
454}
455
456div.faq_title {
457    background-color: #ddd;
458    margin: 1em 0;
459    padding: .25em;
460    font-weight: bold;
461    width: 98%;
462}
463
464div.faq_body {
465    clear: both;
466    padding: 0 1em;
467}
468
469.faq_top {
470    float: right;
471}
472
473/* === Positioning edit, copy, delete links === */
474/* General use */
475.editfacts {
476    clear: left;
477    padding-top: 15px;
478}
479
480#indi_note {
481    margin: 0 0 5px;
482}
483
484.indi_table {
485    clear: left;
486}
487
488.label {
489    font-weight: bold;
490}
491
492#indi_note .fact_NOTE {
493    float: left;
494    margin: 0 5px 0 0;
495}
496
497#indi_note .fact_SOUR {
498    margin: 3px 0;
499}
500
501#indi_note .fact_SOUR a {
502    font-size: 100%;
503}
504
505#indi_note .fact_NOTE,
506#indi_note .fact_SOUR {
507    clear: both;
508}
509
510.odometer {
511    font-family: courier, monospace;
512    font-weight: bold;
513    background: #000;
514    color: #fff;
515}
516
517.upcoming_events_block button,
518.todays_events_block button {
519    margin: 0 20px;
520}
521
522/* Sidebar - Family navigator */
523
524/* Sidebar - Descendants */
525#sb_content_descendancy {
526    margin-top: 5px;
527}
528
529#sb_desc_content {
530    margin-left: 3px;
531    font-size: 0.8em;
532}
533
534#sb_desc_content ul {
535    padding: 0;
536    margin: 0;
537}
538
539.sb_desc_indi_li {
540    list-style-type: none;
541}
542
543/* Individuals and Families */
544#sidebar-content-individuals,
545#sidebar-content-families {
546    margin-top: 5px;
547}
548
549.sb_indi_surname_li,
550.sb_fam_surname_li {
551    list-style-image: url(icons/plus.png);
552}
553
554.name_tree_div ul {
555    padding: 0;
556    margin: 0;
557}
558
559.name_tree_div li {
560    list-style: none;
561    margin: 0;
562    padding: 0;
563}
564
565/* Clippings */
566#sb_clippings_content ul {
567    padding: 0;
568    margin: 0;
569}
570
571#sb_clippings_content li {
572    list-style: none;
573    margin: 0;
574    padding: 0;
575    white-space: nowrap;
576}
577
578/* Stories module */
579.story_title {
580    padding-top: 12px;
581    font-size: 13px;
582    height: 32px;
583    font-weight: bold;
584}
585
586.story_body {
587    padding: 20px;
588    white-space: normal;
589}
590
591.story_edit {
592    padding: 12px;
593}
594
595/* Stories module */
596.story_title {
597    padding-top: 12px;
598    font-size: 13px;
599    height: 32px;
600    font-weight: bold;
601}
602
603.story_body {
604    padding: 20px;
605    white-space: normal;
606}
607
608.story_edit {
609    padding: 12px;
610}
611
612/* ====== Charts Styles ======== */
613
614#people label {
615    display: block;
616}
617
618/*-- Fan chart ---- */
619.fan_chart_menu {
620    background: #fff;
621    position: absolute;
622    display: none;
623    z-index: 100;
624}
625
626#fan_chart ul {
627    list-style-type: none;
628    margin: 0;
629}
630
631/* Lifespans chart */
632.wt-lifespans-subtitle {
633    text-align: center;
634}
635
636.wt-lifespans-scale {
637    white-space: nowrap;
638}
639
640.wt-lifespans-decade {
641    width: 70px;
642    height: 60px;
643    display: inline-block;
644    background-image: url(images/lifespan-decade.png);
645    background-position-y: bottom;
646    background-repeat: no-repeat;
647    background-size: 70px 37px;
648}
649
650.wt-lifespans-individuals {
651    background: #fafafa;
652}
653
654.wt-lifespans-individual {
655
656}
657
658.wt-lifespans-summary {
659    background: #ffffff;
660    border: thin solid #000;
661    z-index: 1;
662}
663
664.wt-lifespans-summary-link {
665    font-weight: bold;
666}
667
668/*-- Pedigree ---- */
669.tvertline {
670    vertical-align: bottom;
671}
672
673.optionbox, .descriptionbox {
674    border: solid #000 1px;
675    vertical-align: top;
676    padding: 3px;
677}
678
679#childbox {
680    padding: 5px;
681    position: absolute;
682    display: none;
683    text-align: start;
684    white-space: nowrap;
685    top: 20px;
686    left: 0;
687}
688
689.layout3 #childbox {
690    top: auto;
691    bottom: 20px;
692}
693
694#childbox a.name1 {
695    display: block;
696    margin-left: 5px;
697}
698
699.person0, .person1, .person2, .person3, .person4, .person5 {
700    border:outset #555 1px;
701    vertical-align:top;
702}
703.person0{
704    background-color:#eee;
705}
706
707.person1{
708    background-color:#bfbfbf;
709}
710
711.person2{
712    background-color:#999;
713}
714
715.person3{
716    background-color:#dfdfdf;
717}
718
719.person4{
720    background-color:#eee;
721}
722
723.person5{
724    background-color:#fefefe;
725}
726
727/*-- timeline  --*/
728#timeline_chart {
729    position: relative;
730    top: 0;
731    left: 0;
732}
733
734/*
735 * Any element that is loaded dynamically has the class wt-ajax-load.
736 * We can provide a "loading" placeholder for empty elements with this class.
737 */
738.wt-ajax-load:empty {
739    height: 32px;
740    background: url(images/loading-32x32.gif) no-repeat 50% 50%;
741}
742
743/*
744 * Default icons are provided by FontAwesome.
745 */
746.wt-icon-anniversary {
747}
748
749.wt-icon-arrow-down {
750}
751
752a > .wt-icon-arrow-down:hover {
753}
754
755.wt-icon-arrow-left {
756}
757
758a > .wt-icon-arrow-left:hover {
759}
760
761.wt-icon-arrow-right {
762}
763
764a > .wt-icon-arrow-right:hover {
765}
766
767.wt-icon-arrow-up {
768}
769
770a > .wt-icon-arrow-up:hover {
771}
772
773.wt-icon-bing-maps {
774}
775
776.wt-icon-calendar {
777}
778
779.wt-icon-collapse {
780}
781
782.wt-icon-coordinates {
783}
784
785.wt-icon-copy {
786}
787
788.wt-icon-delete {
789}
790
791.wt-icon-edit {
792}
793
794.wt-icon-expand {
795}
796
797.wt-icon-family {
798}
799
800.wt-icon-google-maps {
801}
802
803.wt-icon-help {
804}
805
806.wt-icon-individual {
807}
808
809.wt-icon-keyboard {
810}
811
812.wt-icon-media {
813}
814
815.wt-icon-note {
816}
817
818.wt-icon-openstreetmap {
819}
820
821.wt-icon-preferences {
822}
823
824.wt-icon-reorder {
825}
826
827.wt-icon-repository {
828}
829
830.wt-icon-sex-f {
831    color: var(--sex-m-fg);
832}
833
834.wt-icon-sex-m {
835    color: var(--sex-m-fg);
836}
837
838.wt-icon-sex-u {
839    color: var(--sex-u-fg);
840}
841
842.wt-icon-sex-x {
843    color: var(--sex-u-fg);
844}
845
846.wt-icon-source {
847}
848
849.wt-icon-submitter {
850}
851
852.wt-icon-warning {
853}
854
855.wt-icon-zoom-in {
856}
857
858.wt-icon-zoom-out {
859}
860
861/* Miscellaneous images */
862.icon-cfamily {
863}
864
865.icon-childless {
866    content: url(images/childless.png);
867}
868
869.icon-children {
870    content: url(images/children.png);
871}
872
873.icon-edit_indi {
874    content: url(minimal/images/edit_indi.png);
875}
876
877.icon-fam-list {
878    content: url(minimal/images/sfamily.png);
879}
880
881.icon-indi-list {
882    content: url(minimal/images/indis.png);
883}
884
885.icon-loading-small {
886    content: url(images/indicator.gif);
887}
888
889.icon-loading-large {
890    content: url(images/loading-32x32.gif);
891}
892
893.icon-minus {
894    content: url(icons/minus.png);
895}
896
897.icon-mypage {
898    content: url(minimal/images/mypage.png);
899}
900
901.icon-plus {
902    content: url(icons/plus.png);
903}
904
905.icon-resn-confidential {
906    content: none;
907}
908
909.icon-resn-locked {
910    content: none;
911}
912
913.icon-resn-none {
914    content: none;
915}
916
917.icon-resn-privacy {
918    content: none;
919}
920
921.icon-rings {
922    content: url(images/rings.png);
923}
924
925.icon-selected {
926    content: url(minimal/images/selected.png);
927}
928
929.icon-sfamily {
930    content: url(minimal/images/sfamily.png);
931}
932
933/* Silhouettes on charts */
934.icon-silhouette-F {
935    content: url(minimal/images/silhouette_female_small.png);
936}
937
938.icon-silhouette-M {
939    content: url(minimal/images/silhouette_male_small.png);
940}
941
942.icon-silhouette-U {
943    content: url(minimal/images/silhouette_unknown_small.png);
944}
945
946.icon-indis {
947    content: url(minimal/images/indis.png);
948}
949
950.icon-pedigree {
951    content: url(minimal/images/pedigree.png);
952}
953
954/* Census assistant */
955.wt-census-assistant-form-control:focus {
956    min-width: 12rem;
957}
958
959/* Some blocks show a reduced version on the right-hand side. */
960.wt-side-blocks .wt-side-block-optional {
961    display: none !important;
962}
963
964/* my page chart enhancements */
965.wt-block-content-charts {
966    overflow: auto;
967}
968
969/* Some charts are wider than the page. */
970.wt-chart {
971    overflow-x: auto;
972    overflow-y: hidden;
973}
974
975/* Fit thumbnail into parent on charts */
976.select2-selection.select2-selection--single {
977    min-height: 36px;
978    height: auto;
979    padding: 2px 0;
980}
981
982.select2-container .select2-selection--single .select2-selection__rendered {
983    padding-left: 2px;
984}
985
986.select2-selection--single .NAME {
987    padding-left: 4px;
988}
989
990/*
991 *  These selectors control how the short horizontal lines are positioned in the Charts
992 *  Optimized for Win10 and FF, Chrome and Edge browsers
993 *  	Ancestors
994 *  	Descendants
995 *  	amily book
996 *
997 */
998
999/* Ascentors */
1000.wt-chart-ancestors .linea1 {
1001    margin-bottom: 4px;
1002}
1003
1004.wt-chart-ancestors .linea2 {
1005    margin-bottom: 7px;
1006}
1007
1008.wt-chart-ancestors .linea3 {
1009    margin-bottom: 4px;
1010}
1011
1012.wt-chart-ancestors .linea4 {
1013    margin-bottom: 7px;
1014}
1015
1016.wt-chart-ancestors .linea5 {
1017    vertical-align: top;
1018}
1019
1020/* Descendants */
1021.wt-chart-descendants .lined1 {
1022    margin-bottom: 4px;
1023}
1024
1025.wt-chart-descendants .lined2 {
1026    margin-bottom: 7px;
1027}
1028
1029.wt-chart-descendants .lined3 {
1030    margin-bottom: 4px;
1031}
1032
1033.wt-chart-descendants .lined4 {
1034    margin-bottom: 7px;
1035}
1036
1037.wt-chart-descendants .linea5 {
1038    vertical-align: top;
1039}
1040
1041.wt-calendar-month {
1042    border-collapse: collapse;
1043}
1044
1045.wt-calendar-month .wt-page-options-label,
1046.wt-calendar-month .wt-page-options-value {
1047    border: solid grey thin;
1048    padding: 0.2rem;
1049}
1050
1051/* Some menus (e.g. languages) can be longer than a page */
1052.dropdown-menu {
1053    max-height: 30rem;
1054    overflow-x: hidden;
1055}
1056
1057/* Forms */
1058.col-form-label {
1059    font-weight: bold;
1060}
1061