|
|
|
@ -1,11 +1,12 @@
|
|
|
|
|
.float_button {
|
|
|
|
|
background-image: url(./images/float_switch.jpg);
|
|
|
|
|
height: 112px;
|
|
|
|
|
background-image: url(images/float_switch.jpg);
|
|
|
|
|
height: 141px;
|
|
|
|
|
width: 38px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -38px;
|
|
|
|
|
top: 32%;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
.float_button .text {
|
|
|
|
|
position: relative;
|
|
|
|
@ -17,8 +18,8 @@
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jupyter_float_button {
|
|
|
|
|
background-image: url(./images/float_switch.jpg);
|
|
|
|
|
height: 112px;
|
|
|
|
|
background-image: url(images/float_switch.jpg);
|
|
|
|
|
height: 141px;
|
|
|
|
|
width: 38px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0px;
|
|
|
|
@ -26,6 +27,7 @@
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
left:auto;
|
|
|
|
|
z-index: 99999999;
|
|
|
|
|
padding-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jupyter_float_button .text {
|
|
|
|
@ -37,6 +39,16 @@
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes mymove
|
|
|
|
|
{
|
|
|
|
|
from {right:0px;}
|
|
|
|
|
to {right:330px;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.newjupyter_float_button{
|
|
|
|
|
right: 330px;
|
|
|
|
|
/*right: 330px;*/
|
|
|
|
|
/*animation-duration:2s;*/
|
|
|
|
|
/*infinite*/
|
|
|
|
|
animation:mymove 0.35s;
|
|
|
|
|
animation-fill-mode:forwards;
|
|
|
|
|
}
|