~ubuntu-branches/ubuntu/utopic/gramps/utopic

« back to all changes in this revision

Viewing changes to src/plugins/webstuff/css/Web_Horizontal-Menus.css

  • Committer: Package Import Robot
  • Author(s): James A. Treacy
  • Date: 2012-05-22 17:18:36 UTC
  • mfrom: (39.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20120522171836-35fi62lp4w7jnrd7
Tags: 3.4.0-1
* New upstream version
* Updated desktop file. Closes: #667472

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
# encoding: utf-8
 
3
#
 
4
# Gramps - a GTK+/GNOME based genealogy program
 
5
#
 
6
# Copyright 2008-2010 Rob G. Healey <robhealey1@gmail.com>
 
7
#
 
8
# This program is free software; you can redistribute it and/or modify
 
9
# it under the terms of the GNU General Public License as published by
 
10
# the Free Software Foundation; either version 2 of the License, or
 
11
# (at your option) any later version.
 
12
#
 
13
# This program is distributed in the hope that it will be useful, 
 
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
# GNU General Public License for more details.
 
17
#
 
18
# You should have received a copy of the GNU General Public License
 
19
# along with this program; if not, write to the Free Software
 
20
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
21
#
 
22
 
 
23
******************************************************
 
24
GRAMPS Cascading Style Sheet
 
25
Style Name: Web_Navigation-Horizontal.css
 
26
******************************************************
 
27
 
 
28
# $Id$
 
29
 
 
30
    Body Element
 
31
------------------------------------------------------ */
 
32
body {
 
33
    background-color: #00029D;
 
34
    color: #00029D;
 
35
    width: 100%;
 
36
    padding: 0px 14px;
 
37
}
 
38
 
 
39
/*   Navigation Menus
 
40
----------------------------------------------------- */
 
41
div#nav {
 
42
    clear: both;
 
43
    padding-top: 1px;
 
44
    font: 1.2em/1.4 "sans-serif, Helvetica, Arial";
 
45
}
 
46
div#nav ul {
 
47
    float: left;
 
48
    width: 100%;
 
49
    margin: 0;
 
50
    padding: 0;
 
51
    list-style-type: none;
 
52
    background: #00029D;
 
53
    border-bottom: 2px solid #13A926;
 
54
}
 
55
div#nav li {
 
56
    display: inline;
 
57
    margin: 0;
 
58
    padding: 0;
 
59
}
 
60
div#nav a {
 
61
    display: block;
 
62
    float: left;
 
63
    padding: 6px 12px;
 
64
    border-right: 1px solid #13A926;
 
65
    border-left: 1px solid #13A926;
 
66
    color: #FFF;
 
67
    text-decoration: none;
 
68
}
 
69
div#nav a:hover, div#nav a:focus {
 
70
    background: #FFF;
 
71
    color: #000;
 
72
}
 
73
div#nav .CurrentSection a {
 
74
    font-weight: bold;
 
75
    background: #BCEAF6;
 
76
    color: #000;
 
77
    border-bottom: none;
 
78
}
 
79
div#nav .CurrentSection a:hover, div#nav .CurrentSection a:focus {
 
80
    background: #903;
 
81
    color: #FFF;
 
82
}
 
83
 
 
84
/*    Alphabet Navigation and Year Menu
 
85
------------------------------------------------------ */
 
86
div#alphanav, div#subnavigation {
 
87
    clear: both;
 
88
    padding-top: 1px;
 
89
    font: bold 1.2em/1.4 "sans, sans-serif";
 
90
}
 
91
div#alphanav ul, div#subnavigation ul {
 
92
    float: left;
 
93
    width: 100%;
 
94
    margin: 0;
 
95
    padding: 0;
 
96
    list-style-type: none;
 
97
    background: #00029D;
 
98
    border-top: 2px solid #13A926;
 
99
    border-bottom: 2px solid #13A926;
 
100
}
 
101
div#alphanav ul li, div#subnavigation ul li {
 
102
    display: inline;
 
103
    margin: 0;
 
104
    padding: 0;
 
105
}
 
106
div#alphanav ul li a, div#subnavigation ul li a {
 
107
    display: block;
 
108
    float: left;
 
109
    padding: 6px 12px;
 
110
    border-right: 1px solid #13A926;
 
111
    border-left: 1px solid #13A926;
 
112
    color: #FFF;
 
113
    text-decoration: none;
 
114
}
 
115
div#alphanav ul li a:hover, div#alphanav ul li a:focus,
 
116
div#subnavigation ul li a:hover, div#subnavigation ul li a:focus {
 
117
    background: #FFF;
 
118
    color: #000;
 
119
}
 
120
div#subnavigation ul li.CurrentSection a {
 
121
    border-left: solid 1px #13A926;
 
122
    border-right: solid 1px #13A926;
 
123
    background-color: #FFF;
 
124
    color: #00029D;
 
125
}