| 1 |
.upk-tag-cloud .upk-item { |
| 2 |
position: relative; |
| 3 |
background: #2B2D42; |
| 4 |
border-radius: 4px; |
| 5 |
align-items: center; |
| 6 |
transition: all 0.3s ease; |
| 7 |
} |
| 8 |
.upk-tag-cloud .upk-name { |
| 9 |
font-size: 14px; |
| 10 |
font-weight: 600; |
| 11 |
color: #fff; |
| 12 |
letter-spacing: 0.5px; |
| 13 |
transition: all 0.3s ease; |
| 14 |
line-height: 1; |
| 15 |
} |
| 16 |
.upk-tag-cloud .upk-count { |
| 17 |
display: inline-flex; |
| 18 |
font-size: 13px; |
| 19 |
padding: 3px 5px; |
| 20 |
color: #fff; |
| 21 |
background: rgba(255, 255, 255, 0.3); |
| 22 |
border-radius: 2px; |
| 23 |
line-height: 1; |
| 24 |
margin-left: 5px; |
| 25 |
transition: all 0.3s ease; |
| 26 |
} |
| 27 |
|
| 28 |
.upk-layout-style--inline .upk-tag-cloud { |
| 29 |
display: -webkit-inline-box; |
| 30 |
} |
| 31 |
.upk-layout-style--inline .upk-tag-cloud .upk-item { |
| 32 |
padding: 8px 16px; |
| 33 |
margin-right: 10px; |
| 34 |
margin-bottom: 10px; |
| 35 |
display: inline-flex; |
| 36 |
} |
| 37 |
.upk-layout-style--inline .upk-tag-cloud .upk-item:nth-last-child(1) { |
| 38 |
margin-right: 0; |
| 39 |
} |
| 40 |
|
| 41 |
.upk-layout-style--grid .upk-tag-cloud { |
| 42 |
display: grid; |
| 43 |
} |
| 44 |
.upk-layout-style--grid .upk-tag-cloud .upk-item { |
| 45 |
padding: 20px; |
| 46 |
display: flex; |
| 47 |
justify-content: space-between; |
| 48 |
} |