8,960
edits
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
. | /* Circular Table Styling */ | ||
.circular-table { | |||
display: grid; | |||
grid-template-columns: repeat(8, 1fr); | |||
grid-template-rows: repeat(8, 1fr); | |||
position: relative; | position: relative; | ||
width: 300px; | width: 300px; | ||
| Line 5: | Line 9: | ||
border-radius: 50%; | border-radius: 50%; | ||
overflow: hidden; | overflow: hidden; | ||
margin: auto; | |||
} | } | ||
. | .circular-table a { | ||
position: absolute; | position: absolute; | ||
width: 100%; | width: 100%; | ||
height: 100%; | height: 100%; | ||
} | } | ||
. | .circular-table div { | ||
position: absolute; | |||
transform: | width: 100%; | ||
height: 100%; | |||
clip-path: polygon(50% 50%, 0 100%, 100% 100%); | |||
transform-origin: center; | |||
transition: background-color 0.6s ease, filter 0.6s ease; | |||
} | } | ||
.circular-table div:hover { | |||
filter: brightness(1.2); | |||
opacity: 1; | |||
. | |||
. | |||
} | } | ||