Spaces:
Running
Running
/* define some variables */ | |
:root { | |
--cl_Neon_Green: rgb(236, 255, 127); | |
--shiny_White: rgb(255, 253, 250); | |
} | |
/* tell that a tranformation shall be performed with a duration of 0.3 seconds and style easei-in */ | |
.figure{ | |
transition: transform .3s ease-in; | |
/* let also the margins be applied as an animation */ | |
transition: margin .3s ease-in; | |
} | |
/* here the actual transformation is performed */ | |
.figure:hover{ | |
transform: scale(1.3); | |
z-index: 999; | |
margin: 87px; | |
position: relative; | |
} | |
/* .modebar-btn{ | |
visibility: hidden; | |
} */ | |
/* plotly logo */ | |
.modebar-btn--logo{ | |
visibility: hidden; | |
} |