| 1 |
/* Jltma Progress Bar */ |
| 2 |
[class*=jltma-progress-bar-] { |
| 3 |
width: 100%; |
| 4 |
display: inline-block; |
| 5 |
} |
| 6 |
|
| 7 |
.ldBar { |
| 8 |
position: relative; |
| 9 |
width: 100%; |
| 10 |
} |
| 11 |
.ldBar.label-center > .ldBar-label { |
| 12 |
position: absolute; |
| 13 |
top: 50%; |
| 14 |
left: 50%; |
| 15 |
transform: translate(-50%, -50%); |
| 16 |
text-shadow: 0 0 3px #fff; |
| 17 |
} |
| 18 |
.ldBar .ldBar-label:after { |
| 19 |
content: "%"; |
| 20 |
display: inline; |
| 21 |
} |
| 22 |
.ldBar.no-percent .ldBar-label:after { |
| 23 |
content: ""; |
| 24 |
} |
| 25 |
.ldBar svg { |
| 26 |
width: 100% !important; |
| 27 |
} |
| 28 |
|
| 29 |
[class*=jltma-progress-bar-].line { |
| 30 |
position: relative; |
| 31 |
} |
| 32 |
[class*=jltma-progress-bar-].line .jltma-progress-bar-title { |
| 33 |
margin: 0; |
| 34 |
} |
| 35 |
[class*=jltma-progress-bar-].line .ldBar-label { |
| 36 |
position: absolute; |
| 37 |
top: -26px; |
| 38 |
right: 0; |
| 39 |
color: #132c47; |
| 40 |
} |
| 41 |
[class*=jltma-progress-bar-].line:has(h6) .ldBar-label { |
| 42 |
top: 0 !important; |
| 43 |
} |
| 44 |
|
| 45 |
[class*=jltma-progress-bar-].line-bubble { |
| 46 |
position: relative; |
| 47 |
} |
| 48 |
[class*=jltma-progress-bar-].line-bubble .ldBar-label { |
| 49 |
position: absolute; |
| 50 |
left: 0; |
| 51 |
top: 56%; |
| 52 |
width: 50px; |
| 53 |
height: 50px; |
| 54 |
border-radius: 50%; |
| 55 |
line-height: 50px; |
| 56 |
text-align: center; |
| 57 |
font-size: 12px; |
| 58 |
color: #fff; |
| 59 |
margin-top: -16.5px; |
| 60 |
transform: translateX(-50%); |
| 61 |
} |
| 62 |
|
| 63 |
[class*=jltma-progress-bar-].circle { |
| 64 |
position: relative; |
| 65 |
} |
| 66 |
[class*=jltma-progress-bar-].circle .ldBar-label { |
| 67 |
position: absolute; |
| 68 |
top: 50%; |
| 69 |
left: 50%; |
| 70 |
font-size: 36px; |
| 71 |
color: #132c47; |
| 72 |
transform: translate(-50%, -50%); |
| 73 |
} |
| 74 |
[class*=jltma-progress-bar-].circle h3 { |
| 75 |
position: absolute; |
| 76 |
bottom: -20px; |
| 77 |
left: 50%; |
| 78 |
transform: translateX(-50%); |
| 79 |
} |
| 80 |
[class*=jltma-progress-bar-].circle h6 { |
| 81 |
text-align: center; |
| 82 |
} |
| 83 |
|
| 84 |
[class*=jltma-progress-bar-].fan { |
| 85 |
position: relative; |
| 86 |
} |
| 87 |
[class*=jltma-progress-bar-].fan h3 { |
| 88 |
position: absolute; |
| 89 |
bottom: -20px; |
| 90 |
left: 50%; |
| 91 |
transform: translateX(-50%); |
| 92 |
} |
| 93 |
[class*=jltma-progress-bar-].fan .ldBar-label { |
| 94 |
position: absolute; |
| 95 |
left: 50%; |
| 96 |
top: 50%; |
| 97 |
transform: translate(-50%, -20%); |
| 98 |
font-size: 30px; |
| 99 |
} |
| 100 |
[class*=jltma-progress-bar-].fan .left-title { |
| 101 |
position: absolute; |
| 102 |
font-size: 14px; |
| 103 |
left: 0; |
| 104 |
bottom: -10px; |
| 105 |
} |
| 106 |
[class*=jltma-progress-bar-].fan .right-title { |
| 107 |
position: absolute; |
| 108 |
font-size: 14px; |
| 109 |
bottom: -10px; |
| 110 |
right: 0; |
| 111 |
} |
| 112 |
[class*=jltma-progress-bar-].fan h6 { |
| 113 |
text-align: center; |
| 114 |
} |
| 115 |
|
| 116 |
/* Jltma Progress Bar */ |