-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttons-style.css
162 lines (147 loc) · 3.02 KB
/
buttons-style.css
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
.bk-clear {
overflow: hidden;
display: block;
clear: both;
}
.bk-button-wrapper a {
border: none;
padding: 0;
margin: 0;
-webkit-transition: all .3s ;
-moz-transition: all .3s ;
-o-transition: all .3s ;
transition: all .3s ;
}
.bk-button-wrapper .bk-button {
font-family: Arial, Helvetica, sans-serif;
color: #ffffff;
padding: 5px 12px;
font-size: 12px;
background: #6b6b6b;
background: -moz-linear-gradient(
top,
#6b6b6b 0%,
#000000);
background: -webkit-gradient(
linear, left top, left bottom,
from(#6b6b6b),
to(#000000));
border: 1px solid #000000;
text-shadow:
0px -1px 0px rgba(000,000,000,0.4),
0px 1px 0px rgba(255,255,255,0.3);
display: inline-block;
-webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .4);
-moz-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .4);
box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .4);
margin: 10px;
behavior: url(PIE.htc);
}
.bk-button-wrapper a:hover {
color: none;
opacity: 0.8;
}
.bk-button-wrapper .small {
padding: 5px 12px;
font-size: 12px;
}
.bk-button-wrapper .large {
padding: 10px 22px;
font-size: 14px;
}
.bk-button-wrapper .circle {
border-radius: 1.5em;
-moz-border-radius: 1.5em;
-webkit-border-radius: 1.5em;
}
.bk-button-wrapper .rounded {
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
}
.bk-button-wrapper .square {
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
}
.bk-button-wrapper .left {
float: left;
}
.bk-button-wrapper .right {
float: right;
}
.bk-button-wrapper .blue {
color: #ffffff;
border: 1px solid #325273;
background: #258dc8;
background: -moz-linear-gradient(
top,
#258dc8 0%,
#003366);
background: -webkit-gradient(
linear, left top, left bottom,
from(#258dc8),
to(#003366));
}
.bk-button-wrapper .red {
color: #ffffff;
background: #ff4242;
background: -moz-linear-gradient(
top,
#ff4242 0%,
#c40000);
background: -webkit-gradient(
linear, left top, left bottom,
from(#ff4242),
to(#c40000));
border: 1px solid #8f0007;
}
.bk-button-wrapper .yellow {
color: #a67906;
background: #ffffaf;
background: -moz-linear-gradient(
top,
#ffffaf 0%,
#ffce51 50%,
#ffbc11);
background: -webkit-gradient(
linear, left top, left bottom,
from(#ffffaf),
color-stop(0.50, #ffce51),
to(#ffbc11));
border: 1px solid #a67906;
text-shadow:
0px -1px 0px rgba(166,121,006,1),
0px 1px 0px rgba(255,255,255,0.2);
}
.bk-button-wrapper .green {
color: #ffffff;
background: #78ad4c;
background: -moz-linear-gradient(
top,
#78ad4c 0%,
#174209);
background: -webkit-gradient(
linear, left top, left bottom,
from(#78ad4c),
to(#174209));
border: 1px solid #007304;
}
.bk-button-wrapper .white {
color: #616f7a;
background: #ffffff;
background: -moz-linear-gradient(
top,
#ffffff 0%,
#ffffff 50%,
#d6d6d6);
background: -webkit-gradient(
linear, left top, left bottom,
from(#ffffff),
color-stop(0.50, #ffffff),
to(#d6d6d6));
border: 1px solid #bbbbbb;
text-shadow:
0px -1px 0px rgba(000,000,000,0),
0px 1px 0px rgba(255,255,255,1);
}