From 4a6487835b0936da53f67396771a41e3b5c51dde Mon Sep 17 00:00:00 2001 From: Eduardo Silva Date: Tue, 30 Dec 2025 10:53:32 -0300 Subject: [PATCH] Move inline styles to custom_styles.css and link in base.html --- static_files/custom_styles.css | 29 +++++++++++++++++++++++++++++ templates/base.html | 25 +------------------------ 2 files changed, 30 insertions(+), 24 deletions(-) create mode 100644 static_files/custom_styles.css diff --git a/static_files/custom_styles.css b/static_files/custom_styles.css new file mode 100644 index 0000000..39a052c --- /dev/null +++ b/static_files/custom_styles.css @@ -0,0 +1,29 @@ +.min-width { + width: 1%; + white-space: nowrap; +} +.preloader{ + display: none; +} +.wrapper { + max-width: 1400px !important; + margin: 0 auto; +} + +body.layout-boxed { + background: radial-gradient(circle at center, #444 0%, #ccc 80%, #fff 100%); +} +body.layout-boxed .wrapper { + background-color: #fff; + box-shadow: 0 0 15px rgba(0,0,0,0.2); +} + +.blink { + animation: blink 0.8s infinite; +} + +@keyframes blink { + 0% { opacity: 1; transform: scale(1); } + 50% { opacity: 0.3; transform: scale(1.1); } + 100% { opacity: 1; transform: scale(1); } +} diff --git a/templates/base.html b/templates/base.html index 70a0728..f73f748 100644 --- a/templates/base.html +++ b/templates/base.html @@ -28,30 +28,7 @@ - - - + {% block page_custom_head %}{% endblock%}