xref: /webtrees/resources/css/clouds.css (revision 69e217d1aca8ff66f6aacfd2dbd67f3a8a2518d7)
1/**
2 * webtrees: online genealogy
3 * Copyright (C) 2019 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 <http://www.gnu.org/licenses/>.
14 */
15
16/* The clouds theme */
17@import "_base.css";
18@import "_block-charts.css";
19@import "_charts.css";
20@import "_lists.css";
21@import "_mime-type-icons.css";
22@import "_on-screen-keyboard.css";
23@import "_tab-relatives.css";
24
25/* Colors for chart boxes, etc. */
26:root {
27  --sex-f-fg: #aaaaaa;
28  --sex-m-fg: #aaaaaa;
29  --sex-u-fg: #aaaaaa;
30  --sex-f-bg: #ffdddd;
31  --sex-m-bg: #ddddff;
32  --sex-u-bg: #ffffff;
33	--chart-line: solid gray thin;
34	--chart-line-radius: 1rem;
35}
36
37/* Override Bootstrap formatting */
38
39.table-given-name {
40    overflow-x: hidden;
41}
42
43.btn-link {
44	padding: 0 .25rem;
45}
46
47.container-fluid {
48	padding-left: 5px;
49	padding-right: 5px;
50}
51
52table {
53	border-collapse: separate;
54}
55
56.dropdown-menu {      /* Fix dropdown on Place Lists/Place Hierarchy */
57	z-index: 1010;
58}
59
60/*
61 * Pages have the following high-level structure:
62 *
63 * wt-global wt-theme-<THEME> wt-route-<ROUTE>
64 * +---wt-header-wrapper
65 * |   +---wt-header-container
66 * |       +---wt-header-content
67 * |           +---wt-accessibility-links
68 * |           +---wt-site-logo
69 * |           +---wt-site-title
70 * |           +---wt-header-search
71 * |           |   +---wt-header-search-form
72 * |           |       +---wt-header-search-field
73 * |           |       +---wt-header-search-button
74 * |           +---wt-secondary-navigation
75 * |           |   +---wt-user-menu
76 * |           +---wt-primary-navigation
77 * |               +---wt-genealogy-menu
78 * +---wt-main-wrapper
79 * |   +---wt-main-container
80 * |       +---wt-main-content
81 * |           +---wt-messages
82 * |           +---wt-page-title
83 * |           +---wt-page-options wt-page-options-xxxxx
84 * |           +---wt-page-content
85 * +---wt-footers
86 *     +---wt-footer wt-footer-xxxxx
87 */
88
89.wt-global {
90	background: #c8e7ff url(clouds/images/background.png) repeat-x fixed top left;
91	color: #006;
92}
93
94.wt-header-wrapper {
95	background: #acf url(clouds/images/clouds.png) repeat-x;
96	border-bottom: thin solid #79c;
97}
98
99.wt-header-wrapper .dropdown-item.active {
100	background-color: inherit;
101	color: inherit;
102	font-weight: bold;
103}
104
105.wt-header-container {
106	margin-top: 0.5rem;
107}
108
109.wt-header-content {
110}
111
112.wt-accessibility-links {
113}
114
115.wt-site-logo {
116	display: none;
117}
118
119.wt-site-title {
120	order: 1;
121	flex: 1 1 0;
122	font-size: 1.5rem;
123}
124
125.wt-header-search {
126	order: 3;
127	flex: 0 0 15rem;
128}
129
130.wt-header-search-form {
131}
132
133.wt-header-search-field {
134}
135
136.wt-header-search-button {
137}
138
139.wt-secondary-navigation {
140	order: 2;
141	flex: 0 0 0;
142	white-space: nowrap;
143}
144
145.wt-user-menu {
146	flex-wrap: nowrap;
147}
148
149.wt-user-menu .nav-link {
150	display: inline-block;
151	padding: 0.5rem;
152}
153
154.wt-user-menu .nav-item + .nav-item::before {
155	content: "|";
156}
157
158.wt-user-menu .dropdown-toggle:after {
159	display: none;
160}
161
162.wt-user-menu .dropdown-item {
163	padding-left: 1rem;
164	padding-right: 1rem;
165}
166
167.wt-primary-navigation {
168	order: 3;
169	flex: 1 0 auto;
170}
171
172.wt-genealogy-menu {
173	display: flex; flex-wrap: wrap;
174}
175
176.wt-genealogy-menu .nav-item {
177	padding: 0 0.75rem;
178}
179
180.wt-genealogy-menu .nav-link {
181	/* All menu icons are 22px x 22px */
182	height: calc(22px + 1rem);
183	width: 22px;
184	/* Hide text */
185	padding: 0.5rem 0;
186	overflow: hidden;
187}
188
189.wt-genealogy-menu .dropdown-item {
190	/* Space between icons and align with submenu icons */
191	padding: 0 5px 0 0;
192}
193
194.wt-genealogy-menu .dropdown-item::before {
195	/* All submenu icons are 22px x 22px */
196	height: 22px;
197	width: 22px;
198	/* Align icons and text */
199	vertical-align: text-top;
200	/* Space between icon and text */
201	padding: 0 .25rem;
202	line-height: 1.8;
203}
204
205.wt-genealogy-menu .nav-item::before {
206	/* The size of the menu icons */
207	width: 22px;
208	height: 22px;
209}
210
211.wt-genealogy-menu .dropdown-item::before {
212	/* The size of the submneu icons */
213	width: 22px;
214	height: 22px;
215}
216
217.wt-genealogy-menu .dropdown-item:first-child {
218	font-weight: bold;
219	text-align: center;
220	border-bottom: solid thin #ddd;
221}
222
223.menu-tree .nav-link::before {
224	content: url(clouds/menu/tree.png);
225}
226
227.menu-tree .dropdown-item:not(:first-child)::before {
228	content: url(clouds/menu/tree-tree.png);
229}
230
231.menu-chart .nav-link::before {
232	content: url(clouds/menu/chart.png);
233}
234
235.menu-chart-ancestry::before {
236	content: url(clouds/menu/chart-ancestors.png);
237}
238
239.menu-chart-compact::before {
240	content: url(clouds/menu/chart-compact.png);
241}
242
243.menu-chart-descendants::before {
244	content: url(clouds/menu/chart-descendants.png);
245}
246
247.menu-chart-familybook::before {
248	content: url(clouds/menu/chart-family-book.png);
249}
250
251.menu-chart-fanchart::before {
252	content: url(clouds/menu/chart-fanchart.png);
253}
254
255.menu-chart-hourglass::before {
256	content: url(clouds/menu/chart-hourglass.png);
257}
258
259.menu-chart-lifespan::before {
260	content: url(clouds/menu/chart-lifespan.png);
261}
262
263.menu-chart-pedigree::before {
264	content: url(clouds/menu/chart-pedigree.png);
265}
266
267.menu-chart-pedigreemap::before {
268	content: url(clouds/menu/chart-pedigree-map.png);
269}
270
271.menu-chart-relationship::before {
272	content: url(clouds/menu/chart-relationship.png);
273}
274
275.menu-chart-statistics::before {
276	content: url(clouds/menu/chart-statistics.png);
277}
278
279.menu-chart-timeline::before {
280	content: url(clouds/menu/chart-timeline.png);
281}
282
283.menu-chart-tree::before {
284	content: url(clouds/menu/chart-tree.png);
285}
286
287.menu-list .nav-link::before {
288	content: url(clouds/menu/list.png);
289}
290
291.menu-branches::before {
292	content: url(clouds/menu/branches.png);
293}
294
295.menu-list-fam::before {
296	content: url(clouds/menu/list-fam.png);
297}
298
299.menu-list-indi::before {
300	content: url(clouds/menu/list-indi.png);
301}
302
303.menu-list-note::before {
304	content: url(clouds/menu/list-note.png);
305}
306
307.menu-list-obje::before {
308	content: url(clouds/menu/list-obje.png);
309}
310
311.menu-list-plac::before {
312	content: url(clouds/menu/list-plac.png);
313}
314
315.menu-list-repo::before {
316	content: url(clouds/menu/list-repo.png);
317}
318
319.menu-list-sour::before {
320	content: url(clouds/menu/list-sour.png);
321}
322
323.menu-calendar .nav-link::before {
324	content: url(clouds/menu/calendar.png);
325}
326
327.menu-calendar-day::before {
328	content: url(clouds/menu/calendar.png);
329}
330
331.menu-calendar-month::before {
332	content: url(clouds/menu/calendar.png);
333}
334
335.menu-calendar-year::before {
336	content: url(clouds/menu/calendar.png);
337}
338
339.menu-report .nav-link::before {
340	content: url(clouds/menu/report.png);
341}
342
343.menu-report .dropdown-item:not(:first-child)::before {
344	content: url(clouds/menu/report.png);
345}
346
347.menu-search .nav-link::before {
348	content: url(clouds/menu/search.png);
349}
350
351.menu-search .dropdown-item:not(:first-child)::before {
352	content: url(clouds/menu/search.png);
353}
354
355.menu-faq .nav-link::before {
356	content: url(clouds/menu/faq.png);
357}
358
359.menu-clippings .nav-link::before {
360	content: url(clouds/menu/clippings.png);
361}
362
363.menu-clippings-add::before {
364	content: url(clouds/menu/clippings-cart.png);
365}
366
367.menu-clippings-cart::before {
368	content: url(clouds/menu/clippings-cart.png);
369}
370
371.menu-clippings-download::before {
372	content: url(clouds/menu/edit-gedcom.png);
373}
374
375.menu-clippings-empty::before {
376	content: url(clouds/menu/edit-delete.png);
377}
378
379.menu-clippings-remove::before {
380	content: url(clouds/menu/edit-delete.png);
381}
382
383.menu-story .nav-link::before {
384	content: url(clouds/menu/story.png);
385}
386
387.wt-main-container {
388	/* Space between the header/footer and the main content. */
389	padding-top: 1rem;
390	padding-bottom: 1rem;
391}
392
393.wt-main {
394}
395
396.wt-messages {
397}
398
399.wt-page-title {
400	text-align: center;
401}
402
403.wt-page-options {
404}
405
406.wt-page-options .form-group {
407	margin-bottom: 2px;
408}
409
410.wt-page-options-label {
411	color: #039;
412	background-color: #95b8e0;
413}
414
415.wt-page-options-value {
416	color: #006;
417	background-color: #ecf5ff;
418	border: thin solid #ccc;
419	padding: 0.25rem 0.75rem;
420}
421
422.wt-page-content {
423	margin-top: 1rem;
424}
425
426.wt-footers {
427}
428
429.wt-footer {
430}
431
432.wt-footer-contact {
433}
434
435.wt-footer-cookies {
436	background: #666;
437	color: #fff;
438	transition: height 0.5s;
439}
440
441.wt-footer-page-views {
442}
443
444.wt-footer-powered-by {
445}
446
447.wt-footer-powered-by-webtrees {
448	width: 100px;
449	height: 21px;
450	content: url(images/powered-by-webtrees.png);
451}
452
453/*
454 * The tree/user home pages
455 *
456 * wt-home-page / wt-user-page
457 * +---wt-main-blocks
458 * |   +---wt-block, wt-block-AAA
459 * |   +---wt-block, wt-block-BBB
460 * |   +---wt-block, wt-block-CCC
461 * +---wt-side-blocks
462 *     +---wt-block, wt-block-XXX
463 *     +---wt-block, wt-block-YYY
464 *     +---wt-block, wt-block-ZZZ
465 *
466 * Each block as the structure
467 * wt-block, wt-block-XXX
468 * +---wt-block-header, wt-block-header-XXX
469 * +---wt-block-content, wt-block-content-XXX
470 */
471
472.wt-block {
473	color: #000;
474	margin-bottom: 5px;
475	padding: 1px;
476	vertical-align: top;
477}
478
479.wt-block-header {
480	background: url(clouds/images/block-header-background.png);
481	background-size: auto 100%;
482	padding: 0.25rem 0.75rem;
483}
484
485.wt-block-header::before {
486	content: url(clouds/images/block-header-disk.png);
487	margin: 0.5rem;
488}
489
490.wt-block-content {
491}
492
493.blockcontent {
494	border: solid #999 1px;
495	margin:  0 2px 10px 0;
496	overflow: auto;
497	padding: 5px;
498}
499
500.blockcontent .list_table {
501	border-spacing: 1px;
502	border: solid #999 1px;
503	border-right: 0;
504}
505
506.blockcontent .list_value,
507.blockcontent .list_value_wrap {
508	border: 0;
509	border-top: solid #999 1px;
510	border-right: solid #999 1px;
511}
512
513/*
514 * The individual page.
515 *
516 * wt-route-individual
517 * +---wt-header-wrapper
518 */
519
520.wt-individual-silhouette {
521	content: url(images/individual-silhouette-unknown.png);
522}
523
524.wt-individual-silhouette-f {
525	content: url(images/individual-silhouette-female.png);
526}
527
528.wt-individual-silhouette-m {
529	content: url(images/individual-silhouette-male.png);
530}
531
532/*
533 * Chart-boxes are used to build the various charts.
534 * Each type of chart will set its own size and hide/show content.
535 *
536 * wt-chart-box
537 * +--- wt-chart-box-thumbnail
538 * +--- wt-chart-box-extra
539 *      +--- wt-chart-box-zoom
540 *           +--- wt-chart-box-icon
541 *           +--- wt-chart-box-dropdown wt-chart-box-zoom-dropdown
542 *      +--- wt-chart-box-links
543 *           +--- wt-chart-box-icon
544 *           +--- wt-chart-box-dropdown wt-chart-box-links-dropdown
545 * +--- wt-chart-box-name
546 * +--- wt-chart-box-lifespan
547 * +--- wt-chart-box-facts
548 *     +--- wt-chart-box-fact
549 */
550.wt-chart-box,
551.wt-chart-box-menu {
552	background: var(--sex-u-bg);
553	border: dashed var(--sex-u-fg) thin;
554}
555
556.wt-chart-box {
557	height: 5rem;
558	padding: 2px;
559	line-height: 1.1;
560}
561
562.wt-chart-box-f,
563.wt-chart-box-f .wt-chart-box-dropdown {
564	background: var(--sex-f-bg);
565	border: solid var(--sex-f-fg) thin;
566}
567
568.wt-chart-box-m,
569.wt-chart-box-m .wt-chart-box-dropdown {
570	background: var(--sex-m-bg);
571	border: solid var(--sex-m-fg) thin;
572}
573
574/* ====== Round Corners ======== */
575input,
576fieldset,
577.border1,
578.block,
579.list_label,
580.list_label_wrap,
581.list_value,
582.list_value_wrap,
583.messagebox,
584.optionbox,
585.wt-chart-box,
586.person0,
587.person1,
588.person2,
589.person3,
590.person4,
591.person5,
592.wt-genealogy-menu ul,
593.user-menu li ul,
594footer,
595#indi_main_blocks,
596#tabs{
597	border-radius: 3px;
598}
599
600a {
601	color: #039;
602	text-decoration: none;
603}
604
605a:hover {
606	color: #f00;
607	text-decoration: none;
608}
609
610:focus {
611	outline-style: none;
612}
613
614.flash-messages {
615	clear: both;
616	text-align: center;
617}
618
619img {
620	border: 0;
621}
622
623legend img {
624	height: 20px;
625	vertical-align: middle;
626	width: 20px;
627}
628
629img.block {
630	border: 0;
631	height: 25px;
632	vertical-align: middle;
633}
634
635.topbottombar {
636	font-size: 12px;
637	font-weight: bold;
638	padding: 4px;
639	text-align: center;
640}
641
642.button {
643	width: 60px;
644}
645
646button:focus {
647	 outline: 0;
648}
649
650.alpha_index {
651	color: #999;
652}
653
654hr {
655	margin-top: 5px;
656	border-color: #006;
657}
658
659.list_table {
660	margin: 0 auto;
661}
662
663.list_label,
664.list_label_wrap {
665	color: #fff;
666	border: 1px solid #999;
667	font-weight: bold;
668	text-align: center;
669}
670
671.list_value,
672.list_value_wrap {
673	background-color: #edf7f9;
674	border: solid #999 1px;
675	vertical-align: top;
676}
677
678.list_label,
679.list_value {
680	white-space: nowrap;
681	padding: 4px;
682}
683
684.list_label_wrap,
685.list_value_wrap {
686	white-space: normal;
687}
688
689div.fact_SHARED_NOTE {
690	clear: both;
691}
692
693/* Table of genealogical facts */
694.wt-facts-table {
695	border-collapse: separate;
696}
697
698.wt-facts-table caption {
699	caption-side: top;
700}
701
702.wt-facts-table th {
703	background-color: #95b8e0;
704	color: #039;
705	border: 1px solid #acf;
706	border-radius: 3px;
707	font-weight: normal;
708	text-align: center;
709	min-width: 20%;
710}
711
712.wt-facts-table td {
713	background: #fff;
714	border: solid #999 1px;
715	border-radius: 3px;
716}
717
718.wt-facts-table .wt-gender-M td {
719	background-color: #ddf;
720}
721
722.wt-facts-table .wt-gender-F td {
723	background-color: #fdd;
724}
725
726.name1 {
727	font-weight: bold;
728	font-size: 12px;
729}
730
731.name2 {
732	font-size: 16px;
733	}
734
735a:hover .name1, a:hover .name2 {
736	color: #f00;
737	font-weight: bold;
738	font-size: 12px;
739}
740
741.details0,
742.details1 {
743	font-size: 13px;
744}
745
746.details2 {
747	color: #006;
748	font-size: 12px;
749}
750
751.details_label {
752	font-weight: bold;
753}
754
755.date {
756	color: #039;
757}
758
759.label {
760	font-weight: bold;
761}
762
763.error {
764	color: #d00;
765	font-weight: bold;
766}
767
768.largeError {
769	color: #d00;
770	font-size: large;
771	font-weight: bold;
772}
773
774.warning {
775	color: #f00;
776	font-weight: bold;
777}
778
779.indent {
780	padding-left: 7px;
781}
782
783.thumbnail {
784	height: auto;
785	padding: 3px;
786}
787
788.icon {
789	border: 0;
790	padding: 0 5px;
791}
792
793.subheaders {
794	color: #006;
795	font-weight: bold;
796	font-size: 15px;
797	margin-top: 15px;
798	vertical-align: bottom;
799}
800
801.parentdeath {
802	border: thin solid #888;
803	padding: 1px;
804}
805
806.source_citations {
807	display: none;
808}
809
810.selected-option {
811	background-color: #cef;
812}
813
814.border1 {
815	border: solid #000 1px;
816}
817
818.journal_box {
819	padding: 3pt;
820	border: thin solid #aaa;
821	overflow: visible;
822}
823
824.news_box {
825	border-top: solid #ccc 1px;
826}
827
828.news_title {
829	color: #000;
830	font-weight: bold;
831}
832
833.news_date {
834	color: #000;
835	margin-bottom: 12px;
836}
837
838.current_day {
839	font-weight: bold;
840	font-size: 16px;
841}
842
843.cal_day {
844	float: left;
845	font-weight: bold;
846}
847
848#user-page h1 {
849	margin: 0.25em auto 0.6em;
850}
851
852.tvertline {
853	vertical-align: bottom;
854}
855
856#childbox {
857	padding: 5px;
858	position: absolute;
859	display: none;
860	text-align: start;
861	white-space: nowrap;
862	top: 20px;
863	left: 0;
864}
865
866.layout3 #childbox {
867	top: auto;
868	bottom: 20px;
869}
870
871#childbox a.name1 {
872	display: block;
873	margin-left: 5px;
874}
875
876.person0 {
877	background-color: #ddf;
878	border: outset #999 1px;
879	vertical-align: top;
880}
881
882.person1 {
883	background-color: #afa;
884	border: outset #afa 1px;
885	vertical-align: top;
886}
887
888.person2 {
889	background-color: #faa;
890	border: outset #faa 1px;
891	vertical-align: top;
892}
893
894.person3 {
895	background-color: #aad;
896	border: outset #55f 1px;
897	vertical-align: top;
898}
899
900.person4 {
901	background-color: #f55;
902	border: outset #f55 1px;
903	vertical-align: top;
904}
905
906.person5 {
907	background-color: #5f5;
908	border: outset #5f5 1px;
909	vertical-align: top;
910}
911
912.starredname {
913	text-decoration: underline;
914}
915
916.search_hit {
917	background-color: #ff0;
918}
919
920.descriptionbox {
921	font-size: 12px;
922	border: 1px solid #ccc;
923	vertical-align: top;
924	padding: 3px;
925}
926
927.optionbox {
928	font-size: 1rem;
929	background-color: #ecf5ff;
930	color: #006;
931	border: solid #ccc 1px;
932	vertical-align: top;
933	white-space: nowrap;
934	padding: 3px;
935}
936
937.red {
938	color: #f00;
939}
940
941.wt-relation-fact,
942.wt-historic-fact {
943	opacity: 0.8;
944}
945
946.messagebox {
947	background-color: #c2ceef;
948	border: solid #ccc 1px;
949}
950
951/* ---Pending edits--- */
952.wt-new {
953	outline: solid blue 1px;
954}
955
956.wt-old {
957	outline: solid red 1px;
958}
959
960.tag_cloud {
961	text-align: center;
962}
963
964.tag_cloud a {
965	white-space: nowrap;
966}
967
968.nowrap {
969	white-space: nowrap;
970}
971
972.wrap {
973	white-space: normal;
974}
975
976.statistics-page {
977	text-align: center;
978}
979
980.gchart {
981	border: solid #999 1px;
982}
983
984#facts_content dd {
985	float: left;
986	width: 70%;
987}
988
989/* this keeps the tag color the same when it is a link as when not */
990
991.place {
992	padding-top: 5px;
993}
994
995.filtersH,
996.filtersF {
997	margin: 4px;
998}
999
1000.filtersH img {
1001	margin-bottom: 2px;
1002}
1003
1004.list-charts {
1005	text-align: center;
1006}
1007
1008#place-hierarchy h2,
1009#place-hierarchy h4 {
1010	text-align: center;
1011}
1012
1013.user_welcome_block table,
1014.gedcom_block_block table {
1015	margin: auto;
1016}
1017
1018.user_welcome_block td,
1019.gedcom_block_block td {
1020	width: 33%;
1021	text-align: center;
1022	vertical-align: top;
1023}
1024
1025/* ==== Theme select block === */
1026.theme_form ul {
1027	margin: -10px auto;
1028}
1029
1030.theme_form li {
1031	visibility: hidden;
1032}
1033
1034.theme_form li ul li {
1035	display: inline-block;
1036	padding: 10px;
1037	visibility: visible;
1038}
1039
1040/* ==== FAQ table styles ===== */
1041table.faq {
1042	background-color: #eee;
1043	margin: 5px 0 50px 5px;
1044	width: 98%;
1045}
1046
1047table.faq tr:nth-child(odd) td {
1048	background-color: #eee;
1049}
1050
1051div.faq_title {
1052	background-color: #eee;
1053	margin: 1em 0;
1054	padding: .25em;
1055	font-weight: bold;
1056	width: 98%;
1057}
1058
1059div.faq_body {
1060	clear: both;
1061	padding: 0 1em;
1062}
1063
1064.faq_top {
1065	float: right;
1066}
1067
1068/* === Positioning edit, copy, delete links === */
1069/* General use */
1070.editfacts {
1071	clear: left;
1072	padding-top: 15px;
1073}
1074
1075#indi_note {
1076	margin: 0 0 5px;
1077}
1078
1079.indi_table {
1080	clear: left;
1081}
1082
1083#sex {
1084	float: right;
1085}
1086
1087#dates {
1088	color: #333;
1089	float: right;
1090}
1091
1092#individual-names .wt-icon-edit,
1093#individual-names .wt-icon-delete {
1094	float: right;
1095}
1096
1097#indi_note .fact_NOTE {
1098	float: left;
1099	margin: 0 5px 0 0;
1100}
1101
1102#indi_note .fact_SOUR {
1103	margin: 3px 0;
1104}
1105
1106#indi_note .fact_SOUR a {
1107	font-size: 100%;
1108}
1109
1110#indi_note .fact_NOTE,
1111#indi_note .fact_SOUR {
1112	clear: both;
1113}
1114
1115/* markdown formatting */
1116
1117.markdown {
1118	/* Tables and pre-formatted text can break the layout. */
1119	overflow-x: auto;
1120}
1121
1122.markdown p {
1123	margin: 0 0 0.5em;
1124	white-space: pre-wrap;
1125}
1126
1127.markdown table {
1128	border-collapse: collapse;
1129	margin-bottom: 5px;
1130}
1131
1132.markdown th {
1133	font-weight: bold;
1134}
1135
1136.markdown td,
1137.markdown th {
1138	border: solid thin #000;
1139	padding: 3px;
1140}
1141
1142.odometer {
1143	font-family: courier, monospace;
1144	font-weight: bold;
1145	background: #000;
1146	color: #fff;
1147}
1148
1149/* ======== Indi tabs ======== */
1150.media-display-image {
1151	float: left;
1152}
1153
1154.media-display-title {
1155	float: left;
1156	font-style: italic;
1157	margin: 10px;
1158}
1159
1160.upcoming_events_block button,
1161.todays_events_block button {
1162	margin: 0 20px;
1163}
1164
1165/* Sidebar - Family navigator */
1166.wt-family-navigator-dropdown-heading {
1167	font-weight: bold;
1168	font-size: inherit;
1169	color: inherit;
1170}
1171
1172/* Sidebar - Descendants */
1173#sb_content_descendancy {
1174	margin-top: 0;
1175}
1176
1177#sb_desc_content {
1178	margin-left: 3px;
1179	font-size: 0.8em;
1180}
1181
1182#sb_desc_content ul {
1183	padding: 0;
1184	margin: 0;
1185}
1186
1187.sb_desc_indi_li {
1188	list-style-type: none;
1189	margin-left: 5px;
1190}
1191
1192/* Individuals and Families */
1193#sidebar-content-individuals,
1194#sidebar-content-families {
1195	margin-top: 0;
1196}
1197
1198.sb_indi_surname_li,
1199.sb_fam_surname_li {
1200	list-style-image: url(icons/plus.png);
1201}
1202
1203.name_tree_div ul {
1204	padding: 0;
1205	margin: 0;
1206}
1207
1208.name_tree_div li {
1209	list-style: none;
1210	margin: 0;
1211	padding: 0;
1212}
1213
1214/* Clippings */
1215#sb_clippings_content ul {
1216	padding: 0;
1217	margin: 0;
1218}
1219
1220#sb_clippings_content li {
1221	list-style: none;
1222	margin: 0;
1223	padding: 0;
1224	white-space: nowrap;
1225}
1226
1227/* Extra info */
1228#sb_content_extra_info {
1229	font-size: 80%;
1230	font-weight: bold;
1231	margin-top: 0;
1232	overflow: hidden;
1233	padding: 5px;
1234}
1235
1236#sb_content_extra_info .editfacts {
1237	float: right;
1238	margin-top: -30px;
1239}
1240
1241#sb_content_extra_info a {
1242	display: block;
1243}
1244
1245#sb_content_extra_info span {
1246	font-weight: normal;
1247}
1248
1249#sb_content_extra_info span a {
1250	display: inline;
1251}
1252
1253#sb_content_extra_info #hitcounter {
1254	border-top: 1px solid #bcd;
1255	font-weight: bold;
1256	padding-top: 5px;
1257}
1258
1259/* http://www.jacklmoore.com/colorbox */
1260#colorbox,
1261#cboxOverlay,
1262#cboxWrapper {
1263	position: absolute;
1264	top: 0;
1265	left: 0;
1266	z-index: 9999;
1267	overflow: hidden;
1268}
1269
1270#cboxWrapper {
1271	max-width: none;
1272}
1273
1274#cboxOverlay {
1275	position: fixed;
1276	width: 100%;
1277	height: 100%;
1278	background: #fff;
1279}
1280
1281#cboxContent {
1282	background: #fff;
1283	overflow: hidden;
1284	position: relative;
1285	padding: 0.5rem;
1286	border: 0.25rem solid #ccc;
1287}
1288
1289#cboxLoadingOverlay,
1290#cboxLoadingGraphic {
1291	position: absolute;
1292	top: 0;
1293	left: 0;
1294	width: 100%;
1295	height: 100%;
1296}
1297
1298.cboxPhoto {
1299	float: left;
1300	margin: auto;
1301	border: 0;
1302	display: block;
1303	max-width: none;
1304}
1305
1306#colorbox,
1307#cboxContent,
1308#cboxLoadedContent {
1309	box-sizing: content-box;
1310}
1311
1312#cboxError {
1313	padding: 50px;
1314	border: 1px solid #ccc;
1315}
1316
1317#cboxLoadedContent {
1318	margin-bottom: 28px;
1319}
1320
1321#cboxTitle {
1322	background: #fff;
1323	position: absolute;
1324	bottom: 0.25rem;
1325	left: 0;
1326	margin: 0 3rem;
1327	text-align: center;
1328}
1329
1330#cboxLoadingGraphic {
1331	background: url(images/loading-32x32.gif) no-repeat center center;
1332}
1333
1334#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
1335	background: none;
1336	border: 0;
1337	cursor: pointer;
1338	font-family: "Font Awesome\ 5 Free", sans-serif;
1339	font-weight: 900;
1340	overflow: visible;
1341	padding: 0;
1342	position: absolute;
1343}
1344
1345#cboxSlideshow {
1346	bottom: 0.25rem;
1347	right: 0.25rem;
1348}
1349
1350#cboxPrevious {
1351	bottom: 0.25rem;
1352	left: 0.25rem;
1353}
1354
1355#cboxNext {
1356	bottom: 0.25rem;
1357	left: 1.5rem;
1358}
1359
1360#cboxClose {
1361	top: 0.25rem;
1362	right: 0.25rem;
1363}
1364
1365/* Stories module */
1366.story_title {
1367	padding-top: 12px;
1368	font-size: 13px;
1369	height: 32px;
1370	font-weight: bold;
1371}
1372
1373.story_body {
1374	padding: 20px;
1375	white-space: normal;
1376}
1377
1378.story_edit {
1379	padding: 12px;
1380}
1381
1382/*-- Fan chart ---- */
1383.fan_chart_menu {
1384	background: #fff;
1385	position: absolute;
1386	display: none;
1387	z-index: 100;
1388}
1389
1390#fan_chart ul {
1391	list-style-type: none;
1392	margin: 0;
1393}
1394
1395/* Lifespans chart */
1396.wt-lifespans-subtitle {
1397	text-align: center;
1398}
1399
1400.wt-lifespans-scale {
1401	white-space: nowrap;
1402}
1403
1404.wt-lifespans-decade {
1405	width: 70px;
1406	height: 60px;
1407	display: inline-block;
1408	background-image: url(images/lifespan-decade.png);
1409	background-position-y: bottom;
1410	background-repeat: no-repeat;
1411	background-size: 70px 37px;
1412}
1413
1414.wt-lifespans-individuals {
1415	background: #fafafa;
1416}
1417
1418.wt-lifespans-individual {
1419
1420}
1421
1422.wt-lifespans-summary {
1423	background: #ffffff;
1424	border: thin solid #000;
1425	z-index: 1;
1426}
1427
1428.wt-lifespans-summary-link {
1429	font-weight: bold;
1430}
1431
1432/*-- timeline  --*/
1433#timeline_chart {
1434	position: relative;
1435	top: 0;
1436	left: 0;
1437}
1438
1439[class^="icon-"],
1440[class*=" icon-"] {
1441	display: inline-block;
1442	vertical-align: middle;
1443	background-repeat: no-repeat;
1444	background-size: cover;
1445}
1446
1447.icon-cfamily {
1448	content: url(clouds/images/cfamily.png);
1449}
1450
1451.icon-childless {
1452	content: url(images/childless.png);
1453}
1454
1455.icon-children {
1456	content: url(images/children.png);
1457}
1458
1459.icon-edit_indi {
1460	content: url(clouds/images/edit_indi.png);
1461}
1462
1463.icon-fam-list {
1464	content: url(clouds/images/sfamily.png);
1465}
1466
1467.icon-indi-list {
1468	content: url(clouds/images/indis.png);
1469}
1470
1471.icon-loading-small {
1472	content: url(images/indicator.gif);
1473}
1474
1475.icon-minus {
1476	content: url(icons/minus.png);
1477}
1478
1479.icon-mypage {
1480	content: url(clouds/images/mypage.png);
1481}
1482
1483.icon-plus {
1484	content: url(icons/plus.png);
1485}
1486
1487.icon-resn-confidential {
1488	content: url(images/resn_confidential.png);
1489}
1490
1491.icon-resn-locked {
1492	content: url(images/resn_locked.png);
1493}
1494
1495.icon-resn-none {
1496	content: url(images/resn_none.png);
1497}
1498
1499.icon-resn-privacy {
1500	content: url(images/resn_privacy.png);
1501}
1502
1503.icon-rings {
1504	content: url(images/rings.png);
1505}
1506
1507.icon-selected {
1508	content: url(clouds/images/selected.png);
1509}
1510
1511/* Silhouettes on charts */
1512.icon-silhouette-F {
1513	content: url(clouds/images/silhouette_female_small.png);
1514}
1515
1516.icon-silhouette-M {
1517	content: url(clouds/images/silhouette_male_small.png);
1518}
1519
1520.icon-silhouette-U {
1521	content: url(clouds/images/silhouette_unknown_small.png);
1522}
1523
1524/* Tbl hdrs and Light Text */
1525.descriptionbox,
1526.topbottombar,
1527.topbottombar a,
1528.list_label,
1529.list_label a {
1530	background-color: #95b8e0;
1531	color: #039;
1532}
1533
1534/* Base Color */
1535.blockcontent,
1536.list_value,
1537.list_value_wrap,
1538.news_box {
1539	background: inherit;
1540}
1541
1542footer .error {
1543	color: #d00;
1544	font-weight: bold;
1545}
1546
1547.user_links {
1548	white-space: nowrap;
1549}
1550
1551/*
1552 * Any element that is loaded dynamically has the class wt-ajax-load.
1553 * We can provide a "loading" placeholder for empty elements with this class.
1554 */
1555.wt-ajax-load:empty {
1556	height: 32px;
1557	background: url(images/loading-32x32.gif) no-repeat 50% 50%;
1558}
1559
1560/*
1561 * Default icons are provided by FontAwesome.
1562 */
1563.wt-icon-anniversary {
1564	content: url(icons/anniversary.png);
1565}
1566
1567.wt-icon-arrow-down {
1568	content: url(clouds/icons/arrow-down.png);
1569}
1570
1571a > .wt-icon-arrow-down:hover {
1572	content: url(clouds/icons/arrow-down-hover.png);
1573}
1574
1575.wt-icon-arrow-left {
1576	content: url(clouds/icons/arrow-left.png);
1577}
1578
1579a > .wt-icon-arrow-left:hover {
1580	content: url(clouds/icons/arrow-left-hover.png);
1581}
1582
1583.wt-icon-arrow-right {
1584	content: url(clouds/icons/arrow-right.png);
1585}
1586
1587a > .wt-icon-arrow-right:hover {
1588	content: url(clouds/icons/arrow-right-hover.png);
1589}
1590
1591.wt-icon-arrow-up {
1592	content: url(clouds/icons/arrow-up.png);
1593}
1594
1595a > .wt-icon-arrow-up:hover {
1596	content: url(clouds/icons/arrow-up-hover.png);
1597}
1598
1599.wt-icon-bing-maps {
1600	content: url(icons/bing-maps.png);
1601}
1602
1603.wt-icon-calendar {
1604	content: url(icons/calendar.png)
1605}
1606
1607.wt-icon-collapse {
1608}
1609
1610.wt-icon-coordinates {
1611	content: url(icons/coordinates.png)
1612}
1613
1614.wt-icon-copy {
1615	content: url(icons/copy.png)
1616}
1617
1618.wt-icon-delete {
1619	content: url(icons/delete.png);
1620}
1621
1622.wt-icon-edit {
1623	content: url(icons/edit.png);
1624}
1625
1626.wt-icon-expand {
1627}
1628
1629.wt-icon-family {
1630	content: url(icons/family.png);
1631}
1632
1633.wt-icon-google-maps {
1634	content: url(icons/google-maps.png);
1635}
1636
1637.wt-icon-help {
1638	content: url(clouds/icons/help.png);
1639}
1640
1641.wt-icon-individual {
1642	content: url(icons/individual.png);
1643}
1644
1645.wt-icon-keyboard {
1646	content: url(icons/keyboard.png);
1647}
1648
1649.wt-icon-media {
1650	content: url(icons/media.png);
1651}
1652
1653.wt-icon-note {
1654	content: url(icons/note.png);
1655}
1656
1657.wt-icon-openstreetmap {
1658	content: url(icons/openstreetmap.png);
1659}
1660
1661.wt-icon-preferences {
1662	content: url(clouds/icons/preferences.png);
1663}
1664
1665.wt-icon-reorder {
1666	content: url(icons/reorder.png);
1667}
1668
1669.wt-icon-repository {
1670	content: url(icons/repository.png);
1671}
1672
1673.wt-icon-sex-f {
1674	content: url(icons/sex-female.png);
1675}
1676
1677.wt-icon-sex-m {
1678	content: url(icons/sex-male.png);
1679}
1680
1681.wt-icon-sex-u {
1682	content: url(icons/sex-unknown.png);
1683}
1684
1685.wt-icon-sex-x {
1686	content: url(icons/sex-unknown.png);
1687}
1688
1689.wt-icon-source {
1690	content: url(icons/source.png);
1691}
1692
1693.wt-icon-submitter {
1694	content: url(icons/individual.png);
1695}
1696
1697.wt-icon-warning {
1698	content: url(icons/warning.png);
1699}
1700
1701.wt-icon-zoom-in {
1702	content: url(clouds/icons/zoom-in.png);
1703}
1704
1705.wt-icon-zoom-out {
1706	content: url(clouds/icons/zoom-out.png);
1707}
1708
1709/* Miscellaneous images */
1710.icon-indis {
1711	content: url(clouds/images/indis.png);
1712}
1713
1714.icon-patriarch {
1715	content: url(clouds/images/patriarch.png);
1716}
1717
1718.icon-pedigree {
1719	content: url(clouds/images/pedigree.png);
1720}
1721
1722.icon-sfamily {
1723	content: url(clouds/images/sfamily.png);
1724}
1725
1726.icon-user_add {
1727	content: url(clouds/images/user_add.png);
1728}
1729
1730/* Census assistant */
1731.wt-census-assistant-form-control:focus {
1732	min-width: 12rem;
1733}
1734
1735/*
1736 * Drag and drop sortable lists
1737 */
1738.wt-sortable-list {
1739}
1740
1741.wt-sortable-item {
1742	cursor: move;
1743}
1744
1745/* Some blocks show a reduced version on the right-hand side. */
1746.wt-side-blocks .wt-side-block-optional {
1747	display: none !important;
1748}
1749
1750/* my page chart enhancements */
1751.wt-block-content-charts {
1752	overflow: auto;
1753}
1754
1755/* Some charts are wider than the page. */
1756.wt-chart {
1757	overflow-x: auto;
1758	overflow-y: hidden;
1759}
1760
1761/* Fit thumbnail into parent on charts */
1762.select2-selection.select2-selection--single {
1763	min-height: 36px;
1764	height: auto;
1765	padding: 2px 0;
1766}
1767
1768.select2-container .select2-selection--single .select2-selection__rendered {
1769	padding-left: 2px;
1770}
1771
1772.select2-selection--single .NAME {
1773	padding-left: 4px;
1774}
1775
1776/*
1777 * Place hierarchy
1778 *
1779 * wt-place-hierarchy-page
1780 */
1781
1782#place-hierarchy ul {
1783	list-style-type: none;
1784}
1785
1786.d-table-cell {
1787	padding-right: 5px;
1788}
1789
1790/* Some menus (e.g. languages) can be longer than a page */
1791.dropdown-menu {
1792	max-height: 30rem;
1793	overflow-x: hidden;
1794}
1795
1796/* Forms */
1797.col-form-label {
1798	font-weight: bold;
1799}
1800