1 | .adm-button {
|
2 | color: #333333;
|
3 | background-color: #ffffff;
|
4 | font-size: 17px;
|
5 | border-width: 1px;
|
6 | border-style: solid;
|
7 | border-color: #eeeeee;
|
8 | border-radius: 4px;
|
9 | }
|
10 | .adm-button::before {
|
11 | transform: translate(-1px, -1px);
|
12 | border: 1px solid #000;
|
13 | border-radius: 4px;
|
14 | }
|
15 | .adm-button-default.adm-button-fill-outline {
|
16 | background-color: transparent;
|
17 | border-color: #333333;
|
18 | }
|
19 | .adm-button-default.adm-button-fill-none {
|
20 | background-color: transparent;
|
21 | border-width: 0;
|
22 | }
|
23 | .adm-button:not(.adm-button-default) {
|
24 | color: #ffffff;
|
25 | }
|
26 | .adm-button:not(.adm-button-default).adm-button-fill-outline {
|
27 | background-color: transparent;
|
28 | }
|
29 | .adm-button:not(.adm-button-default).adm-button-fill-none {
|
30 | background-color: transparent;
|
31 | border-width: 0;
|
32 | }
|
33 | .adm-button-primary {
|
34 | background-color: #1677ff;
|
35 | border-color: #1677ff;
|
36 | }
|
37 | .adm-button-primary.adm-button-fill-outline,
|
38 | .adm-button-primary.adm-button-fill-none {
|
39 | color: #1677ff;
|
40 | }
|
41 | .adm-button-success {
|
42 | background-color: #00b578;
|
43 | border-color: #00b578;
|
44 | }
|
45 | .adm-button-success.adm-button-fill-outline,
|
46 | .adm-button-success.adm-button-fill-none {
|
47 | color: #00b578;
|
48 | }
|
49 | .adm-button-danger {
|
50 | background-color: #ff3141;
|
51 | border-color: #ff3141;
|
52 | }
|
53 | .adm-button-danger.adm-button-fill-outline,
|
54 | .adm-button-danger.adm-button-fill-none {
|
55 | color: #ff3141;
|
56 | }
|
57 | .adm-button-warning {
|
58 | background-color: #ff8f1f;
|
59 | border-color: #ff8f1f;
|
60 | }
|
61 | .adm-button-warning.adm-button-fill-outline,
|
62 | .adm-button-warning.adm-button-fill-none {
|
63 | color: #ff8f1f;
|
64 | }
|
65 | .adm-button.adm-button-mini {
|
66 | font-size: 13px;
|
67 | }
|
68 | .adm-button.adm-button-small {
|
69 | padding-top: 3px;
|
70 | padding-bottom: 3px;
|
71 | font-size: 15px;
|
72 | }
|
73 | .adm-button.adm-button-large {
|
74 | padding-top: 11px;
|
75 | padding-bottom: 11px;
|
76 | font-size: 18px;
|
77 | }
|
78 | .adm-button.adm-button-shape-rounded {
|
79 | border-radius: 1000px;
|
80 | }
|
81 | .adm-button.adm-button-shape-rounded::before {
|
82 | border-radius: 1000px;
|
83 | }
|
84 | .adm-button.adm-button-shape-rectangular {
|
85 | border-radius: 0;
|
86 | }
|