btn.css
885 Bytes
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
.m-btn {
display: inline-block;
padding: 0 10px;
line-height: 22px;
font-size: 13px;
color: #666;
text-align: center;
background-color: #f9f9f9;
cursor: pointer;
vertical-align: middle;
border: 1px solid #ddd;
}
.m-btn.btn-success {
color: #FFF;
background-color: #6C2;
border: none;
}
.m-btn.btn-success.reverse {
background-color: #FFF;
color: #6C2;
line-height: 43px;
border: 1px solid #6C2;
}
.m-btn.btn-submit {
font-size: 16px;
text-align: center;
width: 160px;
line-height: 45px;
color: #FFF;
background-color: #f67a27;
border: none;
}
.m-btn.btn-warning {
color: #FFF;
background-color: #ff9d2c;
border: none;
}
.m-btn.btn-danger {
color: #FFF;
background-color: #fa4535;
border: none;
}
.m-btn.disabled {
background-color: #eaeaea;
border-color: #eaeaea;
padding: 3px 15px;
cursor: not-allowed !important;
}