wip: Sql task show tmp

This commit is contained in:
chest 2025-01-27 21:01:11 +03:00 committed by Sweetbread
parent e32803811a
commit 4194b0b21d
2 changed files with 19 additions and 6 deletions

View File

@ -238,8 +238,10 @@
text-shadow: black 2px 2px; text-shadow: black 2px 2px;
border: dashed rgba(0, 0, 0, 0.5); border: dashed rgba(0, 0, 0, 0.5);
transition: 0.5s; transition: 0.5s;
animation: 2.5s show cubic-bezier(0, 0, 0.2, 1);
box-shadow: 0.5em 0.5em 0em 0px rgba(0, 0, 0, 0.5); box-shadow: 0.5em 0.5em 0em 0px rgba(0, 0, 0, 0.5);
-webkit-animation: fadeinout 7s cubic-bezier(0, 0, 0.2, 1) forwards;
animation: fadeinout 7s cubic-bezier(1, 0.05, 0.5, 1) forwards;
opacity: 0;
} }
#error:hover { #error:hover {
background-color: rgba(220, 20, 60, 0.65); background-color: rgba(220, 20, 60, 0.65);
@ -247,6 +249,7 @@
box-shadow: 0.7em 0.7em 0em 0px rgba(0, 0, 0, 0.65); box-shadow: 0.7em 0.7em 0em 0px rgba(0, 0, 0, 0.65);
} }
.hidden { .hidden {
color: rgba(0,0,0,0); color: rgba(0,0,0,0);
} }
@ -265,8 +268,10 @@
text-shadow: black 2px 2px; text-shadow: black 2px 2px;
border: dashed rgba(225, 225, 225, 1); border: dashed rgba(225, 225, 225, 1);
transition: 0.5s; transition: 0.5s;
animation: 2.5s show cubic-bezier(0, 0, 0.2, 1);
box-shadow: 0.5em 0.5em 0em 0px rgba(0, 0, 0, 0.5); box-shadow: 0.5em 0.5em 0em 0px rgba(0, 0, 0, 0.5);
-webkit-animation: fadeinout 7s cubic-bezier(0, 0, 0.2, 1) forwards;
animation: fadeinout 7s cubic-bezier(1, 0.05, 0.5, 1) forwards;
opacity: 0;
} }
#success:hover { #success:hover {
background-color: rgba(0, 255, 127, 0.65); background-color: rgba(0, 255, 127, 0.65);
@ -274,11 +279,19 @@
box-shadow: 0.7em 0.7em 0em 0px rgba(0, 0, 0, 0.65); box-shadow: 0.7em 0.7em 0em 0px rgba(0, 0, 0, 0.65);
} }
@keyframes show { @-webkit-keyframes fadeinout {
from { opacity: 0; } 50% { opacity: 1; }
to { opacity: 1; }
} }
@keyframes fadeinout {
50% { opacity: 1; }
}
.hidden {
color: rgba(0,0,0,0);
}
body { body {
background-image: url(/static/imgs/bg.gif); background-image: url(/static/imgs/bg.gif);
width: 100vw; width: 100vw;

View File

@ -15,6 +15,6 @@
<!-- <a href="">lfi</a>--> <!-- <a href="">lfi</a>-->
</nav> </nav>
</div> </div>
<img class="helpimg" src="{{ url_for('static', filename='imgs/icon.png') }}"> <img id="help" src="{{ url_for('static', filename='imgs/icon.png') }}">
</body> </body>
</html> </html>