forked from OccupyWallStreet/nycga2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabs.css
executable file
·98 lines (81 loc) · 1.52 KB
/
tabs.css
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
85
86
87
88
89
90
91
92
93
94
95
96
97
#screenTabs {
float:left;
width: 100%;
min-height: 1px;
height: 1px;
background:#ffffff url("../img/icons/tabs/bg.gif") repeat-x bottom;
}
td > #screenTabs {
height: auto;
}
#tabs {
float:left;
width:620px;
line-height:normal;
white-space: nowrap;
background:#ffffff url("../img/icons/tabs/bg.gif") repeat-x bottom;
}
#tabs ul {
margin:0;
padding: 0px 10px 10px 10px;
list-style:none;
}
#tabs a {
display: block;
background:url("../img/icons/tabs/right.gif") no-repeat right top;
padding:5px 9px 4px 4px;
vertical-align: baseline;
text-decoration: none;
color: #000000;
width:.1em;
}
#tabs > ul a {
width: auto;
}
#tabs a:hover,
#tabs a:visited,
#tabs a:active {
text-decoration: none;
color: #000000;
}
#tabs li {
float:left;
background:url("../img/icons/tabs/left.gif") no-repeat left top;
margin:0;
padding:0 0 0 2px;
border-bottom: solid 1px #776655;
}
#tabs li#current {
border-width: 0;
}
#tabs #current {
background-image:url("../img/icons/tabs/left_on.gif");
margin-left: -3px;
}
#tabs #current a {
background-image:url("../img/icons/tabs/right_on.gif");
padding:3px 9px 7px 6px;
vertical-align: baseline;
}
#tabs .last a {
background-image:url("../img/icons/tabs/right_last.gif");
}
#tabs .first {
background-image:url("../img/icons/tabs/left_first.gif");
}
#tabs .first#current {
margin-left: 0;
}
#tabs li:hover {
background-position: 0% -150px;
cursor: pointer;
}
#tabs li:hover a {
background-position: 100% -150px;
}
#tabs li.first:hover {
background-position: top left;
}
#tabs a:hover {
background-position: 100% -150px;
}