29 lines
535 B
CSS
29 lines
535 B
CSS
|
|
|
|
main img.draggable {
|
|
max-width: 150px;
|
|
max-height: 150px;
|
|
position: absolute;
|
|
filter: saturate(2);
|
|
}
|
|
|
|
|
|
.draggable {
|
|
cursor: move;
|
|
position: relative;
|
|
width: fit-content;
|
|
user-select: none;
|
|
z-index: 1;
|
|
filter: drop-shadow(5px 3px 2px #000000b7);
|
|
}
|
|
|
|
span.draggable {
|
|
display: inline-block;
|
|
/* text-shadow: 1px 1px black, 0px 1px black, -1px 0px black, -1px -1px black; */
|
|
}
|
|
|
|
.draggable[data-moving="1"] {
|
|
transform: rotate(-3deg);
|
|
filter: drop-shadow(15px 15px 6px #20202052);
|
|
}
|