25 lines
416 B
Plaintext
25 lines
416 B
Plaintext
.draggable {
|
|
position: fixed;
|
|
right: 0;
|
|
top: 50%;
|
|
z-index: 50;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
font-size: 24px;
|
|
width: 48px;
|
|
height: 48px;
|
|
background: #417FEF;
|
|
box-shadow: 0px 8px 12px 1px rgba(0, 0, 0, 0.08);
|
|
color: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
opacity: .65;
|
|
transition: opacity .3s;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|