forked from pandao/editor.md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditormd.tab.scss
49 lines (40 loc) · 997 Bytes
/
editormd.tab.scss
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
@charset "utf-8";
.editormd-tab {
}
.editormd-tab-head {
list-style: none;
border-bottom: 1px solid #ddd;
li {
display: inline-block;
a {
color: #999;
display: block;
padding: 6px 12px 5px;
text-align: center;
text-decoration: none;
margin-bottom: -1px;
border: 1px solid #ddd;
@include border-top-left-radius(3px);
@include border-top-right-radius(3px);
background: #f6f6f6;
@include transition(all 300ms ease-out);
&:hover {
color: #666;
background: #eee;
}
}
&.active a {
color: #666;
background: #fff;
border-bottom-color: #fff;
}
}
li + li {
margin-left: 3px;
}
}
.editormd-tab-container {
}
.editormd-tab-box {
padding: 20px 0;
}