Add Custom.CSS for APP CSS

sortierung
Samuel Zielke 1 year ago
parent f566b56c2a
commit 9609ebcb51

@ -0,0 +1,28 @@
/* LOGIN START PAGE */
@keyframes slide-out {
0% {
transform: translateX(0);
opacity: 1;
}
100% {
transform: translateX(-100%);
opacity: 0;
}
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.slide-out {
animation: slide-out 1s forwards;
}
.fade-in {
animation: fade-in 1s forwards;
}

@ -7,6 +7,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{% static 'app/css/bootstrap.css' %}">
<link rel="stylesheet" href="{% static 'app/css/custom.css' %}">
{% progressive_web_app_meta %}

Loading…
Cancel
Save

Powered by TurnKey Linux.