forked from ev3dev/ev3dev.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtabs.scss
More file actions
61 lines (54 loc) · 1.22 KB
/
tabs.scss
File metadata and controls
61 lines (54 loc) · 1.22 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
---
---
[tab-area] {
margin: 0px 0px 20px;
}
ul[tab-list] {
list-style: none;
margin: 0px;
padding: 0px;
}
ul[tab-list] > li {
cursor: pointer;
-webkit-appearance: button;
font-family: 'OpenSansLight', "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: normal;
list-style: none;
text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
color: white;
background-color: rgb(48, 48, 48);
line-height: 14px;
font-size: 14px;
display: inline-block;
text-align: center;
border: 2px solid #434343;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
padding: 6px 10px;
margin: 0px;
border-bottom: none;
}
ul[tab-list] > li:hover {
background-color: #404040;
}
ul[tab-list] > li.tab-active {
cursor: unset;
background-color: #434343;
}
[tab-content-area] {
margin: 0px;
padding: 12px;
background-color: #434343;
border-top-left-radius: 0px;
border-top-right-radius: 6px;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
[tab-content] {
margin: 0px;
padding: 12px;
background-color: #252525;
border-radius: 6px;
}