blob: 2c664da1f51c4e2b785887221219f6d85d0de540 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
.tabs, .tabs2, .tabs3 {
background-image: var(--nav-gradient-image);
width: 100%;
z-index: 101;
font-size: var(--nav-font-size-level1);
font-family: var(--font-family-nav);
display: table;
}
.tabs2 {
font-size: var(--nav-font-size-level2);
}
.tabs3 {
font-size: var(--nav-font-size-level3);
}
.tablist {
margin: 0;
padding: 0;
display: block;
}
.tablist li {
float: left;
display: table-cell;
background-image: var(--nav-gradient-image);
line-height: 36px;
list-style: none;
}
.tablist a {
display: block;
padding: 0 20px;
font-weight: bold;
background-image:var(--nav-separator-image);
background-repeat:no-repeat;
background-position:right;
color: var(--nav-text-normal-color);
text-shadow: var(--nav-text-normal-shadow);
text-decoration: none;
outline: none;
}
.tablist a:focus {
outline: auto;
z-index: 10;
position: relative;
}
.tabs3 .tablist a {
padding: 0 10px;
}
.tablist a:hover {
background-image: var(--nav-gradient-hover-image);
background-repeat:repeat-x;
color: var(--nav-text-hover-color);
text-shadow: var(--nav-text-hover-shadow);
text-decoration: none;
}
.tablist li.current a {
background-image: var(--nav-gradient-active-image);
background-repeat:repeat-x;
color: var(--nav-text-active-color);
text-shadow: var(--nav-text-active-shadow);
}
|