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
|
2014-08-09 07:59:07 +05:30
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2010-03-02 13:10:48 +05:30
|
|
|
#
|
|
|
|
|
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
|
|
|
|
2012-01-10 14:43:56 +05:30
|
|
|
Body Element
|
|
|
|
------------------------------------------------------ */
|
|
|
|
body {
|
|
|
|
background-color: #00029D;
|
|
|
|
color: #00029D;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0px 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Navigation Menus
|
2010-02-25 21:22:32 +05:30
|
|
|
----------------------------------------------------- */
|
2012-01-03 22:36:37 +05:30
|
|
|
div#nav {
|
2012-01-03 10:51:42 +05:30
|
|
|
clear: both;
|
|
|
|
padding-top: 1px;
|
2012-01-10 13:06:39 +05:30
|
|
|
font: 1.2em/1.4 "sans-serif, Helvetica, Arial";
|
2012-01-03 10:51:42 +05:30
|
|
|
}
|
2012-01-03 22:36:37 +05:30
|
|
|
div#nav ul {
|
2012-01-03 10:51:42 +05:30
|
|
|
float: left;
|
2010-02-25 21:22:32 +05:30
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
2010-09-03 05:13:33 +05:30
|
|
|
padding: 0;
|
2012-01-03 12:10:39 +05:30
|
|
|
list-style-type: none;
|
2012-01-03 10:51:42 +05:30
|
|
|
background: #00029D;
|
2012-01-03 12:10:39 +05:30
|
|
|
border-bottom: 2px solid #13A926;
|
2010-02-25 21:22:32 +05:30
|
|
|
}
|
2012-01-03 22:36:37 +05:30
|
|
|
div#nav li {
|
2012-01-03 10:51:42 +05:30
|
|
|
display: inline;
|
2010-04-18 13:41:43 +05:30
|
|
|
margin: 0;
|
2012-01-03 10:51:42 +05:30
|
|
|
padding: 0;
|
2010-02-25 21:22:32 +05:30
|
|
|
}
|
2012-01-03 22:36:37 +05:30
|
|
|
div#nav a {
|
2010-04-18 13:41:43 +05:30
|
|
|
display: block;
|
|
|
|
float: left;
|
2012-01-10 13:06:39 +05:30
|
|
|
padding: 6px 12px;
|
2012-01-05 14:03:29 +05:30
|
|
|
border-right: 1px solid #13A926;
|
|
|
|
border-left: 1px solid #13A926;
|
2012-01-03 10:51:42 +05:30
|
|
|
color: #FFF;
|
2010-05-29 02:58:07 +05:30
|
|
|
text-decoration: none;
|
2010-09-03 05:13:33 +05:30
|
|
|
}
|
2012-01-03 22:36:37 +05:30
|
|
|
div#nav a:hover, div#nav a:focus {
|
2012-01-05 14:03:29 +05:30
|
|
|
background: #FFF;
|
|
|
|
color: #000;
|
2010-05-08 02:30:57 +05:30
|
|
|
}
|
2012-01-03 10:51:42 +05:30
|
|
|
div#nav .CurrentSection a {
|
2012-01-03 12:10:39 +05:30
|
|
|
font-weight: bold;
|
2012-01-03 10:51:42 +05:30
|
|
|
background: #BCEAF6;
|
|
|
|
color: #000;
|
2012-01-10 13:06:39 +05:30
|
|
|
border-bottom: none;
|
2010-03-02 13:10:48 +05:30
|
|
|
}
|
2012-01-03 10:51:42 +05:30
|
|
|
div#nav .CurrentSection a:hover, div#nav .CurrentSection a:focus {
|
2012-01-03 12:10:39 +05:30
|
|
|
background: #903;
|
|
|
|
color: #FFF;
|
2011-12-15 04:30:33 +05:30
|
|
|
}
|
2012-01-03 22:36:37 +05:30
|
|
|
|
2012-01-17 11:52:52 +05:30
|
|
|
/* Alphabet Navigation and Year Menu
|
2012-01-03 22:36:37 +05:30
|
|
|
------------------------------------------------------ */
|
2012-01-17 11:52:52 +05:30
|
|
|
div#alphanav, div#subnavigation {
|
2012-01-03 22:36:37 +05:30
|
|
|
clear: both;
|
|
|
|
padding-top: 1px;
|
2012-01-10 13:06:39 +05:30
|
|
|
font: bold 1.2em/1.4 "sans, sans-serif";
|
2012-01-03 22:36:37 +05:30
|
|
|
}
|
2012-01-17 11:52:52 +05:30
|
|
|
div#alphanav ul, div#subnavigation ul {
|
2012-01-03 22:36:37 +05:30
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
background: #00029D;
|
|
|
|
border-top: 2px solid #13A926;
|
|
|
|
border-bottom: 2px solid #13A926;
|
|
|
|
}
|
2012-01-17 11:52:52 +05:30
|
|
|
div#alphanav ul li, div#subnavigation ul li {
|
2012-01-03 22:36:37 +05:30
|
|
|
display: inline;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2012-01-17 11:52:52 +05:30
|
|
|
div#alphanav ul li a, div#subnavigation ul li a {
|
2012-01-03 22:36:37 +05:30
|
|
|
display: block;
|
|
|
|
float: left;
|
2012-01-10 13:06:39 +05:30
|
|
|
padding: 6px 12px;
|
2012-01-05 14:03:29 +05:30
|
|
|
border-right: 1px solid #13A926;
|
|
|
|
border-left: 1px solid #13A926;
|
2012-01-03 22:36:37 +05:30
|
|
|
color: #FFF;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2012-01-17 11:52:52 +05:30
|
|
|
div#alphanav ul li a:hover, div#alphanav ul li a:focus,
|
|
|
|
div#subnavigation ul li a:hover, div#subnavigation ul li a:focus {
|
2012-01-05 14:03:29 +05:30
|
|
|
background: #FFF;
|
|
|
|
color: #000;
|
2012-01-03 22:36:37 +05:30
|
|
|
}
|
2012-01-17 11:52:52 +05:30
|
|
|
div#subnavigation ul li.CurrentSection a {
|
|
|
|
border-left: solid 1px #13A926;
|
|
|
|
border-right: solid 1px #13A926;
|
|
|
|
background-color: #FFF;
|
|
|
|
color: #00029D;
|
|
|
|
}
|