-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuttons-style-2.css
More file actions
120 lines (100 loc) · 2.13 KB
/
Copy pathbuttons-style-2.css
File metadata and controls
120 lines (100 loc) · 2.13 KB
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
.ui-button {
display: inline-block;
text-align: center;
text-decoration: none;
font-weight: 400;
border-radius: 0.75rem;
transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
cursor: pointer;
white-space: nowrap;
}
.ui-button--sm {
font-size: 0.875rem;
padding: 0.5rem 1rem;
}
.ui-button--md {
font-size: 1rem;
padding: 0.625rem 1.5rem;
}
.ui-button--lg {
font-size: 1.125rem;
padding: 0.75rem 2rem;
}
.ui-button--block {
display: block;
width: 100%;
}
.ui-button--rounded {
border-radius: 9999px;
}
.ui-button--primary {
background-color: #3b82f6;
color: #ffffff !important;
border: none;
}
.ui-button--white {
background-color: #fff;
color: #3b82f6 !important;
border: none;
}
.ui-button--primary:hover {
background-color: #2563eb;
}
.ui-button--secondary {
background-color: #f3f4f6;
color: #1f2937 !important;
border: none;
}
.ui-button--danger {
background-color: #ff4d4f;
color: #fff !important;
border: 1px solid #ff4d4f;
}
.ui-button--danger:hover {
background-color: #ff7875;
border-color: #ff7875;
}
.ui-button--danger:active {
background-color: #d9363e;
border-color: #d9363e;
}
.ui-button--danger:disabled,
.ui-button--danger[disabled] {
background-color: #ffccc7;
border-color: #ffccc7;
color: #ffffffb3 !important;
cursor: not-allowed;
opacity: 1;
}
.ui-button--secondary:hover {
background-color: #e5e7eb;
}
.ui-button--lightblue {
background-color: #e0f2fe;
color: #007bff !important;
border: none;
}
.ui-button--lightblue:hover {
background-color: #bae6fd;
}
.ui-button--outline {
background-color: transparent;
color: #3b82f6 !important;
border: 1px solid #3b82f6;
}
.ui-button--outline:hover {
background-color: #eff6ff;
}
.ui-button--link {
background-color: transparent;
color: #3b82f6 !important;
border: none;
padding: 0;
text-decoration: none;
font-weight: 400;
}
.ui-button--link:hover {
color: #2563eb !important;
background-color: transparent;
text-decoration: none;
}