111 lines
1.8 KiB
CSS
111 lines
1.8 KiB
CSS
/* General Body Styles */
|
|
body {
|
|
background-color: #f8f9fa; /* Light gray background */
|
|
color: #212529; /* Dark text for readability */
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
/* Typography */
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Navbar */
|
|
.navbar {
|
|
background-color: #ffffff;
|
|
border-bottom: 1px solid #e9ecef;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-weight: 700;
|
|
color: #9F70FD !important;
|
|
}
|
|
|
|
.nav-link {
|
|
color: #6c757d !important;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: #9F70FD !important;
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero-section {
|
|
padding: 6rem 0;
|
|
background-color: #ffffff;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-section h1 {
|
|
font-size: 3.5rem;
|
|
color: #212529;
|
|
}
|
|
|
|
.hero-section .lead {
|
|
font-size: 1.25rem;
|
|
color: #6c757d;
|
|
}
|
|
|
|
/* Event Grid */
|
|
.event-grid {
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
.event-card {
|
|
background-color: #ffffff;
|
|
border: 1px solid #e9ecef;
|
|
border-radius: 0.75rem;
|
|
margin-bottom: 2rem;
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
}
|
|
|
|
.event-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.event-card-body {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.event-artist {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
color: #212529;
|
|
}
|
|
|
|
.event-details {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 1rem 0;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.event-details li {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.event-status {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.status-open {
|
|
color: #7ED321;
|
|
}
|
|
|
|
.status-closed {
|
|
color: #888888;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background-color: #ffffff;
|
|
padding: 2rem 0;
|
|
border-top: 1px solid #e9ecef;
|
|
color: #6c757d;
|
|
text-align: center;
|
|
} |