diff --git a/.env.prod b/.env.prod new file mode 100644 index 0000000..42b5a34 --- /dev/null +++ b/.env.prod @@ -0,0 +1,7 @@ +VW_DEBUG=False +VW_SECRET_KEY=django-insecure-dev-key +VW_ALLOWED_HOSTS=localhost,127.0.0.1,::1 +VW_DB=sqlite://./db.sqlite +VW_OPENID_CLIENT_ID=dev-client +VW_OPENID_CLIENT_SECRET=public-secret +VW_OPENID_SCOPE=openid profile diff --git a/src/vinywaji/gui/static/css/dist/styles.css b/src/vinywaji/gui/static/css/dist/styles.css index 1c8f65a..b349f06 100644 --- a/src/vinywaji/gui/static/css/dist/styles.css +++ b/src/vinywaji/gui/static/css/dist/styles.css @@ -906,6 +906,10 @@ input[type=number] { gap: 0.5rem; } +.gap-4 { + gap: 1rem; +} + .place-self-center { place-self: center; } @@ -4912,6 +4916,11 @@ input[type=number] { line-height: 1.25rem; } +.text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; +} + .font-bold { font-weight: 700; } @@ -4948,6 +4957,10 @@ input[type=number] { color: rgb(17 24 39 / var(--tw-text-opacity)); } +.underline { + text-decoration-line: underline; +} + .shadow-lg { --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); @@ -8886,10 +8899,23 @@ input[type=number] { background-color: rgb(4 47 46 / 0.95); } +.hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgb(107 114 128 / var(--tw-text-opacity)); +} + .hover\:underline:hover { text-decoration-line: underline; } +.hover\:decoration-4:hover { + text-decoration-thickness: 4px; +} + +.hover\:decoration-2:hover { + text-decoration-thickness: 2px; +} + .focus\:border-blue-600:focus { --tw-border-opacity: 1; border-color: rgb(37 99 235 / var(--tw-border-opacity)); diff --git a/src/vinywaji/gui/templates/components/footer.html b/src/vinywaji/gui/templates/components/footer.html index 335da59..6bf6e83 100644 --- a/src/vinywaji/gui/templates/components/footer.html +++ b/src/vinywaji/gui/templates/components/footer.html @@ -1,13 +1,13 @@