Spaces:
Running
Running
File size: 1,220 Bytes
a67ae61 8ed5f8a 48cb32a 8ed5f8a 48cb32a 8ed5f8a 3a238b7 8ed5f8a 48cb32a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
/* 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;
}
/* <div id="loader_Initial" class="cl_Loader">
</div> */
/* 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); }
}
*/
|