tabs.css
1.1 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
* Tabs on sidebar
*/
#list-tabs {
list-style: none;
height: 20px;
width: 100%;
padding:0;
margin:0;
}
#list-tabs li {
display: inline;
}
#list-tabs li a {
color: #545454;
float: left;
display: block;
font-size: 0.8em;
padding: 4px 10px;
margin-left: -1px;
position: relative;
left: 1px;
text-decoration: none;
text-transform: uppercase;
box-shadow: 0 0 5px #dfdfdf;
border-left: 1px solid #dfdfdf;
}
#list-tabs li a:hover {
box-shadow: 0 0 5px #545454 inset;
color: #000;
}
#tab-area {
margin: 0 0 120px 0;
}
#tab-wrap {
position: relative;
min-height: 250px;
width: auto;
}
li.tab-one a,
#tab-one {
background: #FFFFFF;
}
li.tab-two a,
#tab-two {
background: #F5F5F5;
}
li.tab-three a,
#tab-three {
background: #F0F0F0;
}
#tab-area .tabs {
padding: 10px;
min-height: 450px;
position: absolute;
top: -1px;
left: 0;
width: 320px;
}
#tab-three, #tab-two { display: none; }
#tab-three:target, #tab-two:target, #tab-one:target {
z-index: 1;
display: block;
box-shadow: 0 0 5px #dfdfdf;
border-left: 1px solid #dfdfdf;
border-bottom: 1px solid #dfdfdf;
border-radius: 0px 5px 5px 5px;
}