post-tag.scss in Easy Elements for Elementor – Addons & Website Templates 1.4.6, at widgets/post-tag/css/post-tag.scss
| 1 | .eel-post-tags-widget { |
| 2 | display: flex; |
| 3 | flex-wrap: wrap; |
| 4 | align-items: center; |
| 5 | gap: 8px; |
| 6 | |
| 7 | .eel-tags-label { |
| 8 | font-size: 24px; |
| 9 | font-weight: 600; |
| 10 | } |
| 11 | |
| 12 | a { |
| 13 | padding: 8px 14px; |
| 14 | border-radius: 6px; |
| 15 | background: #0000000a; |
| 16 | color: inherit; |
| 17 | font-size: 16px; |
| 18 | transition: all 0.3s ease; |
| 19 | display: inline-block; |
| 20 | text-decoration: none; |
| 21 | } |
| 22 | |
| 23 | a:hover { |
| 24 | color: var(--e-global-color-primary); |
| 25 | } |
| 26 | |
| 27 | .eel-tags-sep { |
| 28 | color: #999; |
| 29 | font-size: 14px; |
| 30 | } |
| 31 | } |
| 32 |