Rapidtags 2

This commit is contained in:
Flatlogic Bot 2025-11-18 02:45:41 +00:00
parent 6248a8f6ce
commit d74af7d133
5 changed files with 11 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 KiB

View File

@ -144,7 +144,10 @@ USE_TZ = True
# https://docs.djangoproject.com/en/5.2/howto/static-files/
STATIC_URL = 'static/'
STATIC_ROOT = BASE_DIR / 'static'
STATIC_ROOT = BASE_DIR / 'staticfiles'
STATICFILES_DIRS = [
BASE_DIR / 'assets',
]
# Email
EMAIL_BACKEND = os.getenv(

View File

@ -10,7 +10,7 @@ body {
position: relative;
padding: 100px 0;
text-align: center;
background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb');
background-image: url('../pasted-20251118-024426-e59dd4cc.jpg');
background-size: cover;
background-position: center;
min-height: 100vh;
@ -26,7 +26,7 @@ body {
left: 0;
right: 0;
bottom: 0;
background: rgba(15, 52, 96, 0.7); /* Dark Blue overlay */
background: rgba(15, 52, 96, 0.6); /* Dark Blue overlay, slightly more transparent */
z-index: 1;
}
@ -40,13 +40,15 @@ h1, .h1 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
color: #FFFFFF;
font-size: 3.5rem;
font-size: 3.8rem; /* Slightly larger */
margin-bottom: 1rem;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Stylish shadow */
}
p.lead {
color: rgba(255, 255, 255, 0.8);
color: rgba(255, 255, 255, 0.9); /* Brighter lead text */
margin-bottom: 2rem;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* Subtle shadow */
}
/* Form Styles */
@ -122,4 +124,4 @@ p.lead {
margin-right: 0.5rem;
margin-bottom: 0.5rem;
font-size: 0.9rem;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 KiB