move js and css to their own directories

This commit is contained in:
Pierre de Lacroix 2025-11-14 15:43:48 +01:00
parent 6429c6a575
commit bc8b5dc172
Signed by untrusted user who does not match committer: lateralus23
GPG key ID: C20C17EC0D98B2DF
7 changed files with 15 additions and 15 deletions

28
css/drag.css Normal file
View 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);
}