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