/* 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; } /*
*/ /* when the main page is opened, it might take some time to load everything - for that a loader shall be made visibe. */ /* .cl_Loader { border: 16px solid #f3f3f3; border-radius: 50%; border-top: 16px solid #3498db; width: 120px; height: 120px; animation: spin 2s linear infinite; position: absolute; top: 50%; left: 50%; margin-top: -60px; margin-left: -60px; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } */