| 1 |
.upk-static-social-count { |
| 2 |
display: grid; |
| 3 |
grid-column-gap: 40px; |
| 4 |
grid-template-columns: repeat(4, 1fr); |
| 5 |
justify-content: center; |
| 6 |
width: 100%; |
| 7 |
} |
| 8 |
.upk-static-social-count .upk-item { |
| 9 |
text-align: center; |
| 10 |
transition: all 0.3s ease; |
| 11 |
} |
| 12 |
.upk-static-social-count .upk-item:hover .upk-icon { |
| 13 |
transform: translateY(-5px); |
| 14 |
} |
| 15 |
.upk-static-social-count .upk-icon { |
| 16 |
margin-bottom: 10px; |
| 17 |
transform: translateY(0); |
| 18 |
transition: transform 0.3s ease; |
| 19 |
} |
| 20 |
.upk-static-social-count .upk-icon span { |
| 21 |
font-size: 14px; |
| 22 |
border: 1px solid #c8c6c6; |
| 23 |
color: #565252; |
| 24 |
padding: 12px; |
| 25 |
display: inline-flex; |
| 26 |
align-items: center; |
| 27 |
justify-content: center; |
| 28 |
text-decoration: none; |
| 29 |
border-radius: 100%; |
| 30 |
transition: all 0.3s ease; |
| 31 |
} |
| 32 |
.upk-static-social-count .upk-icon span:hover { |
| 33 |
color: #000; |
| 34 |
} |
| 35 |
.upk-static-social-count .upk-icon span i, .upk-static-social-count .upk-icon span svg { |
| 36 |
height: 1em; |
| 37 |
width: 1em; |
| 38 |
} |
| 39 |
.upk-static-social-count .upk-count { |
| 40 |
font-size: 14px; |
| 41 |
text-transform: uppercase; |
| 42 |
color: #383535; |
| 43 |
font-weight: 600; |
| 44 |
margin-bottom: 4px; |
| 45 |
} |
| 46 |
.upk-static-social-count .upk-meta { |
| 47 |
font-size: 14px; |
| 48 |
text-transform: capitalize; |
| 49 |
color: #626262; |
| 50 |
} |
| 51 |
.upk-static-social-count.upk-style-2 .upk-item { |
| 52 |
text-align: left; |
| 53 |
} |
| 54 |
.upk-static-social-count.upk-style-2 .upk-item, .upk-static-social-count.upk-style-3 .upk-item { |
| 55 |
display: inline-flex; |
| 56 |
align-items: center; |
| 57 |
grid-column-gap: 10px; |
| 58 |
} |
| 59 |
.upk-static-social-count.upk-style-2 .upk-icon, .upk-static-social-count.upk-style-3 .upk-icon { |
| 60 |
margin: 0; |
| 61 |
} |
| 62 |
.upk-static-social-count.upk-style-3 .upk-item { |
| 63 |
text-align: right; |
| 64 |
flex-direction: row-reverse; |
| 65 |
} |