-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path_iconbar.scss
executable file
·67 lines (55 loc) · 928 Bytes
/
_iconbar.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* toolbar styles */
.iconbar {
background: #333;
width: 100%;
font-size: 0;
display: inline-block;
&.label-bottom .tab .tab-content {
i, img { margin-bottom: 10px; }
}
&.label-right .tab .tab-content {
i, img { margin-right: 10px; display: inline-block;}
label { display: inline-block; }
}
&.vertical.label-right .tab .tab-content {
text-align: left;
}
&.vertical {
height: 100%;
width: auto;
.tab {
width: auto;
margin: auto;
float: none;
}
}
.tab {
text-align: center;
width: 25%;
margin: 0 auto;
display: block;
padding: 20px;
float: left;
&:hover {
background: rgba(#fff, 0.1);
}
}
}
.toolbar .tab-content {
font-size: 16px;
text-align: center;
label { color: #ccc; }
i {
font-size: 30px;
display: block;
margin: 0 auto;
color: #ccc;
vertical-align: middle;
}
img {
width: 30px;
height: 30px;
display: block;
margin: 0 auto;
}
}