diff --git a/app/templates/includes/navbar.html b/app/templates/includes/navbar.html index 229ab5f..fc5ccf4 100644 --- a/app/templates/includes/navbar.html +++ b/app/templates/includes/navbar.html @@ -137,7 +137,7 @@ diff --git a/app/templates/includes/tools/calculator.html b/app/templates/includes/tools/calculator.html new file mode 100644 index 0000000..25cc4ed --- /dev/null +++ b/app/templates/includes/tools/calculator.html @@ -0,0 +1,104 @@ +{% load formats %} +
+ +
+ +
+ + +
+
+
=
+
+
+
+
+ +
+
diff --git a/app/templates/layouts/base.html b/app/templates/layouts/base.html index 4c9dde9..b55ceba 100644 --- a/app/templates/layouts/base.html +++ b/app/templates/layouts/base.html @@ -37,97 +37,8 @@ {% include 'includes/toasts.html' %} -
- -
- -
- - -
-
-
=
-
-
-
-
- -
-
{% block extra_js_body %}{% endblock %} diff --git a/frontend/src/styles/_animations.scss b/frontend/src/styles/_animations.scss index 44787e0..765a921 100644 --- a/frontend/src/styles/_animations.scss +++ b/frontend/src/styles/_animations.scss @@ -130,3 +130,57 @@ opacity: 0; } } + +/* ---------------------------------------------- + * Generated by Animista on 2024-12-21 0:6:39 + * Licensed under FreeBSD License. + * See http://animista.net/license for more info. + * w: http://animista.net, t: @cssanimista + * ---------------------------------------------- */ + +/** + * ---------------------------------------- + * animation scale-in-center + * ---------------------------------------- + */ +@keyframes scale-in-center { + 0% { + transform: scale(0); + opacity: 1; + } + 100% { + transform: scale(1); + opacity: 1; + } +} + +.scale-in-center { + animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; +} + +/* ---------------------------------------------- + * Generated by Animista on 2024-12-21 0:8:10 + * Licensed under FreeBSD License. + * See http://animista.net/license for more info. + * w: http://animista.net, t: @cssanimista + * ---------------------------------------------- */ + +/** + * ---------------------------------------- + * animation scale-out-center + * ---------------------------------------- + */ +@keyframes scale-out-center { + 0% { + transform: scale(1); + opacity: 1; + } + 100% { + transform: scale(0); + opacity: 1; + } +} + +.scale-out-center { + animation: scale-out-center 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both; +}