File size: 639 Bytes
a67ae61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8ed5f8a
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
/* 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;
}