8,960
edits
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
.pie-chart11 { | |||
list-style: none; | |||
width: 200px; | |||
height: 200px; | |||
border-radius: 50%; | |||
position: relative; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
.pie-chart11 .segment { | |||
width: 50%; | |||
height: 50%; | |||
background-color: var(--color); | |||
position: absolute; | |||
top: 50%; | |||
left: 50%; | |||
transform-origin: 0% 100%; | |||
transform: rotate(var(--rotate)) translateY(-100%); | |||
transition: transform 0.3s ease; | |||
} | |||
.pie-chart11 .segment:hover { | |||
transform: rotate(var(--rotate)) translateY(-120%); | |||
} | |||
.list-item { | .list-item { | ||
list-style-type: none; | list-style-type: none; | ||