131 lines
2.1 KiB
CSS
131 lines
2.1 KiB
CSS
/* General Body Styles */
|
|
body {
|
|
background-color: #F5F5F7;
|
|
font-family: 'Inter', sans-serif;
|
|
color: #1D1D1F;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-weight: 700;
|
|
}
|
|
|
|
/* Navigation Bar */
|
|
.navbar {
|
|
background-color: #FFFFFF;
|
|
border-bottom: 1px solid #EAEAEA;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-weight: 700;
|
|
color: #1A1A2E !important;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #1A1A2E;
|
|
border-color: #1A1A2E;
|
|
font-family: 'Poppins', sans-serif;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #16213E;
|
|
border-color: #16213E;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background-color: #00DF9A;
|
|
border-color: #00DF9A;
|
|
color: #1A1A2E;
|
|
font-family: 'Poppins', sans-serif;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background-color: #00C88A;
|
|
border-color: #00C88A;
|
|
color: #1A1A2E;
|
|
}
|
|
|
|
|
|
/* Hero Section */
|
|
.hero-section {
|
|
background: linear-gradient(45deg, #1A1A2E, #16213E);
|
|
color: #FFFFFF;
|
|
padding: 6rem 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero-section .display-4 {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero-section .lead {
|
|
font-size: 1.25rem;
|
|
font-weight: 300;
|
|
}
|
|
|
|
/* Odds Display Section */
|
|
.odds-section {
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
.odds-card {
|
|
background-color: #FFFFFF;
|
|
border: none;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
margin-bottom: 1.5rem;
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.odds-card h5 {
|
|
color: #1A1A2E;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.odds-table {
|
|
width: 100%;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.odds-table th, .odds-table td {
|
|
padding: 0.75rem;
|
|
text-align: left;
|
|
}
|
|
|
|
.odds-table th {
|
|
color: #6c757d;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.odds-table .site-name {
|
|
font-weight: 600;
|
|
color: #1A1A2E;
|
|
}
|
|
|
|
.odds-table .odd-value {
|
|
font-weight: 700;
|
|
color: #00DF9A;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background-color: #1A1A2E;
|
|
color: #FFFFFF;
|
|
padding: 2rem 0;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
.footer a {
|
|
color: #00DF9A;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footer a:hover {
|
|
text-decoration: underline;
|
|
}
|