modified: templates/footer.html

modified:   templates/global_admin_dashboard.html
	modified:   templates/user_giveaways.html
	modified:   templates/user_landing_page.html
This commit is contained in:
SimolZimol
2025-08-24 00:52:47 +02:00
parent df8e6dd2b8
commit f15b521e9c
4 changed files with 35 additions and 26 deletions

View File

@@ -86,7 +86,7 @@
.site-footer {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
color: #e2e8f0;
padding: 3rem 0 1rem 0;
padding: 2rem 0 0.75rem 0;
margin-top: auto;
border-top: 1px solid rgba(148, 163, 184, 0.2);
position: relative;
@@ -112,8 +112,8 @@
.footer-title {
color: #f8fafc;
font-weight: 600;
font-size: 1.1rem;
margin-bottom: 1rem;
font-size: 1rem;
margin-bottom: 0.75rem;
display: flex;
align-items: center;
gap: 0.5rem;
@@ -125,9 +125,9 @@
.footer-text {
color: #94a3b8;
font-size: 0.9rem;
line-height: 1.6;
margin-bottom: 1rem;
font-size: 0.85rem;
line-height: 1.4;
margin-bottom: 0.75rem;
}
.footer-links {
@@ -137,13 +137,13 @@
}
.footer-links li {
margin-bottom: 0.5rem;
margin-bottom: 0.35rem;
}
.footer-links a {
color: #94a3b8;
text-decoration: none;
font-size: 0.9rem;
font-size: 0.85rem;
transition: all 0.3s ease;
display: flex;
align-items: center;
@@ -164,21 +164,21 @@
.footer-social {
display: flex;
gap: 1rem;
margin-top: 1rem;
gap: 0.75rem;
margin-top: 0.75rem;
}
.social-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
width: 35px;
height: 35px;
background: rgba(59, 130, 246, 0.1);
border: 1px solid rgba(59, 130, 246, 0.2);
border-radius: 50%;
color: #3b82f6;
font-size: 1.2rem;
font-size: 1.1rem;
transition: all 0.3s ease;
text-decoration: none;
}
@@ -192,8 +192,8 @@
}
.footer-bottom {
margin-top: 2rem;
padding-top: 1.5rem;
margin-top: 1.5rem;
padding-top: 1rem;
border-top: 1px solid rgba(148, 163, 184, 0.1);
}
@@ -218,27 +218,27 @@
/* Responsive Design */
@media (max-width: 768px) {
.site-footer {
padding: 2rem 0 1rem 0;
padding: 1.5rem 0 0.75rem 0;
}
.footer-title {
font-size: 1rem;
margin-bottom: 0.75rem;
font-size: 0.95rem;
margin-bottom: 0.5rem;
}
.footer-text,
.footer-links a {
font-size: 0.85rem;
font-size: 0.8rem;
}
.footer-social {
justify-content: center;
margin-top: 1.5rem;
margin-top: 1rem;
}
.footer-version {
justify-content: center;
margin-top: 1rem;
margin-top: 0.75rem;
flex-direction: column;
gap: 0.25rem;
}

View File

@@ -5,7 +5,10 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Global Admin Dashboard</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link href="https://stackpath.bootstrapc <div class="container-fluid" style="flex: 1;">
<div class="row justify-content-center">
<div class="col-lg-10 col-xl-8">
<div class="admin-container">om/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
body {
@@ -13,6 +16,8 @@
min-height: 100vh;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #e0e0e0;
display: flex;
flex-direction: column;
}
.admin-navbar {

View File

@@ -12,6 +12,8 @@
min-height: 100vh;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #e0e0e0;
display: flex;
flex-direction: column;
}
.giveaways-container {
@@ -195,7 +197,7 @@
</head>
<body>
{% include 'navigation.html' %}
<div class="container-fluid">
<div class="container-fluid" style="flex: 1;">
<div class="row justify-content-center">
<div class="col-lg-10 col-xl-8">
<div class="giveaways-container">

View File

@@ -13,6 +13,8 @@
min-height: 100vh;
color: #e2e8f0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
}
.landing-container {
@@ -22,12 +24,12 @@
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
padding: 2rem;
margin-top: 2rem;
margin-top: 1.5rem;
}
.welcome-header {
text-align: center;
margin-bottom: 3rem;
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}
@@ -222,7 +224,7 @@
<body>
{% include 'navigation.html' %}
<div class="container-fluid">
<div class="container-fluid" style="flex: 1;">
<div class="row justify-content-center">
<div class="col-lg-10 col-xl-8">
<div class="landing-container">