~marrabld/pymi/trunk

« back to all changes in this revision

Viewing changes to doc/html/tabs.css

  • Committer: Daniel Marrable
  • Date: 2012-07-09 14:18:25 UTC
  • mfrom: (61.1.6 trunk)
  • Revision ID: marrabld@gmail.com-20120709141825-6zi2kx8t1wtc29vf
Commiting merges

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.tabs, .tabs2, .tabs3 {
 
2
    background-image: url('tab_b.png');
 
3
    width: 100%;
 
4
    z-index: 101;
 
5
    font-size: 13px;
 
6
}
 
7
 
 
8
.tabs2 {
 
9
    font-size: 10px;
 
10
}
 
11
.tabs3 {
 
12
    font-size: 9px;
 
13
}
 
14
 
 
15
.tablist {
 
16
    margin: 0;
 
17
    padding: 0;
 
18
    display: table;
 
19
}
 
20
 
 
21
.tablist li {
 
22
    float: left;
 
23
    display: table-cell;
 
24
    background-image: url('tab_b.png');
 
25
    line-height: 36px;
 
26
    list-style: none;
 
27
}
 
28
 
 
29
.tablist a {
 
30
    display: block;
 
31
    padding: 0 20px;
 
32
    font-weight: bold;
 
33
    background-image:url('tab_s.png');
 
34
    background-repeat:no-repeat;
 
35
    background-position:right;
 
36
    color: #283A5D;
 
37
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
 
38
    text-decoration: none;
 
39
    outline: none;
 
40
}
 
41
 
 
42
.tabs3 .tablist a {
 
43
    padding: 0 10px;
 
44
}
 
45
 
 
46
.tablist a:hover {
 
47
    background-image: url('tab_h.png');
 
48
    background-repeat:repeat-x;
 
49
    color: #fff;
 
50
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
 
51
    text-decoration: none;
 
52
}
 
53
 
 
54
.tablist li.current a {
 
55
    background-image: url('tab_a.png');
 
56
    background-repeat:repeat-x;
 
57
    color: #fff;
 
58
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
 
59
}