| 1 |
.sp-smart-post-divider { |
| 2 |
border-bottom: 1px solid #ddd; |
| 3 |
display: block; |
| 4 |
width: calc(100% + 32px); |
| 5 |
margin: 0 -16px; |
| 6 |
|
| 7 |
&.blue { |
| 8 |
border-bottom: 1px solid var(--sp-smart-primary-2-100); |
| 9 |
} |
| 10 |
|
| 11 |
&.top { |
| 12 |
margin-top: 16px; |
| 13 |
} |
| 14 |
|
| 15 |
&.bottom { |
| 16 |
margin-bottom: 12px; |
| 17 |
} |
| 18 |
|
| 19 |
&.top-bottom { |
| 20 |
margin-top: 16px; |
| 21 |
margin-bottom: 12px; |
| 22 |
} |
| 23 |
|
| 24 |
&.sp-w-100pct { |
| 25 |
width: 100%; |
| 26 |
border-bottom-width: 1px; |
| 27 |
margin-left: auto; |
| 28 |
margin-right: auto; |
| 29 |
margin-bottom: 12px; |
| 30 |
opacity: 0.6; |
| 31 |
} |
| 32 |
|
| 33 |
&:has(.sp-smart-post-divider-text) { |
| 34 |
border-bottom: none; |
| 35 |
background-color: #fff; |
| 36 |
color: #728bff; |
| 37 |
position: relative; |
| 38 |
text-align: center; |
| 39 |
white-space: nowrap; |
| 40 |
|
| 41 |
&::before { |
| 42 |
content: ""; |
| 43 |
border-bottom: 1px solid #728bff; |
| 44 |
display: block; |
| 45 |
position: absolute; |
| 46 |
top: 50%; |
| 47 |
left: 0; |
| 48 |
width: 100%; |
| 49 |
z-index: 0; |
| 50 |
} |
| 51 |
|
| 52 |
.sp-smart-post-divider-text { |
| 53 |
font-size: 11px; |
| 54 |
background-color: #fff; |
| 55 |
display: inline-block; |
| 56 |
padding: 0 7px; |
| 57 |
position: relative; |
| 58 |
z-index: 1; |
| 59 |
text-transform: uppercase; |
| 60 |
color: #728bff; |
| 61 |
} |
| 62 |
} |
| 63 |
} |
| 64 |
|