35 lines
629 B
HTML
35 lines
629 B
HTML
|
|
<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>
|