-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.less
More file actions
56 lines (48 loc) · 1.13 KB
/
style.less
File metadata and controls
56 lines (48 loc) · 1.13 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
*, *:before, *:after {
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
.browselm {
.toolbar {
background-color: #e7e7e4;
padding: 0 0.5em;
button {
border: none;
outline: none;
background-color: transparent;
float: left;
&:hover {
outline: 1px solid #ccc;
}
}
}
#tabs {
.tab-label {
position: relative;
background-color: #d2ced1;
margin: 0 15px 0 5px;
&:first-of-type {
margin-left: 15px;
}
&:before, &:after {
content: '';
position: absolute;
top: 0px;
width: 25px;
height: 100%;
background-color: #d2ced1;
}
&:before {
left: -10px;
// border-top-left-radius: 3px;
// box-shadow: inset 1px 1px 0 #484848, -4px 0px 4px rgba(0, 0, 0, 0.1);
-webkit-transform: skewX(-20deg);
}
&:after {
right: -10px;
// border-top-right-radius: 3px;
// box-shadow: inset -1px 1px 0 #484848, 4px 0px 4px rgba(0, 0, 0, 0.1);
-webkit-transform: skewX(20deg);
}
}
}
}