move js and css to their own directories
This commit is contained in:
parent
6429c6a575
commit
bc8b5dc172
7 changed files with 15 additions and 15 deletions
28
css/drag.css
Normal file
28
css/drag.css
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
|
||||
|
||||
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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue