-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.less
88 lines (61 loc) · 1.42 KB
/
index.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
.btn-outline {
background: none;
//border-width: 2px;
border-color: transparent;
font-weight: 400;
&:hover {
background: none;
border-color: transparent;
}
&.btn-white {
box-shadow: 0 0 0 2px rgba(255,255,255, 0.8) inset;
color: rgba(255,255,255, 0.8);
&:hover {
box-shadow: 0 0 0 2px rgba(255,255,255, 1) inset;
color: rgba(255,255,255, 1);
}
}
&.btn-primary {
box-shadow: 0 0 0 2px darken(@brand-primary, 10%) inset;
color: darken(@brand-primary, 10%);
&:hover {
box-shadow: 0 0 0 2px @brand-primary inset;
color: @brand-primary;
}
}
&.btn-success {
box-shadow: 0 0 0 2px darken(@brand-success, 10%) inset;
color: darken(@brand-success, 10%);
&:hover {
box-shadow: 0 0 0 2px @brand-success inset;
color: @brand-success;
}
}
&.btn-info {
box-shadow: 0 0 0 2px darken(@brand-info, 10%) inset;
color: darken(@brand-info, 10%);
&:hover {
box-shadow: 0 0 0 2px @brand-info inset;
color: @brand-info;
}
}
&.btn-warning {
box-shadow: 0 0 0 2px darken(@brand-warning, 10%) inset;
color: darken(@brand-warning, 10%);
&:hover {
box-shadow: 0 0 0 2px @brand-warning inset;
color: @brand-warning;
}
}
&.btn-danger {
box-shadow: 0 0 0 2px darken(@brand-danger, 10%) inset;
color: darken(@brand-danger, 10%);
&:hover {
box-shadow: 0 0 0 2px @brand-danger inset;
color: @brand-danger;
}
}
}
.btn-rounded {
border-radius: 50px;
}