2010-02-25 21:22:32 +05:30
|
|
|
/*
|
2010-04-01 20:41:33 +05:30
|
|
|
# encoding: utf-8
|
2010-03-02 13:10:48 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright 2008-2010 Rob G. Healey <robhealey1@gmail.com>
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
2011-12-15 04:30:33 +05:30
|
|
|
******************************************************
|
2010-02-25 21:22:32 +05:30
|
|
|
GRAMPS Cascading Style Sheet
|
2010-09-13 05:43:45 +05:30
|
|
|
Style Name: Web_Navigation-Horizontal.css
|
2011-12-15 04:30:33 +05:30
|
|
|
******************************************************
|
2010-02-25 21:22:32 +05:30
|
|
|
|
2011-12-15 04:30:33 +05:30
|
|
|
# $Id$
|
2010-02-25 21:22:32 +05:30
|
|
|
|
2011-12-20 14:47:00 +05:30
|
|
|
Body Element
|
|
|
|
---------------------------------------------------=== */
|
|
|
|
body {
|
|
|
|
padding: 0px 7px;
|
|
|
|
width: 979px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Navigation Menus
|
2010-02-25 21:22:32 +05:30
|
|
|
----------------------------------------------------- */
|
2011-12-15 10:07:51 +05:30
|
|
|
div#navigation, div#subnavigation, div#alphabet {
|
2010-02-25 21:22:32 +05:30
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
2010-09-03 05:13:33 +05:30
|
|
|
padding: 0;
|
2010-02-25 21:22:32 +05:30
|
|
|
}
|
2010-09-03 05:13:33 +05:30
|
|
|
div#navigation ul, div#subnavigation ul {
|
2010-04-18 13:41:43 +05:30
|
|
|
list-style: none;
|
2010-09-03 05:13:33 +05:30
|
|
|
min-width: 900px;
|
2010-04-18 13:41:43 +05:30
|
|
|
margin: 0;
|
2010-10-08 12:24:39 +05:30
|
|
|
padding: 0px 0px 0px 18px;
|
2010-09-03 05:13:33 +05:30
|
|
|
border-bottom: solid 2px #000;
|
2010-02-25 21:22:32 +05:30
|
|
|
}
|
2011-12-15 10:07:51 +05:30
|
|
|
div#alphabet ul {
|
|
|
|
list-style: none;
|
|
|
|
min-width: 900px;
|
|
|
|
height: 28px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0px 0px 0px 18px;
|
|
|
|
border-top: solid 4px #13A926;
|
|
|
|
border-bottom: solid 2px #000;
|
|
|
|
}
|
|
|
|
div#navigation ul li, div#subnavigation ul li, div#alphabet ul li {
|
2010-04-18 13:41:43 +05:30
|
|
|
float: left;
|
2010-02-25 21:22:32 +05:30
|
|
|
}
|
2010-09-03 05:13:33 +05:30
|
|
|
div#navigation ul li a, div#subnavigation ul li a {
|
2010-04-18 13:41:43 +05:30
|
|
|
display: block;
|
2010-10-08 12:24:39 +05:30
|
|
|
padding: 4px 12px 7px 1px;
|
2010-04-18 13:41:43 +05:30
|
|
|
float: left;
|
2011-12-15 10:07:51 +05:30
|
|
|
font-size: .9em;
|
2011-12-15 04:30:33 +05:30
|
|
|
font-weight: bold;
|
|
|
|
font-family: Helvetica, Arial, sans;
|
2010-05-29 02:58:07 +05:30
|
|
|
text-decoration: none;
|
2010-09-03 05:13:33 +05:30
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
#navigation ul li.CurrentSection a, #subnavigation ul li.CurrentSection a {
|
2010-09-13 05:43:45 +05:30
|
|
|
border-width: 0px 1px 1px 1px;
|
|
|
|
border-style: solid;
|
2011-12-15 04:30:33 +05:30
|
|
|
border-color: purple;
|
2010-09-03 05:13:33 +05:30
|
|
|
}
|
|
|
|
#subnavigation ul li.CurrentSection a {
|
2011-12-15 04:30:33 +05:30
|
|
|
border-width: 0px 0px 1px 0px;
|
2010-05-08 02:30:57 +05:30
|
|
|
}
|
2011-12-15 10:07:51 +05:30
|
|
|
div#alphabet ul li a {
|
|
|
|
padding: 8px;
|
2010-03-02 13:10:48 +05:30
|
|
|
}
|
2011-12-15 04:30:33 +05:30
|
|
|
div#alphabet ul li:after {
|
|
|
|
content: " |";
|
|
|
|
}
|