basic simili svelte workflow created

This commit is contained in:
asus
2023-10-27 16:11:42 +02:00
parent ac764c469a
commit 8c84ee4073
13 changed files with 482 additions and 878 deletions

View File

@@ -0,0 +1,34 @@
<div class="mouse_frame">
<div class="insert_html" data-path="ascii_elements/mouse_4.html"></div>
</div>
<style>
.mouse_frame {
position: relative;
margin-left: 0px;
/*
border: 1px solid red;
margin-right: auto;
height: 8.5em;
width: 11.9em;
*/
width: fit-content;
}
pre.mouse {
--tmouse: 2s;
position: absolute;
left: 0px;
bottom: 0px;
margin: 0px;
opacity: 0;
animation-name: mouse;
animation-iteration-count: infinite;
animation-duration: var(--tmouse);
animation-timing-function: linear;
animation-direction: normal;
}
pre.mouse:first-child {
position: relative;
}
</style>