-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtabs.css
More file actions
66 lines (59 loc) · 1.2 KB
/
Copy pathtabs.css
File metadata and controls
66 lines (59 loc) · 1.2 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
/*
# Tabs
```
<div class="tabs-container">
<ul class="tabs">
<li class="active"><a href="">APIs</a></li>
<li><a href="">Activity</a></li>
<li><a href="">Collaborators</a></li>
</ul>
<div style="clear: both;"></div>
</div>
```
*/
.tabs-container {
padding-top: 50px;
margin-bottom: 0px;
border-bottom: 1px solid #ccc;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f7f7f7));
}
.tabs {
list-style: none;
padding: 0;
margin: 0;
}
.tabs li {
float: left;
margin-bottom: -1px;
margin-right: 30px;
}
.tabs li:first-child {
margin-left: 15px;
}
.tabs li a {
padding: 10px 20px 10px 20px;
display: inline-block;
text-decoration: none;
color: #171717;
font-size: 14px;
}
.tabs li.active {
border: 1px solid #ccc;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
border-bottom: none;
border-bottom: 1px solid #fff;
background: #fff;
}
.tabs li.active a {
color: #161717;
}
.tabs li.active a .icon {
color: #161717;
}
.tabs li a {
color: #4a92fd;
}
.tabs li a .icon {
margin-right: 7px;
}