index.css
3.03 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
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
.zui-tag {
font-size: 0.875rem;
text-align: center;
display: inline-block;
-webkit-user-select: none;
}
.zui-tag .default {
background: rgba(0,0,0,0);
color: rgba(231, 64, 33, 1);
border-color: rgba(231, 64, 33, 1);
}
.zui-tag .shape-dot {
border-radius: 50%;
height: 1rem;
width: 1rem;
}
.zui-tag .shape-dot.size-tiny {
height: 0.5rem;
width: 0.5rem;
}
.zui-tag .shape-square {
padding: 0 0.375rem;
border-radius: 50%;
}
.zui-tag .shape-square {
padding: 0 0.375rem;
border-radius: 0;
}
.zui-tag .shape-fillet {
padding: 0.0625rem 0.25rem;
border-radius: 0.0625rem;
}
.zui-tag .shape-quarter {
position: relative;
display: flex;
width: 1.75rem;
height: 1.75rem;
background: transparent;
overflow: hidden;
}
.zui-tag .shape-quarter .quarter-content {
position: relative;
left: 10%;
bottom: 10%;
display: flex;
flex: 1;
z-index: 2;
justify-content: center;
align-items: center;
}
.zui-tag .shape-quarter .quarter-bg {
position: absolute;
top: -100%;
left: 0;
width: 200%;
height: 200%;
border-radius: 50%;
}
.zui-tag .shape-quarter .quarter-wrap {
display: inline-block;
padding: 0.5rem 0.375rem 0.3125rem 0.8125rem;
}
.zui-tag .shape-quarter .quarter-wrap-hidden {
visibility: hidden;
display: inline-block;
padding: 0.5rem 0.375rem 0.3125rem 0.8125rem;
}
.zui-tag .shape-quarter.size-small {
width: 1.25rem;
height: 1.25rem;
}
.zui-tag .shape-quarter.size-tiny {
width: 0.75rem;
height: 0.75rem;
}
.zui-tag .shape-coupon {
position: relative;
padding: 0 0.3125rem;
background: transparent !important;
}
.zui-tag .shape-coupon .coupon-container {
padding: 0.0625rem 0;
}
.zui-tag .shape-coupon .left-coupon,
.zui-tag .shape-coupon .right-coupon {
position: absolute;
top: 0;
width: 0.3125rem;
height: 100%;
}
.zui-tag .shape-coupon .left-coupon {
left: 0;
}
.zui-tag .shape-coupon .right-coupon {
right: 0;
}
.zui-tag .shape-coupon.size-small {
padding: 0 0.25rem;
}
.zui-tag .shape-coupon.size-small .left-coupon,
.zui-tag .shape-coupon.size-small .right-coupon {
width: 0.25rem;
}
.zui-tag .shape-coupon.size-tiny {
padding: 0 0.15625rem;
}
.zui-tag .shape-coupon.size-tiny .left-coupon,
.zui-tag .shape-coupon.size-tiny .right-coupon {
width: 0.15625rem;
}
.zui-tag .shape-bubble {
width: 1.5625rem;
padding: 0.1875rem 0;
border-radius: 50%;
border-bottom-left-radius: 0;
box-sizing: border-box;
}
.zui-tag .shape-bubble.size-small {
width: 1.1875rem;
padding: 0.09375rem 0;
}
.zui-tag .shape-bubble.size-tiny {
width: 0.75rem;
padding: 0.0625rem 0;
}
.zui-tag .size-large {
font-size: 0.8125rem;
}
.zui-tag .size-small {
font-size: 0.625rem;
}
.zui-tag .size-tiny {
font-size: 0.375rem;
}
.zui-tag .type-fill {
color: #fff;
}
.zui-tag .type-ghost {
border: 1px solid #ff5151;
background: rgba(0,0,0,0);
}
.zui-tag .font-weight-normal {
font-weight: normal;
}
.zui-tag .font-weight-bold {
font-weight: bold;
}
.zui-tag .font-weight-bolder {
font-weight: bolder;
}
.zui-tag .md-icon.icon-font {
font-size: inherit;
transform: scale(1.2);
}