Llista d'objectius
unknown
css
3 years ago
793 B
8
Indexable
.et_pb_tabs .et_pb_all_tabs .et_pb_tab .et_pb_tab_content ol.goals-list {
list-style: none;
counter-reset: goals-list-counter;
margin: 2rem 0 2rem 1rem;
padding-left: 5rem !important;
}
.goals-list > li {
position: relative;
counter-increment: goals-list-counter;
line-height: 1.2;
margin: 0 0 2rem 0;
}
.goals-list > li::marker {
display: none;
}
.goals-list > li::before {
content: counter(goals-list-counter);
color: #000;
--size: 3rem;
font-size: var(--size);
font-variant-numeric: tabular-nums;
font-weight: bold;
width: var(--size);
height: var(--size);
line-height: var(--size);
text-align: center;
border: 0.3125rem solid #000;
position: absolute;
left: calc(-1 * var(--size) - 2rem);
top: 50%;
transform: translateY(-50%);
}
Editor is loading...