2010-03-03 12:29:33 +05:30
|
|
|
|
/*
|
2009-12-10 12:20:21 +05:30
|
|
|
|
#
|
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
|
#
|
2011-01-18 07:08:04 +05:30
|
|
|
|
# Copyright 2008-2011 Rob G. Healey <robhealey1@gmail.com>
|
2010-03-27 12:41:10 +05:30
|
|
|
|
# Copyright 2009 Stephane Charette
|
2009-12-10 12:20:21 +05:30
|
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
2019-12-14 16:25:16 +05:30
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
2009-12-10 12:20:21 +05:30
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
2014-08-09 07:59:07 +05:30
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2009-12-10 12:20:21 +05:30
|
|
|
|
#
|
|
|
|
|
|
2019-12-14 16:25:16 +05:30
|
|
|
|
*******************************************************************************
|
2008-10-22 00:27:42 +05:30
|
|
|
|
GRAMPS Cascading Style Sheet
|
2009-01-27 03:52:01 +05:30
|
|
|
|
Style Name: Visually Impaired Stylesheet
|
2008-10-22 00:27:42 +05:30
|
|
|
|
Style Author: Jason M. Simanek (2008)
|
2019-12-14 16:25:16 +05:30
|
|
|
|
*******************************************************************************
|
2008-07-16 12:37:21 +05:30
|
|
|
|
|
2019-12-14 16:25:16 +05:30
|
|
|
|
-------------------------------------------------------------------------------
|
2008-07-16 12:37:21 +05:30
|
|
|
|
Color Palette
|
2019-12-14 16:25:16 +05:30
|
|
|
|
-------------------------------------------------------------------------------
|
2009-11-06 13:34:41 +05:30
|
|
|
|
brown dark #453619, #542
|
2009-01-27 03:52:01 +05:30
|
|
|
|
brown light #C1B398
|
|
|
|
|
gray #696969
|
2009-11-03 09:48:05 +05:30
|
|
|
|
green dark #228A22
|
2009-08-27 18:51:55 +05:30
|
|
|
|
green #6AF364, #5D835F
|
2009-01-27 03:52:01 +05:30
|
|
|
|
green lighter #D8F3D6
|
|
|
|
|
|
|
|
|
|
===== Ancestor Graph Color Scheme =====
|
2009-03-01 08:34:25 +05:30
|
|
|
|
Males #E5F2FE
|
|
|
|
|
Females #FFC0CB
|
|
|
|
|
Unknown #000
|
2008-07-16 12:37:21 +05:30
|
|
|
|
|
2009-01-27 03:52:01 +05:30
|
|
|
|
===== Web Graphics =====
|
2009-03-01 08:34:25 +05:30
|
|
|
|
Males Web_Gender_Male.png
|
|
|
|
|
Females Web_Gender_Female.png
|
2008-07-16 12:37:21 +05:30
|
|
|
|
|
|
|
|
|
|
2009-09-24 02:01:21 +05:30
|
|
|
|
NarrativeWeb Styles
|
2019-12-14 16:25:16 +05:30
|
|
|
|
---------------------------------------------------------------------------- */
|
2010-03-03 12:29:33 +05:30
|
|
|
|
div#alphabet ul li {
|
|
|
|
|
background-color: #6AF364;
|
|
|
|
|
}
|
|
|
|
|
div#navigation ul li.CurrentSection a {
|
|
|
|
|
background-color: #000;
|
|
|
|
|
color: #FFF;
|
|
|
|
|
}
|
|
|
|
|
div#navigation ul li.CurrentSection a:hover {
|
|
|
|
|
background-color: 696969;
|
|
|
|
|
}
|
2010-04-17 07:04:43 +05:30
|
|
|
|
div#subnavigation ul li.CurrentSection a {
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
background-color: #453619;
|
|
|
|
|
color: #FFF;
|
|
|
|
|
}
|
|
|
|
|
div#subnavigation ul li.CurrentSection a:hover {
|
|
|
|
|
background-color: #000;
|
|
|
|
|
color: #FFF;
|
|
|
|
|
}
|
2009-09-26 22:41:03 +05:30
|
|
|
|
|
|
|
|
|
/* General Elements
|
|
|
|
|
----------------------------------------------------- */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
div {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0;
|
|
|
|
|
padding:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
border:none;
|
|
|
|
|
border-collapse:collapse;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
th {
|
2009-01-27 03:52:01 +05:30
|
|
|
|
font-weight:bold;
|
|
|
|
|
text-align:left;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding:1px 3em 1px 0.5em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
td {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
vertical-align:top;
|
|
|
|
|
padding:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
img {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
border:none;
|
|
|
|
|
margin:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.thumbnail a:hover {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
background:none;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.content {
|
2009-04-06 09:19:47 +05:30
|
|
|
|
margin:0 auto;
|
2009-11-18 13:35:58 +05:30
|
|
|
|
padding-bottom: .2em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.content div.snapshot {
|
2009-11-18 13:35:58 +05:30
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
background: none;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.content div.snapshot div.thumbnail {
|
2009-11-18 13:35:58 +05:30
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 2em 0 0 0;
|
|
|
|
|
background: none;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-04-06 09:19:47 +05:30
|
|
|
|
.content div.snapshot div.thumbnail a {
|
2009-11-18 13:35:58 +05:30
|
|
|
|
display: block;
|
|
|
|
|
width: 96px;
|
|
|
|
|
margin: 0 auto;
|
2009-04-06 09:19:47 +05:30
|
|
|
|
}
|
|
|
|
|
.fullclear {
|
|
|
|
|
width:100%;
|
|
|
|
|
height:1px;
|
|
|
|
|
margin:0;
|
|
|
|
|
padding:0;
|
|
|
|
|
clear:both;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* General Text
|
|
|
|
|
----------------------------------------------------- */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
h1 {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font:normal 2em/1.2em serif;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
h2 {
|
2009-07-15 05:23:07 +05:30
|
|
|
|
font:bold 2em/1.2em sans;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
h3 {
|
2009-01-27 03:52:01 +05:30
|
|
|
|
font:normal 2em/1.2em serif;
|
2009-04-06 09:19:47 +05:30
|
|
|
|
text-align:center;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
padding:.5em 20px .2em 20px;
|
2009-11-09 11:35:44 +05:30
|
|
|
|
border-bottom: double 4px #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
h4 {
|
2009-12-17 12:52:29 +05:30
|
|
|
|
font: normal 1.2em/1.2em serif;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #FFF;
|
2009-09-09 13:31:20 +05:30
|
|
|
|
margin-top: .3cm;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
padding:.2em 0 .2em 20px;
|
2009-11-06 13:34:41 +05:30
|
|
|
|
background-color: #453619;
|
|
|
|
|
border-width: 4px 0px 4px 0px;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-color: #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
h5, h6 {
|
2009-01-27 03:52:01 +05:30
|
|
|
|
font:normal 1em/1.2em serif;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font-style:italic;
|
|
|
|
|
margin:1.3em 0 .5em 1em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
p#description {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0;
|
|
|
|
|
padding:1em 20px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-06-24 04:04:14 +05:30
|
|
|
|
p#description:first-letter {
|
2009-11-18 13:35:58 +05:30
|
|
|
|
color: #903;
|
|
|
|
|
font-size: 36px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-style: italic;
|
2009-06-24 04:04:14 +05:30
|
|
|
|
}
|
2009-09-24 02:01:21 +05:30
|
|
|
|
p a {
|
|
|
|
|
color: #FFF;
|
|
|
|
|
text-decoration:underline;
|
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
sup {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
line-height:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
ol {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font:normal .9em/1.6em sans-serif;
|
|
|
|
|
margin-top:0;
|
|
|
|
|
margin-bottom:0;
|
|
|
|
|
padding-top:.5em;
|
|
|
|
|
padding-bottom:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-09-05 17:15:56 +05:30
|
|
|
|
ol li a {
|
|
|
|
|
text-decoration:none;
|
|
|
|
|
}
|
|
|
|
|
ol li a:hover {
|
2009-11-06 13:34:41 +05:30
|
|
|
|
text-decoration: none;
|
2009-09-05 17:15:56 +05:30
|
|
|
|
}
|
2009-09-24 02:01:21 +05:30
|
|
|
|
a {
|
|
|
|
|
color: #542;
|
|
|
|
|
}
|
|
|
|
|
a:visited {
|
|
|
|
|
color: #542;
|
|
|
|
|
}
|
|
|
|
|
a:hover {
|
|
|
|
|
color: #000;
|
|
|
|
|
background-color: #C1B398;
|
2009-11-06 13:34:41 +05:30
|
|
|
|
text-decoration: none;
|
2009-09-24 02:01:21 +05:30
|
|
|
|
}
|
2009-01-27 03:52:01 +05:30
|
|
|
|
span.preposition {
|
|
|
|
|
padding-left:1em;
|
|
|
|
|
padding-right:1em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2008-12-05 02:08:02 +05:30
|
|
|
|
.grampsid {
|
|
|
|
|
font:normal .8em/1.2em monospace;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #000;
|
2008-12-05 02:08:02 +05:30
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Header
|
|
|
|
|
----------------------------------------------------- */
|
2009-10-03 11:33:10 +05:30
|
|
|
|
div#header {
|
2009-08-27 18:51:55 +05:30
|
|
|
|
background-color: #542;
|
2009-09-10 12:20:56 +05:30
|
|
|
|
border-bottom: solid 8px #5D835F;
|
2009-11-03 09:48:05 +05:30
|
|
|
|
height: 60px;
|
2009-10-06 13:50:21 +05:30
|
|
|
|
width: 100%;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#SiteTitle {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0;
|
2009-09-01 05:40:10 +05:30
|
|
|
|
padding:.5em 0 0.5em 10px;
|
2009-11-03 09:48:05 +05:30
|
|
|
|
font-size: 28px;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #FFF;
|
2009-09-26 22:41:03 +05:30
|
|
|
|
font-style: italic;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
p#user_header {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font-size:1.3em;
|
|
|
|
|
text-align:left;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #6AF364;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0;
|
|
|
|
|
padding:.2em 0 .6em 20px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2008-10-22 00:27:42 +05:30
|
|
|
|
|
2009-04-03 05:34:29 +05:30
|
|
|
|
/* Footer
|
|
|
|
|
----------------------------------------------------- */
|
2009-10-03 11:33:10 +05:30
|
|
|
|
div#footer {
|
2010-05-03 17:52:10 +05:30
|
|
|
|
clear:both;
|
|
|
|
|
overflow:hidden;
|
|
|
|
|
width:100%;
|
2010-05-22 12:50:27 +05:30
|
|
|
|
height: 60px;
|
2010-05-03 17:52:10 +05:30
|
|
|
|
font-size:12px;
|
|
|
|
|
line-height:130%;
|
|
|
|
|
color:#FFF;
|
2010-05-22 12:50:27 +05:30
|
|
|
|
margin-top: .5cm;
|
2010-05-03 17:52:10 +05:30
|
|
|
|
background-color:#542;
|
|
|
|
|
border-top:solid 8px #5D835F;
|
2009-08-31 13:38:27 +05:30
|
|
|
|
}
|
2009-10-03 11:33:10 +05:30
|
|
|
|
div#footer a, div#footer a:visited {
|
2009-04-03 05:34:29 +05:30
|
|
|
|
text-decoration:none;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #FFF;
|
2009-04-03 05:34:29 +05:30
|
|
|
|
}
|
2009-10-03 11:33:10 +05:30
|
|
|
|
div#footer a:hover {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #000;
|
2009-11-06 13:34:41 +05:30
|
|
|
|
text-decoration: none;
|
2009-04-03 05:34:29 +05:30
|
|
|
|
}
|
2009-10-03 11:33:10 +05:30
|
|
|
|
div#footer img {
|
2009-04-03 05:34:29 +05:30
|
|
|
|
border:0;
|
|
|
|
|
margin:0 auto;
|
|
|
|
|
vertical-align:middle;
|
|
|
|
|
}
|
2009-10-03 11:33:10 +05:30
|
|
|
|
div#footer p#createdate {
|
2009-04-03 05:34:29 +05:30
|
|
|
|
float:left;
|
2009-07-15 05:23:07 +05:30
|
|
|
|
width:60%;
|
2009-04-03 05:34:29 +05:30
|
|
|
|
text-align:left;
|
|
|
|
|
margin-left:10px;
|
|
|
|
|
}
|
2009-10-03 11:33:10 +05:30
|
|
|
|
div#footer p#copyright {
|
2009-07-15 05:23:07 +05:30
|
|
|
|
float:right;
|
|
|
|
|
text-align:right;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #FFF;
|
2009-08-27 18:51:55 +05:30
|
|
|
|
margin: 10px 10px 0px 0px;
|
2009-04-03 05:34:29 +05:30
|
|
|
|
}
|
2009-10-03 11:33:10 +05:30
|
|
|
|
div#footer p#copyright img {
|
2009-07-15 05:23:07 +05:30
|
|
|
|
float:right;
|
2009-08-27 18:51:55 +05:30
|
|
|
|
margin-right: 10px;
|
2009-07-15 05:23:07 +05:30
|
|
|
|
}
|
2009-04-03 05:34:29 +05:30
|
|
|
|
#user_footer {
|
|
|
|
|
width:70%;
|
|
|
|
|
float:left;
|
|
|
|
|
margin:1em;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #6AF364;
|
2009-04-03 05:34:29 +05:30
|
|
|
|
}
|
|
|
|
|
#user_footer p {
|
|
|
|
|
font:normal 1em/1.2em serif;
|
|
|
|
|
margin:0;
|
|
|
|
|
padding:0;
|
|
|
|
|
}
|
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Main Table
|
|
|
|
|
----------------------------------------------------- */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
table.infolist {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
width:100%;
|
2009-09-09 13:31:20 +05:30
|
|
|
|
margin: 0;
|
2009-09-13 09:13:27 +05:30
|
|
|
|
padding: 0;
|
|
|
|
|
font-size: 12px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-04-06 09:19:47 +05:30
|
|
|
|
table.infolist thead tr th {
|
2009-09-24 02:01:21 +05:30
|
|
|
|
font:normal 1.1em/1.2em serif;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #000;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0;
|
|
|
|
|
padding:.2em 10px;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #6AF364;
|
2009-09-24 02:01:21 +05:30
|
|
|
|
border: solid 1px #5D835F;
|
2009-09-05 17:15:56 +05:30
|
|
|
|
}
|
|
|
|
|
table.infolist thead tr th a {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #000;
|
2009-09-05 17:15:56 +05:30
|
|
|
|
}
|
|
|
|
|
table.infolist thead tr th a:hover {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #C1B398;
|
2009-04-01 06:23:12 +05:30
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
table.infolist tr td {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font:normal 1.1em/1.4em serif;
|
|
|
|
|
vertical-align:middle;
|
2009-09-10 12:20:56 +05:30
|
|
|
|
padding: 6px 0 6px 10px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-09-05 17:15:56 +05:30
|
|
|
|
table.infolist tr td a {
|
|
|
|
|
display:block;
|
|
|
|
|
text-decoration:none;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #000;
|
2009-09-05 17:15:56 +05:30
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
table.infolist tr.BeginLetter td, table.infolist tr.BeginSurname td {
|
2009-11-18 13:35:58 +05:30
|
|
|
|
border-top: solid 1px #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table.infolist tr td.ColumnLetter {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
width:3%;
|
|
|
|
|
text-align:center;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table.infolist tbody tr td.ColumnBirth {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font-size:.9em;
|
|
|
|
|
width:10%;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table.infolist tbody tr td.ColumnDeath {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font-size:.9em;
|
|
|
|
|
width:10%;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table.infolist tbody tr td.ColumnRowLabel {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
width:2%;
|
|
|
|
|
padding-left:20px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table.infolist tbody tr td.ColumnType {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
width:6%;
|
|
|
|
|
padding-left:20px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table.infolist tbody tr td.ColumnPartner {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font-size:.9em;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #FFF;
|
2009-09-05 17:15:56 +05:30
|
|
|
|
}
|
|
|
|
|
table.infolist tbody tr td.ColumnPartner a {
|
|
|
|
|
display:block;
|
|
|
|
|
padding:.6em 10px;
|
|
|
|
|
vertical-align:middle;
|
2009-06-12 11:34:30 +05:30
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
table.infolist tbody tr td.ColumnParents {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font-size:.9em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2019-12-14 16:25:16 +05:30
|
|
|
|
table.infolist tbody tr td.ColumnParents span.father,
|
2009-06-12 11:34:30 +05:30
|
|
|
|
table.infolist tbody tr td.ColumnParents span.mother {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
display:block;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table.infolist tbody tr td.ColumnParents span.mother:before {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
content:"+ ";
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Surnames
|
|
|
|
|
----------------------------------------------------- */
|
2009-11-06 13:34:41 +05:30
|
|
|
|
#Surnames {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2009-07-15 05:23:07 +05:30
|
|
|
|
#SurnameDetail p#description {
|
|
|
|
|
padding-top:0;
|
|
|
|
|
}
|
2019-12-14 16:25:16 +05:30
|
|
|
|
table.surnamelist thead tr th.ColumnSurname,
|
2009-07-15 05:23:07 +05:30
|
|
|
|
#Surnames table.surnamelist tbody tr td.ColumnSurname {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
width:50%;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-04-06 09:19:47 +05:30
|
|
|
|
table.surnamelist thead tr th {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-04-06 09:19:47 +05:30
|
|
|
|
table.surnamelist thead tr th a, table.surnamelist thead tr th a:visited {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
display:block;
|
|
|
|
|
text-align:left;
|
|
|
|
|
text-decoration:none;
|
|
|
|
|
padding:.2em 10px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table.surnamelist thead tr th.ColumnLetter {
|
2009-11-06 13:34:41 +05:30
|
|
|
|
padding: 0px 10px 0px 20px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-09-13 09:13:27 +05:30
|
|
|
|
table.surnamelist tbody tr td {
|
|
|
|
|
background-color: #D8F3D6;
|
|
|
|
|
}
|
2009-09-22 03:52:45 +05:30
|
|
|
|
table.surnamelist tbody tr td.ColumnLetter a {
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
2009-07-15 05:23:07 +05:30
|
|
|
|
table.surnamelist tbody tr td.ColumnSurname {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #FFF;
|
2009-07-15 05:23:07 +05:30
|
|
|
|
}
|
2019-12-14 16:25:16 +05:30
|
|
|
|
table#SortByName thead tr th.ColumnSurname,
|
2009-07-15 05:23:07 +05:30
|
|
|
|
table#SortByCount thead tr th.ColumnQuantity {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #C1B398;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2019-12-14 16:25:16 +05:30
|
|
|
|
table#SortByName thead tr th.ColumnSurname a:after,
|
2009-07-15 05:23:07 +05:30
|
|
|
|
table#SortByCount thead tr th.ColumnQuantity a:after {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
content:" ↓";
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table#SortByName tbody tr td.ColumnSurname {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table#SortByName tbody tr td.ColumnSurname a {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
display:block;
|
|
|
|
|
padding:.1em 10px .3em 10px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-07-15 05:23:07 +05:30
|
|
|
|
table.surnamelist tbody tr td.ColumnSurname:hover,
|
|
|
|
|
table#SortByName tbody tr td.ColumnSurname:hover {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #C1B398;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table.surname {
|
2009-11-18 13:35:58 +05:30
|
|
|
|
border-bottom: solid 1px #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table.surname thead tr th.ColumnName {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
width:20%;
|
|
|
|
|
padding-left:20px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-11-03 09:48:05 +05:30
|
|
|
|
table.surname tbody tr td {
|
2009-11-18 13:35:58 +05:30
|
|
|
|
border-bottom: dashed 1px #5D835F;
|
2009-11-03 09:48:05 +05:30
|
|
|
|
background-color: #D8F3D6;
|
|
|
|
|
}
|
2009-09-22 03:52:45 +05:30
|
|
|
|
table.surname tbody tr td.ColumnName {
|
2009-09-24 02:01:21 +05:30
|
|
|
|
background-color: #FFF;
|
2009-09-22 03:52:45 +05:30
|
|
|
|
width:20%;
|
2009-09-24 02:01:21 +05:30
|
|
|
|
padding:0;
|
|
|
|
|
}
|
|
|
|
|
table.surname tbody tr td.ColumnName a {
|
|
|
|
|
display:block;
|
|
|
|
|
padding:.6em 10px .6em 20px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-11-06 13:34:41 +05:30
|
|
|
|
table.surname tbody tr td.ColumnName a span.grampsid {
|
|
|
|
|
color: #000;
|
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
table.surname tbody tr td.ColumnName:hover {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #C1B398;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-09-24 02:01:21 +05:30
|
|
|
|
table.surname tbody tr td.ColumnPartner {
|
|
|
|
|
background-color: #FFF;
|
|
|
|
|
}
|
2009-11-03 09:48:05 +05:30
|
|
|
|
table.surname tbody tr td.ColumnPartner a {
|
|
|
|
|
display:block;
|
|
|
|
|
padding:.6em 10px .6em 0px;
|
|
|
|
|
}
|
2019-12-14 16:25:16 +05:30
|
|
|
|
table.surname thead tr th.ColumnParents,
|
2009-07-15 05:23:07 +05:30
|
|
|
|
table.surname tbody tr td.ColumnParents {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
width:25%;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Individuals
|
|
|
|
|
----------------------------------------------------- */
|
2009-11-06 13:34:41 +05:30
|
|
|
|
div#Individuals {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2018-01-18 13:33:11 +05:30
|
|
|
|
div#Individuals table.IndividualList {
|
2009-09-29 11:46:35 +05:30
|
|
|
|
border-bottom: solid 1px #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2018-01-18 13:33:11 +05:30
|
|
|
|
div#Individuals table.IndividualList tbody tr td {
|
2009-09-29 11:46:35 +05:30
|
|
|
|
border-bottom: dashed 1px #5D835F;
|
|
|
|
|
background-color: #D8F3D6;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2018-01-18 13:33:11 +05:30
|
|
|
|
div#Individuals table.IndividualList tbody tr td a {
|
2009-09-29 11:46:35 +05:30
|
|
|
|
display: block;
|
|
|
|
|
padding: .6em 10px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2019-12-14 16:25:16 +05:30
|
|
|
|
div#Individuals table.IndividualList tbody tr td.ColumnSurname a:hover,
|
2018-01-18 13:33:11 +05:30
|
|
|
|
div#Individuals table.IndividualList tbody tr td.ColumnSurname a:active {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
cursor:default;
|
2009-09-29 11:46:35 +05:30
|
|
|
|
color: #000;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
background:none;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2018-01-18 13:33:11 +05:30
|
|
|
|
div#Individuals table.IndividualList tbody tr td.ColumnName {
|
2009-09-24 02:01:21 +05:30
|
|
|
|
background-color: #FFF;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2018-01-18 13:33:11 +05:30
|
|
|
|
div#Individuals table.IndividualList tbody tr td.ColumnName a {
|
2009-09-24 02:01:21 +05:30
|
|
|
|
vertical-align:middle;
|
|
|
|
|
}
|
2018-01-18 13:33:11 +05:30
|
|
|
|
div#Individuals table.IndividualList tbody tr td.ColumnPartner {
|
2009-09-24 02:01:21 +05:30
|
|
|
|
background-color: #FFF;
|
|
|
|
|
}
|
2009-09-29 11:46:35 +05:30
|
|
|
|
div#Individuals div table.infolist tr td p {
|
2009-05-23 13:17:59 +05:30
|
|
|
|
font:normal .9em/1.2em sans-serif;
|
|
|
|
|
vertical-align:top;
|
|
|
|
|
}
|
2009-09-29 11:46:35 +05:30
|
|
|
|
div#Individuals div table.infolist tr td p a {
|
2009-05-23 13:17:59 +05:30
|
|
|
|
display:inline;
|
|
|
|
|
}
|
2009-11-06 13:34:41 +05:30
|
|
|
|
div#IndividualDetail {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2009-05-23 13:17:59 +05:30
|
|
|
|
#IndividualDetail div table.infolist tr td {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font:normal .9em/1.2em sans-serif;
|
|
|
|
|
vertical-align:top;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-09-29 11:46:35 +05:30
|
|
|
|
div#IndividualDetail div table.infolist tr td a {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
display:inline;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-09-29 11:46:35 +05:30
|
|
|
|
div#IndividualDetail table.infolist tr td a:hover {
|
2009-11-06 13:34:41 +05:30
|
|
|
|
text-decoration: none;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-09-29 11:46:35 +05:30
|
|
|
|
div#IndividualDetail table.infolist tbody tr td.ColumnAttribute {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
width:10%;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-09-29 11:46:35 +05:30
|
|
|
|
div#IndividualDetail div.subsection table tr td:first-child {
|
2009-05-23 13:17:59 +05:30
|
|
|
|
padding-left:20px;
|
|
|
|
|
}
|
2011-07-11 00:31:30 +05:30
|
|
|
|
#familymap a.familymap {
|
|
|
|
|
margin-left:20px;
|
|
|
|
|
text-decoration:none;
|
|
|
|
|
color:rgb(0,0,0);
|
|
|
|
|
}
|
|
|
|
|
#familymap a.familymap:hover {
|
|
|
|
|
text-decoration:underline;
|
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
|
2011-09-13 08:56:38 +05:30
|
|
|
|
/* Subsections : Attributes
|
|
|
|
|
----------------------------------------------------- */
|
|
|
|
|
div#attributes {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
table.attrlist {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
table.attrlist thead tr th {
|
|
|
|
|
background-color: #70B1ED;
|
|
|
|
|
color: #000;
|
|
|
|
|
}
|
|
|
|
|
table.attrlist tbody tr td {
|
|
|
|
|
border-bottom: dashed 1px #000;
|
|
|
|
|
}
|
|
|
|
|
table.attrlist tbody tr td.ColumnType {
|
|
|
|
|
width: 15%;
|
|
|
|
|
}
|
|
|
|
|
table.attrlist tbody tr td.ColumnValue {
|
|
|
|
|
width: 15%;
|
|
|
|
|
}
|
|
|
|
|
table.attrlist tbody tr td.ColumnNotes {
|
|
|
|
|
width: 40%;
|
|
|
|
|
}
|
|
|
|
|
table.attrlist tbody tr td.ColumnSources {
|
|
|
|
|
width: 10%;
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-18 06:13:55 +05:30
|
|
|
|
/* Relationships
|
|
|
|
|
================================================= */
|
2011-08-22 01:04:27 +05:30
|
|
|
|
#Relationships table.relationships tr td {
|
|
|
|
|
background-color: rgb(216, 243, 214);
|
2011-08-18 06:13:55 +05:30
|
|
|
|
}
|
|
|
|
|
table.relationships thead tr th.ColumnMarriage,
|
|
|
|
|
table.relationships thead tr th.ColumnDivorce {
|
2011-08-22 01:04:27 +05:30
|
|
|
|
width: 13%;
|
2011-08-18 06:13:55 +05:30
|
|
|
|
}
|
|
|
|
|
table.relationships thead tr th.ColumnHyper {
|
|
|
|
|
width: 15%;
|
|
|
|
|
}
|
|
|
|
|
table.relationships thead tr th.ColumnMedia {
|
|
|
|
|
width: 15%;
|
|
|
|
|
}
|
|
|
|
|
table.relationships tbody tr td.ColumnRowLabel a {
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
2011-08-22 01:04:27 +05:30
|
|
|
|
#Relationships table.relationships tbody tr td.ColumnPartner {
|
|
|
|
|
background-color: white;
|
|
|
|
|
font-size: 100%;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2011-08-18 06:13:55 +05:30
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Places
|
|
|
|
|
----------------------------------------------------- */
|
2010-06-05 19:23:34 +05:30
|
|
|
|
|
|
|
|
|
div#Places table.infolist tbody tr td.ColumnLetter {
|
|
|
|
|
width: 3%;
|
2009-11-28 15:37:20 +05:30
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
#Places table.infolist tbody tr td.ColumnName {
|
2010-06-05 19:23:34 +05:30
|
|
|
|
padding:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#Places table.infolist tbody tr td.ColumnName a {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding:.1em 10px .3em 10px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2010-06-05 19:23:34 +05:30
|
|
|
|
div#Places table.infolist tbody tr td.ColumnLatitude,
|
|
|
|
|
div#Places table.infolist tbody tr td.ColumnLongitude {
|
|
|
|
|
width: 11%;
|
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
|
2009-10-07 06:49:42 +05:30
|
|
|
|
/* EventList and EventDetail
|
2009-08-21 06:07:59 +05:30
|
|
|
|
----------------------------------------------------- */
|
2009-11-06 13:34:41 +05:30
|
|
|
|
div#EventList, div#EventDetail {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2009-09-09 13:31:20 +05:30
|
|
|
|
div#events table.eventlist {
|
|
|
|
|
margin-top: .3cm;
|
|
|
|
|
}
|
2009-11-03 09:48:05 +05:30
|
|
|
|
div#events table.eventlist tbody tr td.ColumnEvent a {
|
|
|
|
|
padding: 2px 100px 2px 10px;
|
|
|
|
|
}
|
|
|
|
|
div#events table.eventlist tbody tr td.ColumnPlace a {
|
|
|
|
|
padding: 2px 70px 2px 0px;
|
2009-08-21 06:07:59 +05:30
|
|
|
|
}
|
2009-09-09 13:31:20 +05:30
|
|
|
|
table.eventlist tbody tr td {
|
2009-11-03 09:48:05 +05:30
|
|
|
|
background-color: #FFF;
|
2009-11-06 13:34:41 +05:30
|
|
|
|
border-bottom: dashed 1px #5D835F;
|
2009-08-21 06:07:59 +05:30
|
|
|
|
}
|
2009-09-29 05:22:05 +05:30
|
|
|
|
table.eventlist tbody tr td.ColumnEvent {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
width: 20%;
|
2009-08-29 14:05:47 +05:30
|
|
|
|
}
|
2009-09-09 13:31:20 +05:30
|
|
|
|
table.eventlist tbody tr td.ColumnDate {
|
2009-11-03 09:48:05 +05:30
|
|
|
|
background-color: #D8F3D6;
|
2009-09-13 09:13:27 +05:30
|
|
|
|
width: 16%;
|
2009-08-21 06:07:59 +05:30
|
|
|
|
}
|
2009-09-09 13:31:20 +05:30
|
|
|
|
table.eventlist tbody tr td.ColumnPlace {
|
2009-09-24 02:01:21 +05:30
|
|
|
|
background-color: #FFF;
|
2009-09-13 09:13:27 +05:30
|
|
|
|
width: 35%;
|
2009-09-09 13:31:20 +05:30
|
|
|
|
}
|
|
|
|
|
table.eventlist tbody tr td.ColumnSources {
|
2009-09-24 02:01:21 +05:30
|
|
|
|
background-color: #FFF;
|
2009-09-09 13:31:20 +05:30
|
|
|
|
width: 12%;
|
|
|
|
|
}
|
|
|
|
|
table.eventlist tbody tr td.ColumnNotes {
|
2009-11-03 09:48:05 +05:30
|
|
|
|
background-color: #D8F3D6;
|
2009-09-09 13:31:20 +05:30
|
|
|
|
width: 25%;
|
|
|
|
|
}
|
|
|
|
|
table.eventlist tbody tr td.ColumnPerson {
|
2009-09-13 09:13:27 +05:30
|
|
|
|
width: 35%;
|
2009-08-27 18:51:55 +05:30
|
|
|
|
}
|
2009-09-09 13:31:20 +05:30
|
|
|
|
table.eventlist tbody tr td.ColumnPartner {
|
2009-09-05 17:15:56 +05:30
|
|
|
|
width: 35%;
|
2009-08-27 18:51:55 +05:30
|
|
|
|
}
|
2009-11-03 09:48:05 +05:30
|
|
|
|
div#EventList table.eventlist tbody tr.BeginName {
|
2009-11-06 13:34:41 +05:30
|
|
|
|
border-top: solid 1px #5D835F;
|
2009-11-03 09:48:05 +05:30
|
|
|
|
}
|
|
|
|
|
div#EventList table.eventlist tbody tr td {
|
|
|
|
|
padding: 4px 0px 4px 0px;
|
|
|
|
|
}
|
2010-04-23 08:06:05 +05:30
|
|
|
|
div#EventList table.infolist tbody tr td.ColumnLetter a:hover {
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
2009-11-27 14:58:39 +05:30
|
|
|
|
div#EventList table.alphaevent {
|
|
|
|
|
padding: .3em 0 .3em 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
div#EventList table.alphaevent tbody tr.BeginEvent {
|
|
|
|
|
border-top: solid 1px #5D835F;
|
|
|
|
|
}
|
|
|
|
|
div#EventList table.alphaevent tbody tr td {
|
|
|
|
|
background-color: #D8F3D6;
|
|
|
|
|
border-bottom: dashed 1px #5D835F;
|
|
|
|
|
}
|
|
|
|
|
div#EventList table.alphaevent tbody tr td.ColumnType {
|
|
|
|
|
width: 15%;
|
|
|
|
|
}
|
2009-11-28 15:37:20 +05:30
|
|
|
|
div#EventList table.alphaevent tbody tr td.ColumnType a:hover {
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
2009-11-27 14:58:39 +05:30
|
|
|
|
div#EventList table.alphaevent tbody tr td.ColumnGRAMPSID {
|
2009-11-28 15:37:20 +05:30
|
|
|
|
background-color: #FFF;
|
|
|
|
|
width: 12%;
|
2009-11-27 14:58:39 +05:30
|
|
|
|
}
|
|
|
|
|
div#EventList table.alphaevent tbody tr td.ColumnDate {
|
2009-11-28 15:37:20 +05:30
|
|
|
|
width: 20%;
|
2009-11-27 14:58:39 +05:30
|
|
|
|
}
|
|
|
|
|
div#EventList table.alphaevent tbody tr td.ColumnPerson {
|
2009-11-28 15:37:20 +05:30
|
|
|
|
width: 60%;
|
|
|
|
|
}
|
2019-12-14 16:25:16 +05:30
|
|
|
|
div#EventList table.alphaevent tbody tr td.ColumnPerson span.father,
|
2009-11-28 15:37:20 +05:30
|
|
|
|
div#EventList table.alphaevent tbody tr td.ColumnPerson span.mother {
|
|
|
|
|
display:block;
|
|
|
|
|
}
|
|
|
|
|
div#EventList table.alphaevent tbody tr td.ColumnPerson span.mother:before {
|
|
|
|
|
content:"+ ";
|
2009-09-29 05:22:05 +05:30
|
|
|
|
}
|
2009-08-27 18:51:55 +05:30
|
|
|
|
div#EventDetail h3 {
|
2009-12-17 12:52:29 +05:30
|
|
|
|
font-size: 28px;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
}
|
2009-12-17 12:52:29 +05:30
|
|
|
|
div#EventDetail h3:first-letter {
|
|
|
|
|
color: #903;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
}
|
|
|
|
|
div#EventDetail table.eventlist {
|
2009-12-17 12:52:29 +05:30
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
div#EventDetail table.eventlist tbody tr {
|
|
|
|
|
border-top: dashed 1px #5D835F;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
}
|
|
|
|
|
div#EventDetail table.eventlist tbody tr td.ColumnAttribute {
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
width: 20%;
|
|
|
|
|
}
|
2009-12-12 13:08:10 +05:30
|
|
|
|
div#EventDetail table.eventlist tbody tr td.ColumnDate {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #D8F3D6;
|
2009-09-29 05:22:05 +05:30
|
|
|
|
border-top: solid 1px #5D835F;
|
2009-08-21 06:07:59 +05:30
|
|
|
|
}
|
2009-12-17 12:52:29 +05:30
|
|
|
|
div#EventDetail table.eventlist tbody tr td.ColumnPerson {
|
|
|
|
|
background-color: #D8F3D6;
|
|
|
|
|
}
|
2019-12-14 16:25:16 +05:30
|
|
|
|
|
2011-08-26 02:17:36 +05:30
|
|
|
|
/* Events
|
|
|
|
|
----------------------------------------------------- */
|
|
|
|
|
#EventList table.infolist tr.BeginType td {
|
|
|
|
|
border-top: dashed 1px #5D835F;
|
|
|
|
|
}
|
|
|
|
|
#EventList table.infolist tr.BeginLetter td {
|
|
|
|
|
border-top: solid 1px #5D835F;
|
|
|
|
|
}
|
2011-09-12 01:56:45 +05:30
|
|
|
|
#EventList table.infolist tr td a,
|
|
|
|
|
#EventDetail table.infolist tr td a {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
2019-12-14 16:25:16 +05:30
|
|
|
|
#EventList table.infolist tr td span.father,
|
2011-09-12 01:56:45 +05:30
|
|
|
|
#EventList table.infolist tr td span.mother,
|
|
|
|
|
#EventDetail table.infolist tr td span.father,
|
|
|
|
|
#EventDetail table.infolist tr td span.mother {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
#EventList table.infolist tr td span.person:after,
|
|
|
|
|
#EventList table.infolist tr td span.father:after,
|
|
|
|
|
#EventList table.infolist tr td span.mother:after,
|
|
|
|
|
#EventDetail table.infolist tr td span.person:after,
|
|
|
|
|
#EventDetail table.infolist tr td span.father:after,
|
|
|
|
|
#EventDetail table.infolist tr td span.mother:after {
|
|
|
|
|
content: ", ";
|
|
|
|
|
}
|
|
|
|
|
#EventList table.infolist tr td span.person:last-child:after,
|
|
|
|
|
#EventList table.infolist tr td span.father:last-child:after,
|
|
|
|
|
#EventList table.infolist tr td span.mother:last-child:after,
|
|
|
|
|
#EventDetail table.infolist tr td span.person:last-child:after,
|
|
|
|
|
#EventDetail table.infolist tr td span.father:last-child:after,
|
|
|
|
|
#EventDetail table.infolist tr td span.mother:last-child:after {
|
|
|
|
|
content: "";
|
|
|
|
|
}
|
2019-12-14 16:25:16 +05:30
|
|
|
|
#IndividualDetail div table.eventlist td.ColumnSources {
|
|
|
|
|
width: 5%;
|
|
|
|
|
}
|
|
|
|
|
#IndividualDetail div table.eventlist td.ColumnDate {
|
|
|
|
|
width: 15%;
|
|
|
|
|
}
|
|
|
|
|
#IndividualDetail div table.eventlist td.ColumnEvent {
|
|
|
|
|
width: 8%;
|
|
|
|
|
}
|
|
|
|
|
#IndividualDetail div table.eventlist td.ColumnEvent,
|
|
|
|
|
#IndividualDetail div table.eventlist td.ColumnDate,
|
|
|
|
|
#IndividualDetail div table.eventlist td.ColumnPlace {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2011-08-26 02:17:36 +05:30
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Gallery
|
|
|
|
|
----------------------------------------------------- */
|
2009-11-06 13:34:41 +05:30
|
|
|
|
#Gallery {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2009-12-14 11:48:33 +05:30
|
|
|
|
#Gallery table.infolist tbody tr td {
|
|
|
|
|
background-colo: #D8F3D6;
|
|
|
|
|
}
|
|
|
|
|
#Gallery table.infolist tbody tr td.ColumnRowLabel {
|
2009-12-14 12:34:37 +05:30
|
|
|
|
width: 5%;
|
2009-12-14 11:48:33 +05:30
|
|
|
|
padding-bottom: 0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#Gallery table.infolist tbody tr td.ColumnName {
|
2009-12-14 11:48:33 +05:30
|
|
|
|
width: 50%;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #FFF;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#Gallery table.infolist tbody tr td.ColumnName a {
|
2009-12-14 12:34:37 +05:30
|
|
|
|
display: block;
|
|
|
|
|
padding: .2em 10px .4em 10px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-12-14 11:48:33 +05:30
|
|
|
|
#Gallery table.infolist tbody tr td.ColumnDate {
|
2009-12-14 12:34:37 +05:30
|
|
|
|
width: 20%;
|
2009-12-14 11:48:33 +05:30
|
|
|
|
}
|
|
|
|
|
#Gallery table.infolist tbody tr td.ColumnMime {
|
|
|
|
|
width: 20%;
|
|
|
|
|
}
|
2009-11-03 09:48:05 +05:30
|
|
|
|
#Gallery table.gallerylist tbody tr td {
|
2009-11-06 13:34:41 +05:30
|
|
|
|
border-bottom: dashed 1px #5D835F;
|
2009-11-03 09:48:05 +05:30
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
#GalleryNav {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font:normal 1em/1em sans-serif;
|
|
|
|
|
margin:1em 0 0 0;
|
|
|
|
|
padding:1.2em 0 1.4em 0;
|
|
|
|
|
text-align:center;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#GalleryNav a {
|
2009-01-27 03:52:01 +05:30
|
|
|
|
font-weight:bold;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
text-decoration:none;
|
2009-11-18 13:35:58 +05:30
|
|
|
|
border: solid 1px #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#GalleryNav a#Previous {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding:.5em .7em .3em .7em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#GalleryNav a#Next {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding:.5em 1.9em .3em 1.9em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#GalleryPages {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0 1em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#GalleryCurrent {
|
2009-01-27 03:52:01 +05:30
|
|
|
|
font:bold 1.2em/1em sans-serif;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#GalleryTotal {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font-weight:normal;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#GalleryDisplay {
|
2009-02-04 13:01:15 +05:30
|
|
|
|
margin:0 auto;
|
|
|
|
|
padding:0;
|
|
|
|
|
position:relative;
|
|
|
|
|
overflow:hidden;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
text-align:center;
|
2009-11-09 11:35:44 +05:30
|
|
|
|
border: solid 1px #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#GalleryDisplay img {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0 auto;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#GalleryDetail div#summaryarea{
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0;
|
|
|
|
|
padding:2em 0 0 0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#GalleryDetail div#summaryarea h3 {
|
2009-01-27 03:52:01 +05:30
|
|
|
|
font:normal 1.2em/1.2em serif;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
text-align:center;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#GalleryDetail div h4 {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin-top:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#GalleryDetail div#summaryarea table.gallery {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding-bottom:0;
|
2009-11-06 13:34:41 +05:30
|
|
|
|
margin: 1.5em 0 0 0;
|
2009-11-18 13:35:58 +05:30
|
|
|
|
border-style: solid;
|
|
|
|
|
border-width: 2px 0 1px 0;
|
2009-11-06 13:34:41 +05:30
|
|
|
|
border-color: #5D835F;
|
2009-07-21 06:29:38 +05:30
|
|
|
|
}
|
2009-12-17 12:52:29 +05:30
|
|
|
|
#GalleryDetail table.exifdata {
|
|
|
|
|
margin: .2em 0 .2em 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
#GalleryDetail table.exifdata tbody tr {
|
2009-11-18 13:35:58 +05:30
|
|
|
|
border-top: solid 1px #5D835F;
|
2009-07-21 06:29:38 +05:30
|
|
|
|
}
|
2009-12-17 12:52:29 +05:30
|
|
|
|
#GalleryDetail table.exifdata tbody tr td.ColumnExifKeys {
|
|
|
|
|
width: 60%;
|
|
|
|
|
}
|
|
|
|
|
#GalleryDetail table.exifdata tbody tr td.ColumnMetaData {
|
|
|
|
|
width: 40%;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
2011-08-31 07:36:59 +05:30
|
|
|
|
/* Thumbnail Preview Reference Section
|
|
|
|
|
------------------------------------------------- */
|
|
|
|
|
body#ThumbnailPreview div#references {
|
|
|
|
|
background-color: #FFF;
|
|
|
|
|
color: #00029D;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
body#ThumbnailPreview div#references table.infolist tbody tr {
|
|
|
|
|
border-bottom: dashed 1px #000;
|
|
|
|
|
}
|
|
|
|
|
body#ThumbnailPreview div#references table.infolist tbody tr td.ColumnRowLabel a {
|
|
|
|
|
background: none;
|
|
|
|
|
width: 2%;
|
|
|
|
|
}
|
|
|
|
|
body#ThumbnailPreview div#references table.infolist tbody tr td.ColumnName {
|
|
|
|
|
width: 90%;
|
|
|
|
|
}
|
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Contact
|
|
|
|
|
----------------------------------------------------- */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
#Contact #summaryarea {
|
2009-11-06 13:34:41 +05:30
|
|
|
|
background-color: #D8F3D6;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
width:500px;
|
|
|
|
|
margin:0 auto;
|
|
|
|
|
padding:3em;
|
2009-11-18 13:35:58 +05:30
|
|
|
|
border: double 4px #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#Contact #summaryarea img {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
float:right;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
margin:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#researcher {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font:normal 1.5em/1.4em serif;
|
|
|
|
|
margin-top:.3em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#researcher h3 {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font:normal 1.2em/1.4em serif;
|
|
|
|
|
padding:0;
|
2009-05-11 07:58:15 +05:30
|
|
|
|
text-align:left;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#researcher span {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
float:left;
|
|
|
|
|
display:block;
|
|
|
|
|
font:normal .9em/1.4em serif;
|
|
|
|
|
margin-right:.4em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#streetaddress {
|
2009-05-11 07:58:15 +05:30
|
|
|
|
width:100%;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2011-01-18 07:25:40 +05:30
|
|
|
|
#locality, .locality {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
#city:after {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
content:",";
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#country {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
clear:left;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#email {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
clear:left;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#email a {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
text-decoration:none;
|
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
|
2019-12-14 16:25:16 +05:30
|
|
|
|
/* Download
|
2009-05-11 07:58:15 +05:30
|
|
|
|
----------------------------------------------------- */
|
2010-05-22 12:50:27 +05:30
|
|
|
|
div#Download {
|
2009-09-01 06:12:36 +05:30
|
|
|
|
margin: 0;
|
2009-05-11 07:58:15 +05:30
|
|
|
|
}
|
2009-10-06 13:50:21 +05:30
|
|
|
|
div#Download table.download {
|
2010-05-22 12:50:27 +05:30
|
|
|
|
border: solid 1px #000;
|
|
|
|
|
margin: .1cm 0px .5cm 0px;
|
2009-09-29 11:46:35 +05:30
|
|
|
|
width: 100%;
|
2009-05-11 07:58:15 +05:30
|
|
|
|
}
|
2009-10-06 13:50:21 +05:30
|
|
|
|
div#Download table.download tbody tr#Row02 {
|
2010-05-22 12:50:27 +05:30
|
|
|
|
border-bottom: solid 1px #000;
|
2009-05-23 13:17:59 +05:30
|
|
|
|
}
|
2019-12-14 16:25:16 +05:30
|
|
|
|
div#Download table.download tbody tr td {
|
2010-05-22 12:50:27 +05:30
|
|
|
|
border: solid 1px #000;
|
|
|
|
|
text-align: left;
|
|
|
|
|
padding: 5px 0px 5px 0px;
|
2009-05-11 07:58:15 +05:30
|
|
|
|
}
|
2010-05-22 12:50:27 +05:30
|
|
|
|
div#Download table.download td.ColumnFilename {
|
|
|
|
|
width: 30%;
|
2009-05-23 13:17:59 +05:30
|
|
|
|
}
|
2010-05-22 12:50:27 +05:30
|
|
|
|
div#Download table.download td.ColumnFilename a {
|
|
|
|
|
font-weight: bold;
|
2009-05-11 07:58:15 +05:30
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
2010-05-22 12:50:27 +05:30
|
|
|
|
div#Download table.download td.ColumnDescription {
|
|
|
|
|
width: 45%;
|
2009-09-29 11:46:35 +05:30
|
|
|
|
}
|
2010-05-22 12:50:27 +05:30
|
|
|
|
div#Download table.download td.ColumnModified {
|
|
|
|
|
width: 17%;
|
2009-05-11 07:58:15 +05:30
|
|
|
|
}
|
2010-05-22 12:50:27 +05:30
|
|
|
|
div#Download a.copyright a img {
|
|
|
|
|
float: center;
|
|
|
|
|
text-align: center;
|
2009-05-11 07:58:15 +05:30
|
|
|
|
}
|
|
|
|
|
|
2009-07-15 05:23:07 +05:30
|
|
|
|
/* Sources
|
|
|
|
|
----------------------------------------------------- */
|
|
|
|
|
#Sources { }
|
|
|
|
|
|
2009-09-29 11:46:35 +05:30
|
|
|
|
div#Sources table.infolist tbody tr td {
|
|
|
|
|
background-color: #D8F3D6;
|
|
|
|
|
}
|
|
|
|
|
div#Sources table.infolist tbody tr td.ColumnRowLabel {
|
2009-07-15 05:23:07 +05:30
|
|
|
|
padding-bottom:0;
|
|
|
|
|
}
|
2009-09-29 11:46:35 +05:30
|
|
|
|
div#Sources table.infolist tbody tr td.ColumnName {
|
2009-07-15 05:23:07 +05:30
|
|
|
|
padding:0;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #FFF;
|
2009-07-15 05:23:07 +05:30
|
|
|
|
}
|
2009-09-29 11:46:35 +05:30
|
|
|
|
div#Sources table.infolist tbody tr td.ColumnName a {
|
2009-07-15 05:23:07 +05:30
|
|
|
|
font-size:.9em;
|
|
|
|
|
padding:.1em 10px .3em 10px;
|
|
|
|
|
}
|
2009-09-29 11:46:35 +05:30
|
|
|
|
div#Sources table.infolist tbody tr td.ColumnName a:hover { }
|
2009-07-15 05:23:07 +05:30
|
|
|
|
|
2009-09-29 11:46:35 +05:30
|
|
|
|
div#SourceDetail div#references ol li {
|
2009-07-15 05:23:07 +05:30
|
|
|
|
padding-bottom:.5em;
|
|
|
|
|
}
|
2012-01-01 06:33:45 +05:30
|
|
|
|
div#SourceDetail {
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
div#SourceCitationReferents ol.Col1 {
|
2012-01-19 14:18:41 +05:30
|
|
|
|
list-style-type: decimal
|
2012-01-01 06:33:45 +05:30
|
|
|
|
}
|
|
|
|
|
div#SourceCitationReferents ol.Col2 {
|
2012-01-19 14:18:41 +05:30
|
|
|
|
list-style-type: upper-alpha
|
2012-01-01 06:33:45 +05:30
|
|
|
|
}
|
|
|
|
|
div#SourceCitationReferents ol.Col3 {
|
2012-01-19 14:18:41 +05:30
|
|
|
|
list-style-type: lower-alpha
|
2012-01-01 06:33:45 +05:30
|
|
|
|
}
|
|
|
|
|
div#SourceCitationReferents ol.Col4 {
|
2012-01-19 14:18:41 +05:30
|
|
|
|
list-style-type: disc
|
|
|
|
|
}
|
|
|
|
|
div#SourceCitationReferents ol.Col5 {
|
|
|
|
|
list-style-type: lower-roman
|
2012-01-01 06:33:45 +05:30
|
|
|
|
}
|
2009-07-15 05:23:07 +05:30
|
|
|
|
|
2009-11-05 23:48:49 +05:30
|
|
|
|
|
2009-07-15 05:23:07 +05:30
|
|
|
|
/* Repositories
|
|
|
|
|
------------------------------------------------------ */
|
2009-11-05 23:48:49 +05:30
|
|
|
|
div#RepositoryList {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2009-09-29 11:46:35 +05:30
|
|
|
|
div#RepositoryList table.repolist tbody tr td {
|
|
|
|
|
background-color: #D8F3D6;
|
|
|
|
|
}
|
|
|
|
|
div#RepositoryList table.repolist tbody tr td a {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: .3em 10px;
|
|
|
|
|
}
|
2009-09-26 22:41:03 +05:30
|
|
|
|
div#RepositoryList table.repolist tbody tr td.ColumnRowLabel {
|
2009-09-29 11:46:35 +05:30
|
|
|
|
width: 9%;
|
2009-09-26 22:41:03 +05:30
|
|
|
|
}
|
|
|
|
|
div#RepositoryList table.repolist tbody tr td.ColumnType {
|
2009-09-29 11:46:35 +05:30
|
|
|
|
width: 15%;
|
2009-09-26 22:41:03 +05:30
|
|
|
|
}
|
|
|
|
|
div#RepositoryList table.repolist tbody tr td.ColumnName {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #FFF;
|
2009-07-15 05:23:07 +05:30
|
|
|
|
}
|
|
|
|
|
|
2009-11-09 10:07:49 +05:30
|
|
|
|
/* Address Book
|
2009-11-05 23:48:49 +05:30
|
|
|
|
------------------------------------------------------ */
|
2009-11-09 10:07:49 +05:30
|
|
|
|
div#AddressBookList, AddressBookDetail {
|
2009-11-05 23:48:49 +05:30
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2009-11-09 10:07:49 +05:30
|
|
|
|
div#AddressBookList table.addressbook {
|
2009-11-05 23:48:49 +05:30
|
|
|
|
margin: .3em 0 .3em 0;
|
|
|
|
|
}
|
2009-11-09 10:07:49 +05:30
|
|
|
|
div#AddressBookList table.addressbook tbody tr.Totals {
|
|
|
|
|
border: solid 1px #5D835F;
|
2009-11-05 23:48:49 +05:30
|
|
|
|
}
|
2009-11-09 10:07:49 +05:30
|
|
|
|
div#AddressBookList tble.addressbook tbody tr.Totals td {
|
|
|
|
|
text-align: left;
|
|
|
|
|
background-color: #D8F3D6;
|
2009-11-05 23:48:49 +05:30
|
|
|
|
}
|
2009-11-09 10:07:49 +05:30
|
|
|
|
div#AddressBookList table.addressbook tbody tr td {
|
2009-11-05 23:48:49 +05:30
|
|
|
|
background-color: #D8F3D6;
|
2009-11-09 10:07:49 +05:30
|
|
|
|
text-align: center;
|
|
|
|
|
border: solid 1px #5D835F;
|
2009-11-05 23:48:49 +05:30
|
|
|
|
}
|
2009-11-09 10:07:49 +05:30
|
|
|
|
div#AddressBookList table.addressbook tbody tr td.ColumnRowLabel {
|
|
|
|
|
width: 4%;
|
2009-11-05 23:48:49 +05:30
|
|
|
|
}
|
2009-11-09 10:07:49 +05:30
|
|
|
|
div#AddressBookList table.addressbook tbody tr td.ColumnName {
|
|
|
|
|
background-color: #FFF;
|
|
|
|
|
text-align: left;
|
2009-11-05 23:48:49 +05:30
|
|
|
|
width: 70%;
|
|
|
|
|
}
|
2009-11-09 10:07:49 +05:30
|
|
|
|
div#AddressBookList table.addressbook tbody tr td.ColumnName a {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 6px 0px 6px 0px;
|
|
|
|
|
}
|
|
|
|
|
div#AddressBookList table.addressbook tbody tr td.ColumnAddress {
|
|
|
|
|
width: 8%;
|
|
|
|
|
}
|
|
|
|
|
div#AddressBookList table.adressbook tbody tr td.ColumnResidence {
|
|
|
|
|
width: 8%;
|
|
|
|
|
}
|
|
|
|
|
div#AddressBookList table.addressbook tbody tr td.ColumnWebLinks {
|
|
|
|
|
width: 8%;
|
|
|
|
|
}
|
2009-11-05 23:48:49 +05:30
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Subsections
|
|
|
|
|
----------------------------------------------------- */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
#Home, #Introduction, #Contact {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding:2em 0 3em 0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-05-23 13:17:59 +05:30
|
|
|
|
#Home p, #Introduction p {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0 20px 1em 20px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-05-23 13:17:59 +05:30
|
|
|
|
#Home img, #Introduction img {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
float:right;
|
|
|
|
|
margin:0;
|
|
|
|
|
padding:0 20px 3em 2em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2011-01-18 06:47:55 +05:30
|
|
|
|
#Home a, #Introduction a, #Contact a {
|
|
|
|
|
color: #000;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
div.subsection{
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding-bottom:.5em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div.subsection h4 {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin-bottom:.5em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2011-07-11 00:31:30 +05:30
|
|
|
|
div.subsection table, div.subsection ol, div.subsection p, div.subsection > a {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font-size:.9em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div.subsection a {
|
2010-05-03 16:00:15 +05:30
|
|
|
|
text-decoration:unerline;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div.subsection a:hover {
|
2009-01-27 03:52:01 +05:30
|
|
|
|
text-decoration:underline;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div.subsection table.infolist {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
width:100%;
|
|
|
|
|
margin:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Subsections : Events
|
|
|
|
|
----------------------------------------------------- */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
div#events {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding-bottom:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div#events h4 {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin-bottom:0;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
border:none;
|
|
|
|
|
}
|
2009-08-11 18:19:27 +05:30
|
|
|
|
#IndividualDetail {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #FFF;
|
2009-09-05 17:15:56 +05:30
|
|
|
|
}
|
|
|
|
|
#IndividualDetail div#events table.eventtable {
|
|
|
|
|
width:100%;
|
|
|
|
|
padding-top:15px;
|
2009-08-11 18:19:27 +05:30
|
|
|
|
}
|
2009-01-27 03:52:01 +05:30
|
|
|
|
#IndividualDetail div#events table.infolist thead tr th {
|
|
|
|
|
font-weight:bold;
|
2009-09-05 17:15:56 +05:30
|
|
|
|
font-size:10px;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
line-height:12px;
|
|
|
|
|
text-transform:uppercase;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #542;
|
2009-09-05 17:15:56 +05:30
|
|
|
|
padding-top:6px 0 4px 0;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #6AF364;
|
2009-05-23 13:17:59 +05:30
|
|
|
|
}
|
2009-01-27 03:52:01 +05:30
|
|
|
|
#IndividualDetail div#events table.infolist thead tr th:first-child {
|
|
|
|
|
padding-left:20px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#IndividualDetail div#events table.infolist tbody tr td {
|
2009-09-24 02:01:21 +05:30
|
|
|
|
padding-top:.4em;
|
|
|
|
|
padding-bottom:.8em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#IndividualDetail div#events table.infolist tbody tr td.ColumnAttribute {
|
2009-11-09 11:35:44 +05:30
|
|
|
|
border-bottom: solid 1px #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#IndividualDetail div#events table.infolist tbody tr td.ColumnValue {
|
2009-11-09 11:35:44 +05:30
|
|
|
|
border-bottom:solid 1px #5D835F
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
table.infolist tbody tr td.ColumnValue p {
|
2009-09-24 02:01:21 +05:30
|
|
|
|
font-family:sans-serif;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #696969;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:.2em 0 0 2em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Subsections : Attributes
|
|
|
|
|
----------------------------------------------------- */
|
2009-11-09 10:07:49 +05:30
|
|
|
|
div#attributes {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2009-09-10 11:45:53 +05:30
|
|
|
|
table.attrlist {
|
2009-09-09 13:31:20 +05:30
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2010-04-14 10:31:37 +05:30
|
|
|
|
table.attrlist thead tr th.ColumnType {
|
|
|
|
|
border: none;
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
|
|
|
|
table.attrlist thead tr th.ColumnAttribute {
|
|
|
|
|
border: none;
|
|
|
|
|
background: none;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
}
|
|
|
|
|
table.attrlist tbody tr td {
|
2009-09-09 13:31:20 +05:30
|
|
|
|
background-color: #D8F3D6;
|
2010-04-14 10:31:37 +05:30
|
|
|
|
border-bottom: dashed 1px #5D835F;
|
2009-08-09 13:25:53 +05:30
|
|
|
|
}
|
2009-09-10 11:45:53 +05:30
|
|
|
|
table.attrlist tbody tr td.ColumnType {
|
2010-04-14 10:31:37 +05:30
|
|
|
|
border: none;
|
|
|
|
|
background: none;
|
2009-08-09 13:25:53 +05:30
|
|
|
|
}
|
2009-11-09 10:07:49 +05:30
|
|
|
|
table.attrlist tbody tr td.ColumnAttribute {
|
2010-04-14 10:31:37 +05:30
|
|
|
|
border: none;
|
|
|
|
|
background: none;
|
2009-08-09 13:25:53 +05:30
|
|
|
|
}
|
2010-04-14 10:31:37 +05:30
|
|
|
|
table.attrlist tbody tr td.ColumnAttrType {
|
|
|
|
|
width: 15%;
|
2009-09-09 13:31:20 +05:30
|
|
|
|
}
|
2010-04-14 10:31:37 +05:30
|
|
|
|
table.attrlist tbody tr td.ColumnAttrValue {
|
|
|
|
|
width: 15%;
|
2009-08-09 13:25:53 +05:30
|
|
|
|
}
|
2010-04-14 10:31:37 +05:30
|
|
|
|
table.attrlist tbody tr td.ColumnAttrNotes {
|
|
|
|
|
width: 45%;
|
2009-09-16 12:09:18 +05:30
|
|
|
|
background-color: #D8F3D6;
|
|
|
|
|
}
|
2010-04-14 10:31:37 +05:30
|
|
|
|
table.attrlist tbody tr td.ColumnAttrSources {
|
|
|
|
|
background-color: #FFF;
|
|
|
|
|
width: 15%;
|
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Subsections : Parents
|
|
|
|
|
----------------------------------------------------- */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
div#parents table.infolist {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin-top:.5em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div#parents table.infolist tbody tr td.ColumnAttribute {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
width:19%;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div#parents table.infolist tbody tr td.ColumnValue ol {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0;
|
|
|
|
|
padding-top:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div#parents table.infolist tbody tr td.ColumnValue ol li {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding-bottom:.2em;
|
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Subsections : Families
|
|
|
|
|
----------------------------------------------------- */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
div#families table.infolist {
|
2009-09-09 13:31:20 +05:30
|
|
|
|
margin: .3cm 0 .3cm 0;
|
2009-08-02 07:37:39 +05:30
|
|
|
|
}
|
2009-09-10 11:45:53 +05:30
|
|
|
|
div#Families table.infolist tbody tr td { }
|
|
|
|
|
|
2009-09-09 13:31:20 +05:30
|
|
|
|
div#families table.infolist tbody tr td.ColumnValue {
|
|
|
|
|
background-color: #FFF;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div#families table.infolist tbody tr td.ColumnValue p {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin-top:0;
|
2019-12-14 16:25:16 +05:30
|
|
|
|
margin-left:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div#families table.infolist tbody tr td.ColumnValue ol {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0;
|
|
|
|
|
padding-top:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div#families table.infolist tbody tr td.ColumnValue ol li {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding-bottom:.2em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2011-07-13 02:18:31 +05:30
|
|
|
|
div#families table.fixed_subtables table.eventlist {
|
|
|
|
|
table-layout:fixed;
|
|
|
|
|
}
|
|
|
|
|
div#families table.fixed_subtables table.eventlist th:first-child {
|
|
|
|
|
width:9em;
|
|
|
|
|
}
|
|
|
|
|
div#families table.fixed_subtables table.eventlist th:last-child {
|
|
|
|
|
width:5em;
|
|
|
|
|
}
|
2011-09-21 17:51:20 +05:30
|
|
|
|
div#families table.attrlist td.ColumnType {
|
|
|
|
|
width: 15%;
|
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
|
2009-08-03 14:13:14 +05:30
|
|
|
|
/* Subsection: LDS Ordinance
|
|
|
|
|
------------------------------------------------------ */
|
|
|
|
|
div#LDSOrdinance { }
|
|
|
|
|
|
|
|
|
|
div#LDSOrdinance table.ldsordlist {
|
|
|
|
|
font-size:.35cm;
|
|
|
|
|
}
|
|
|
|
|
table.ldsordlist {
|
|
|
|
|
margin-bottom:.5em;
|
|
|
|
|
}
|
|
|
|
|
table.ldsordlist tbody tr td {
|
2009-11-18 13:35:58 +05:30
|
|
|
|
border-bottom: solid 1px #5D835F;
|
2009-08-03 14:13:14 +05:30
|
|
|
|
}
|
|
|
|
|
table.ldsordlist tbody tr td.ColumnLDSType {
|
|
|
|
|
width:12%;
|
|
|
|
|
}
|
|
|
|
|
table.ldsordlist tbody tr td.ColumnLDSDate {
|
|
|
|
|
width:15%;
|
|
|
|
|
}
|
|
|
|
|
table.ldsordlist tbody tr td.ColumnLDSTemple {
|
|
|
|
|
width:10%;
|
|
|
|
|
}
|
|
|
|
|
table.ldsordlist tbody tr td.ColumnLDSPlace {
|
|
|
|
|
width:35%;
|
|
|
|
|
}
|
|
|
|
|
table.ldsordlist tbody tr td.ColumnLDSStatus {
|
2011-08-26 02:17:36 +05:30
|
|
|
|
width:8%;
|
2009-08-03 14:13:14 +05:30
|
|
|
|
}
|
|
|
|
|
table.ldsordlist tbody tr td.ColumnLDSSealed {
|
|
|
|
|
width:25%;
|
|
|
|
|
}
|
|
|
|
|
table.ldsordlist tbody tr td.ColumnLDSSources {
|
|
|
|
|
width:7%;
|
|
|
|
|
margin-top:.2cm;
|
|
|
|
|
}
|
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Subsections : Addresses
|
|
|
|
|
----------------------------------------------------- */
|
2009-08-04 14:28:17 +05:30
|
|
|
|
div#Addresses {
|
2009-11-09 10:07:49 +05:30
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-08-04 14:28:17 +05:30
|
|
|
|
div#Addresses table.infolist {
|
2009-11-09 10:07:49 +05:30
|
|
|
|
font-size: 12px;
|
2010-03-02 06:46:46 +05:30
|
|
|
|
background-color: #D8F3D6;
|
2009-08-04 14:28:17 +05:30
|
|
|
|
}
|
|
|
|
|
div#Addresses table.infolist tbody tr td {
|
2009-11-09 10:07:49 +05:30
|
|
|
|
border-bottom: solid 1px #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-08-04 14:28:17 +05:30
|
|
|
|
div#Addresses table.infolist tbody tr td.ColumnDate {
|
2009-11-09 10:07:49 +05:30
|
|
|
|
width: 15%;
|
2009-08-04 14:28:17 +05:30
|
|
|
|
}
|
|
|
|
|
div#Addresses table.infolist tbody tr td.ColumnStreetAddress {
|
2009-11-09 10:07:49 +05:30
|
|
|
|
width: 30%;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-08-04 14:28:17 +05:30
|
|
|
|
div#Addresses table.infolist tbody tr td.ColumnCity {
|
2009-11-09 10:07:49 +05:30
|
|
|
|
width: 8%;
|
2009-08-04 14:28:17 +05:30
|
|
|
|
}
|
|
|
|
|
div#Addresses table.infolist tbody tr td.ColumnCounty {
|
2010-03-02 06:46:46 +05:30
|
|
|
|
width: 8%;
|
2009-08-04 14:28:17 +05:30
|
|
|
|
}
|
|
|
|
|
div#Addresses table.infolist tbody tr td.ColumnState {
|
2009-11-09 10:07:49 +05:30
|
|
|
|
width: 12%;
|
2009-08-04 14:28:17 +05:30
|
|
|
|
}
|
|
|
|
|
div#Addresses table.infolist tbody tr td.ColumnCntry {
|
2009-11-09 10:07:49 +05:30
|
|
|
|
width: 5%;
|
2009-08-04 14:28:17 +05:30
|
|
|
|
}
|
|
|
|
|
div#Addresses table.infolist tbody tr td.ColumnPostalcode {
|
2009-11-09 10:07:49 +05:30
|
|
|
|
width: 10%;
|
2009-08-04 14:28:17 +05:30
|
|
|
|
}
|
|
|
|
|
div#Addresses table.infolist tbody tr td.ColumnPhone {
|
2009-11-09 10:07:49 +05:30
|
|
|
|
width: 15%;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2011-08-26 02:17:36 +05:30
|
|
|
|
div#Addresses table.infolist tr td a, div#Addresses table.infolist tr td p a {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Subsections : Gallery
|
|
|
|
|
----------------------------------------------------- */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
#indivgallery h4 {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin-bottom:1em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-08-07 03:34:52 +05:30
|
|
|
|
#indivgallery .thumbnail {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
float:left;
|
|
|
|
|
width:130px;
|
|
|
|
|
height:150px;
|
|
|
|
|
text-align:center;
|
|
|
|
|
}
|
2009-08-07 03:34:52 +05:30
|
|
|
|
#indivgallery div.thumbnail a {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
display:block;
|
|
|
|
|
margin:0;
|
|
|
|
|
padding:0;
|
|
|
|
|
background:none;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-08-07 03:34:52 +05:30
|
|
|
|
#indivgallery div.thumbnail a img {
|
|
|
|
|
margin-bottom:.5cm;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding:0;
|
2009-11-18 13:35:58 +05:30
|
|
|
|
border: solid 1px #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2011-08-20 00:40:49 +05:30
|
|
|
|
#indivgallery div.thumbnail span {
|
2010-10-14 06:06:36 +05:30
|
|
|
|
/* ## remove this line and the comment markers from the line below to hide the description in Individual Gallery
|
|
|
|
|
display: none; */
|
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font:normal .7em/1.4em sans-serif;
|
|
|
|
|
text-align:center;
|
|
|
|
|
width:80%;
|
|
|
|
|
margin:0 auto;
|
|
|
|
|
padding:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Subsections : Narrative
|
|
|
|
|
----------------------------------------------------- */
|
2011-08-26 02:17:36 +05:30
|
|
|
|
div.narrative {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding-bottom:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2011-08-26 02:17:36 +05:30
|
|
|
|
.narrative p {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font:normal .9em/1.4em sans-serif;
|
|
|
|
|
margin-top:.5em;
|
|
|
|
|
margin-bottom:0;
|
|
|
|
|
padding:0 20px 1em 20px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Subsections : References
|
|
|
|
|
----------------------------------------------------- */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Subsections : Source References
|
|
|
|
|
----------------------------------------------------- */
|
2009-04-06 09:19:47 +05:30
|
|
|
|
div#sourcerefs {
|
2009-12-12 13:08:10 +05:30
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0 auto;
|
2009-04-06 09:19:47 +05:30
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
div#sourcerefs ol {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
list-style-type:decimal;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div#sourcerefs ol li ol {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
list-style-type:lower-alpha;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Subsections : Summary Area
|
|
|
|
|
----------------------------------------------------- */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
div#summaryarea {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #FFF;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div#summaryarea table.infolist {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:0;
|
|
|
|
|
padding:0;
|
2009-09-05 17:15:56 +05:30
|
|
|
|
background:#FFF;
|
2009-11-18 13:35:58 +05:30
|
|
|
|
border-bottom: solid .7em #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div#summaryarea table.infolist tr td, div#summaryarea table.infolist tr td p {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font:normal .9em/1.2em sans-serif;
|
|
|
|
|
vertical-align:top;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div#summaryarea table.infolist tr td a, div#summaryarea table.infolist tr td p a {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
display:inline;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
div#summaryarea table.infolist tbody tr td.ColumnAttribute {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
width:14%;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #696969;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding-left:20px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
2009-01-27 03:52:01 +05:30
|
|
|
|
/* Subsections : Weblinks
|
2008-10-22 00:27:42 +05:30
|
|
|
|
----------------------------------------------------- */
|
2010-03-27 12:41:10 +05:30
|
|
|
|
div#WebLinks {
|
|
|
|
|
margin : 0 auto;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2010-06-04 09:34:24 +05:30
|
|
|
|
table.WebLinks {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
table.weblinks tbody tr td {
|
2010-03-27 12:41:10 +05:30
|
|
|
|
background-color: #6AF364;
|
|
|
|
|
border-bottom: dashed 1px #000;
|
|
|
|
|
}
|
2010-06-04 09:34:24 +05:30
|
|
|
|
table.weblinks tbody tr td.ColumnType {
|
|
|
|
|
width: 20%;
|
2010-03-27 12:41:10 +05:30
|
|
|
|
}
|
2010-06-04 09:34:24 +05:30
|
|
|
|
table.WebLinks tbody tr td.ColumnPath {
|
2010-04-14 10:31:37 +05:30
|
|
|
|
background-color: #FFF;
|
2010-06-04 09:34:24 +05:30
|
|
|
|
width: 50%;
|
|
|
|
|
}
|
|
|
|
|
table.weblinks tbody tr td.ColumnDescription {
|
2010-03-27 12:41:10 +05:30
|
|
|
|
width: 30%;
|
|
|
|
|
}
|
|
|
|
|
|
2008-07-16 12:37:21 +05:30
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Subsections : Pedigree
|
|
|
|
|
----------------------------------------------------- */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
div#pedigree {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding-bottom:1.2em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#pedigree a {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
text-decoration:none;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #000;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
#pedigree a:hover {
|
2009-01-27 03:52:01 +05:30
|
|
|
|
text-decoration:underline;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.pedigreegen {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font:normal .9em/1.2em sans-serif;
|
|
|
|
|
list-style:none;
|
|
|
|
|
margin:.5em 0 0 0;
|
|
|
|
|
padding:0 0 0 20px;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.pedigreegen li ol {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
list-style:none;
|
|
|
|
|
margin-left:.5em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.pedigreegen li ol li ol {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font:normal 1em/1.4em sans-serif;
|
|
|
|
|
list-style:decimal;
|
|
|
|
|
margin-left:1.6em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.pedigreegen li ol li ol li ol.spouselist {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
list-style:none;
|
|
|
|
|
margin-left:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.spouselist li.spouse ol {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
list-style:decimal;
|
|
|
|
|
margin-left:1.6em;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.spouse a {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font-weight:normal;
|
|
|
|
|
font-style:normal;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #000;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.spouse:before {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
content: "+ ";
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.thisperson {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font-weight:bold;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
|
2008-10-22 00:27:42 +05:30
|
|
|
|
/* Calendar Styles
|
|
|
|
|
-------------------------------------------------------------------------------------------- */
|
|
|
|
|
/* Calendar : General */
|
2009-01-27 03:52:01 +05:30
|
|
|
|
body#WebCal {
|
2009-10-08 11:18:43 +05:30
|
|
|
|
background-color: #FFF;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
.calendar {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
empty-cells:show;
|
|
|
|
|
width:100%;
|
|
|
|
|
font-size:1em;
|
|
|
|
|
font-weight:normal;
|
|
|
|
|
margin:0;
|
|
|
|
|
padding:0;
|
|
|
|
|
border:none;
|
|
|
|
|
border-collapse:collapse;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.calendar thead tr th {
|
2009-01-27 03:52:01 +05:30
|
|
|
|
width:14%;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font-weight:normal;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
font-size:18px;
|
|
|
|
|
line-height:18px;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
text-align:center;
|
|
|
|
|
text-transform:uppercase;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
padding:2px 0;
|
2008-12-05 02:08:02 +05:30
|
|
|
|
}
|
2008-07-16 12:37:21 +05:30
|
|
|
|
.calendar thead tr th.monthName {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
width:100%;
|
|
|
|
|
font-size:2em;
|
|
|
|
|
line-height:100%;
|
|
|
|
|
text-transform:none;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #542;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
padding:.3em 0 .2em 0;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #FFF;
|
2019-12-12 22:40:25 +05:30
|
|
|
|
vertical-align: top;
|
|
|
|
|
height: 2em;
|
2009-02-08 02:11:27 +05:30
|
|
|
|
}
|
2019-12-14 16:25:16 +05:30
|
|
|
|
.calendar thead tr th.weekend,
|
2009-01-27 03:52:01 +05:30
|
|
|
|
.calendar thead tr th.weekday {
|
|
|
|
|
font-style:italic;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #000;
|
|
|
|
|
background-color: #6AF364;
|
2009-11-09 11:35:44 +05:30
|
|
|
|
border: solid 2px #5D835F;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
}
|
|
|
|
|
.calendar tfoot tr td {
|
|
|
|
|
padding:.7em 5% 1em 5%;
|
2009-04-01 06:23:12 +05:30
|
|
|
|
border-top:solid 2px #000;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
vertical-align:middle;
|
2009-11-09 11:35:44 +05:30
|
|
|
|
color: #000;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #D8F3D6;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2008-12-05 02:08:02 +05:30
|
|
|
|
|
|
|
|
|
/* Calendar : Date Numeral */
|
2009-01-27 03:52:01 +05:30
|
|
|
|
.calendar tbody tr td div.date {
|
|
|
|
|
float:right;
|
|
|
|
|
display:block;
|
|
|
|
|
width:1.8em;
|
|
|
|
|
font-size:1.2em;
|
|
|
|
|
line-height:100%;
|
|
|
|
|
text-align:center;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #542;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
margin:0 0 0 .5em;
|
|
|
|
|
padding:.2em 0;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #D8F3D6;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
}
|
2008-12-05 02:08:02 +05:30
|
|
|
|
|
|
|
|
|
/* Calendar : Date Container */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
.calendar tbody tr td {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
vertical-align:top;
|
|
|
|
|
height:10em;
|
|
|
|
|
padding:0;
|
|
|
|
|
border-width:1px 0 0 1px;
|
|
|
|
|
border-style:solid;
|
2009-11-09 11:35:44 +05:30
|
|
|
|
border-color: #5D835F;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
}
|
|
|
|
|
.calendar tbody tr td.weekday {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #FFF;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
}
|
|
|
|
|
.calendar tbody tr td.weekend {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
background-color: #D8F3D6;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2008-10-22 00:27:42 +05:30
|
|
|
|
.calendar tbody tr td.saturday {
|
2009-11-09 11:35:44 +05:30
|
|
|
|
border-right: solid 1px #5D835F;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
}
|
|
|
|
|
.calendar tbody tr td.sunday {
|
2009-11-09 11:35:44 +05:30
|
|
|
|
border-left: solid 1px #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2008-12-05 02:08:02 +05:30
|
|
|
|
.calendar tbody tr td:first-child {
|
2009-11-09 11:35:44 +05:30
|
|
|
|
border-left: solid 1px #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2008-12-05 02:08:02 +05:30
|
|
|
|
.calendar tbody tr:first-child td {
|
|
|
|
|
border-top:none;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2008-12-05 02:08:02 +05:30
|
|
|
|
|
|
|
|
|
/* Calendar : Date Detail */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
.calendar tbody tr td ul {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
list-style:none;
|
|
|
|
|
font-family:sans-serif;
|
2009-01-27 03:52:01 +05:30
|
|
|
|
font-size:1em;
|
2008-10-22 00:27:42 +05:30
|
|
|
|
margin:2.3em 0 .3em 0;
|
|
|
|
|
padding:0;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.calendar tbody tr td ul li {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
display:block;
|
|
|
|
|
width:92%;
|
|
|
|
|
margin:0 4%;
|
|
|
|
|
padding:.2em 0 .3em 0;
|
2009-11-09 11:35:44 +05:30
|
|
|
|
border-top: dashed 1px #5D835F;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2008-12-05 02:08:02 +05:30
|
|
|
|
.calendar tbody tr td ul li:first-child {
|
|
|
|
|
border:none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Calendar : Birthday, Anniversary, Highlight */
|
2008-07-16 12:37:21 +05:30
|
|
|
|
.calendar tbody tr td ul li em {
|
2008-10-22 00:27:42 +05:30
|
|
|
|
font-style:normal;
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #0A65B5;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
|
|
|
|
.calendar tbody tr td ul li span.yearsmarried em {
|
2009-11-03 09:48:05 +05:30
|
|
|
|
color: #228A22;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-04-06 09:19:47 +05:30
|
|
|
|
.calendar tbody tr td.highlight { }
|
2009-01-27 03:52:01 +05:30
|
|
|
|
|
|
|
|
|
.calendar tbody tr td.highlight div.date {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #0A65B5;
|
|
|
|
|
background-color: #C2E1FE;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2009-01-27 03:52:01 +05:30
|
|
|
|
|
|
|
|
|
/* Calendar : Previous-Next Month */
|
2019-12-14 16:25:16 +05:30
|
|
|
|
.calendar tbody tr td.previous,
|
|
|
|
|
.calendar tbody tr td.next,
|
|
|
|
|
.calendar tbody tr td.previous div.date,
|
2009-01-27 03:52:01 +05:30
|
|
|
|
.calendar tbody tr td.next div.date {
|
2009-09-10 11:45:53 +05:30
|
|
|
|
color: #333;
|
|
|
|
|
background-color: #D8F3D6;
|
2008-07-16 12:37:21 +05:30
|
|
|
|
}
|
2008-12-05 02:08:02 +05:30
|
|
|
|
|
|
|
|
|
/* Calendar : Full Year */
|
2009-09-11 11:54:13 +05:30
|
|
|
|
body#fullyearlinked {
|
2009-10-08 11:18:43 +05:30
|
|
|
|
background-color: #FFF;
|
2009-09-11 11:54:13 +05:30
|
|
|
|
}
|
2009-03-17 11:22:43 +05:30
|
|
|
|
body#fullyearlinked div.content {
|
2008-12-05 02:08:02 +05:30
|
|
|
|
width:963px;
|
|
|
|
|
margin:0 auto;
|
|
|
|
|
padding:15px 0 2px 2px;
|
|
|
|
|
}
|
2009-03-17 11:22:43 +05:30
|
|
|
|
body#fullyearlinked table.calendar {
|
2008-12-05 02:08:02 +05:30
|
|
|
|
float:left;
|
|
|
|
|
width:320px;
|
|
|
|
|
height:18em;
|
2009-09-24 02:01:21 +05:30
|
|
|
|
border:solid 1px #000;
|
2008-12-05 02:08:02 +05:30
|
|
|
|
}
|
2009-03-17 11:22:43 +05:30
|
|
|
|
body#fullyearlinked table.calendar thead tr th {
|
2008-12-05 02:08:02 +05:30
|
|
|
|
height:2em;
|
2009-09-24 02:01:21 +05:30
|
|
|
|
border-width: 1px 1px 0px 0px;
|
|
|
|
|
border-color: #000;
|
|
|
|
|
text-align: center;
|
2008-12-05 02:08:02 +05:30
|
|
|
|
}
|
2009-03-17 11:22:43 +05:30
|
|
|
|
body#fullyearlinked table.calendar thead tr th.monthName {
|
2008-12-05 02:08:02 +05:30
|
|
|
|
font-size:1.2em;
|
|
|
|
|
padding:2px 0;
|
2009-09-24 02:01:21 +05:30
|
|
|
|
border-bottom: solid 1px #000;
|
2008-12-05 02:08:02 +05:30
|
|
|
|
}
|
2009-03-17 11:22:43 +05:30
|
|
|
|
body#fullyearlinked table.calendar tbody tr td {
|
2008-12-05 02:08:02 +05:30
|
|
|
|
height:3em;
|
|
|
|
|
}
|
2009-09-24 02:01:21 +05:30
|
|
|
|
body#fullyearlinked table.calendar tbody tr td.emptyDays {
|
|
|
|
|
background-color: #FFF;
|
|
|
|
|
}
|
2009-04-01 06:23:12 +05:30
|
|
|
|
body#fullyearlinked table.calendar tbody tr td.saturday {
|
|
|
|
|
border-right:solid 2px #000;
|
|
|
|
|
}
|
|
|
|
|
body#fullyearlinked able.calendar tbody tr td.sunday {
|
|
|
|
|
border:solid 2px #000;
|
|
|
|
|
}
|
2009-11-03 09:48:05 +05:30
|
|
|
|
|
2009-11-05 23:48:49 +05:30
|
|
|
|
/* Calendar: OneDay
|
2009-11-03 09:48:05 +05:30
|
|
|
|
--------------------------------------------------------------------------------- */
|
|
|
|
|
body#OneDay h3 {
|
|
|
|
|
color: #228A22;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
table.oneday {
|
|
|
|
|
margin: .3em 0 .3em 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
table.oneday tbody tr td {
|
2009-11-09 11:35:44 +05:30
|
|
|
|
border-bottom: dashed 1px #5D835F;
|
2009-11-03 09:48:05 +05:30
|
|
|
|
}
|
|
|
|
|
table.oneday tbody tr td.ColumnRowLabel {
|
|
|
|
|
width: 5%;
|
|
|
|
|
}
|
|
|
|
|
table.oneday tbody tr td.ColumnText {
|
|
|
|
|
width: 85%;
|
|
|
|
|
}
|
|
|
|
|
table.oneday tbody tr td.ColumnEvent {
|
2019-12-12 22:40:25 +05:30
|
|
|
|
width: 10%;
|
2009-11-03 09:48:05 +05:30
|
|
|
|
}
|
2010-06-05 10:39:25 +05:30
|
|
|
|
|
|
|
|
|
/* PlaceMaps
|
|
|
|
|
-------------------------------------------------------------------------------- */
|
|
|
|
|
div#mapdiv {
|
|
|
|
|
height: 400px;
|
|
|
|
|
}
|
|
|
|
|
table#mapdiv {
|
|
|
|
|
border: none;
|
|
|
|
|
width: 50%;
|
|
|
|
|
float: center;
|
|
|
|
|
}
|
|
|
|
|
table#mapdiv tr td div#googlev3 {
|
|
|
|
|
height: 400px;
|
|
|
|
|
width: 600px;
|
|
|
|
|
}
|
|
|
|
|
table#mapdiv tr td div#openlayers {
|
|
|
|
|
height: 400px;
|
|
|
|
|
width: 600px;
|
|
|
|
|
}
|