~ubuntu-wanted-dev/ubuntu-wanted/devel

« back to all changes in this revision

Viewing changes to artwork/ubuntu-theme/pageheader.css

  • Committer: Nicolas Deschildre
  • Date: 2008-08-06 19:48:04 UTC
  • Revision ID: ndeschildre@gmail.com-20080806194804-7fb95gt3zn7kvmt9
First Ubuntu Wanted commit: add some initial stuff.
- A Ubuntu theme
- A basic Drupal 5 wanted module
- An update-db.sql file used for the automatic setup of a webserver with the latest dev version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* top navigation section
 
2
 *  
 
3
*/
 
4
#topNav {
 
5
        width: 100%;
 
6
        position: relative;
 
7
        font-size: small;
 
8
}
 
9
#topNav a {
 
10
        color: #000000;
 
11
        text-decoration: none;
 
12
        font-size: small;
 
13
        border-bottom: 1px dotted #fff;
 
14
}
 
15
 
 
16
#topNav a:hover {
 
17
        color: red;
 
18
}
 
19
 
 
20
#topNav b {
 
21
        color: #000000;
 
22
        font-size: small;
 
23
        border-bottom: 1px dotted #fff;
 
24
}
 
25
 
 
26
#topNav li a:hover {
 
27
        border-bottom: 1px dotted #656565;
 
28
}
 
29
#topNav ul {
 
30
        display: block;
 
31
        margin: 0;
 
32
        padding: 0 0px .5em 0px;
 
33
        position: absolute;
 
34
        top: 20px;
 
35
        right: 0px;
 
36
        max-width:80%;
 
37
        border-bottom: 1px solid #000000;
 
38
        z-index: 9;
 
39
}
 
40
#topNav ul ul {
 
41
        padding-bottom: 0;
 
42
}
 
43
#topNav li {
 
44
        display: block;
 
45
        float: left;
 
46
        margin: 0 18px 0 0;
 
47
        text-indent: 13px;
 
48
        padding-bottom: 0;
 
49
        line-height: 1.1em;
 
50
        position: relative;
 
51
}
 
52
#topNav li.last {
 
53
        margin: 0;
 
54
}
 
55
#topNav li ul {
 
56
        position: absolute;
 
57
        background-color: #fff;
 
58
        border: 1px solid #D3CAAA;
 
59
        width: 10em;
 
60
        left: -999em;
 
61
        top: 1.1em;
 
62
        z-index: 100;
 
63
        font-size: 90%;
 
64
}
 
65
#topNav li:hover ul {
 
66
        left: 0;
 
67
        z-index: 1000;
 
68
}
 
69
#topNav li ul li {
 
70
        background-image: none;
 
71
        text-indent: 0;
 
72
        width: 100%;
 
73
        padding: 0;
 
74
        margin: 0;
 
75
}
 
76
#topNav li ul li a {
 
77
        display: block;
 
78
        width: 100%;
 
79
        padding: .2em 0;
 
80
        text-indent: .2em;
 
81
}
 
82
#topNav li ul li a:hover,#topNav li ul li a:active {
 
83
        color: white;
 
84
        background-color: #D3CAAA;
 
85
}
 
86
#topNav img {
 
87
        margin: 0;
 
88
        padding: 0;
 
89
        border-style: none;
 
90
}
 
91
#topNav img.rule {
 
92
        border-top: 1.7em solid white;
 
93
        /* ugly, ugly, but the line is too close to the tabs w/out it
 
94
           using ems means this lowers as the users font-size increases */
 
95
}
 
96
/* end top navigation */