-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.simpleTabs.css
88 lines (76 loc) · 1.22 KB
/
jquery.simpleTabs.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
/**
* Sistema de tabs
* Marcio Antunes
*/
.tabs{
display: block;
margin-bottom: 20px;
}
.tabs>ul{
list-style: none;
display: block;
padding: 0;
margin: 0;
}
.tabs>ul:after{
clear: both;
content: "";
display: block;
border-bottom: 1px solid #ddd;
}
.tabs>ul li, .tabs>ul li a{
display: block;
padding: 0;
margin: 0;
}
.tabs>ul li{
float: left;
margin-left: 0.8em;
}
.tabs>ul li:first-child{
}
.tabs>ul li a{
padding: 0.5em 1.5em;
background: #f7f7f7;
border: 1px solid #f1f1f1;
border-bottom-width: 0;
cursor: pointer;
color: #555;
}
.tabs>ul li a:hover{
color: #333;
border-color: #ddd;
}
.tabs>ul li a.active,
.tabs>ul li a.active:hover{
color: #eee;
background: #333;
border-color: #444;
}
/**
* tabs wrapper
*/
.tabs>.tabs-content{
}
.tabs>.tabs-content:after{
clear: both;
content: "";
display: block;
}
/**
* .tabs > .tabs-content > .tab
* <div class="tabs">
* <ul>
* <li><a href="[LINK or #tab_id]" class="active">TEXT</a>
* </ul>
* <div class="tabs-content">
* <div class="tab" id="tab_id">
* ...content...
* </div>
* </div>
* </div>
*/
.tabs .tab{
display: none;
padding: 1em 0.5em;
}