1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/*
* Style for Colors theme
*
* webtrees: Web based Family History software
* Copyright (C) 2011 webtrees development team.
*
* Derived from PhpGedView
* Copyright (C) 2002 to 2010 PGV Development Team. All rights reserved.
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* 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
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* $Id$
*/
/* ================================================== */
/* Coffee and Cream Palette */
/* ================================================== */
/* Header */
#header, .gedcomtitle {background:#D4c7a7; color: #553e2f;}
.title .gedcomtitle {text-decoration:none; color: #553e2f;}
/* Tbls and menus */
.descriptionbox,
.descriptionbox > a,
.topbottombar,
.topbottombar a,
.topbottombar h2,
.list_label,
.list_label a,
.facts_label,
.facts_label a,
.facts_label .date,
.facts_label03,
.facts_table h2,
.facts_table .ltr .descriptionbox a,
.blockcontent .facts_label
{
background:#93724f;
color: #ffffff;
}
/* Indi Page */
.ui-state-active, .ui-widget-content .ui-state-active {background:#93724f;}
/* sidebar */
#separator, .use-sidebar #separator {background-color: #93724f;}
/* Top Menu */
#topMenu {background:#93724F;}
/* Base */
#indi_header h3.person_box,
.makeMenu ul li a:hover,
.descriptionbox .submenu a,
.blockcontent,
.list_value,
.list_value_wrap,
.tab_cell_active,
.news_box, .optionbox,
.person0,
.submenuitem_hover
{
background:#F4EAD1;
}
#indi_header h3.person_box, #indi_header h3.person_boxF , #indi_header h3.person_boxNN, .odd
{
background: #F4EAD1;
}
/* Alerts */
.error, .warning, .red {color:#971702;}
.facts_labelred, .facts_valuered {border: solid #971702 2px;}
/* Light Text */
.makeMenu li a {color: #553e2f;}
.ui-state-active a:link, .ui-tabs .ui-tabs-nav li.ui-tabs-selected a {color: #ffffff;}
/*.ui-widget-content span a, ui-widget-content span a:hover {color: #ffffff;} */
#lightbox_content span a, #lightbox_content span a:hover {color: #ffffff; background: #93724f;}
#lightbox_content span a:hover {color: #FF0000; background: #93724f;}
/* Dark Text Color */
input,button,textarea {border-color:#fff #494949 #494949 #fff;}
.subheaders {color:#494949;}
/* end of palette */
|