-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmixins.less
63 lines (56 loc) · 1.08 KB
/
mixins.less
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
// Mixins
.transition-all() {
-webkit-transition: all 0.35s;
-moz-transition: all 0.35s;
transition: all 0.35s;
}
.background-cover() {
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
.button-variant(@color; @background; @border) {
color: @color;
background-color: @background;
border-color: @border;
.transition-all;
&:hover,
&:focus,
&.focus,
&:active,
&.active,
.open > .dropdown-toggle& {
color: @color;
background-color: darken(@background, 5%);
border-color: darken(@border, 7%);
}
&:active,
&.active,
.open > .dropdown-toggle& {
background-image: none;
}
&.disabled,
&[disabled],
fieldset[disabled] & {
&,
&:hover,
&:focus,
&.focus,
&:active,
&.active {
background-color: @background;
border-color: @border;
}
}
.badge {
color: @background;
background-color: @color;
}
}
.sans-serif-font() {
font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}
.serif-font() {
font-family: 'Merriweather', 'Helvetica Neue', Arial, sans-serif;
}