76 lines
1.3 KiB
CSS
76 lines
1.3 KiB
CSS
|
|
body {
|
|
background-color: #121212;
|
|
color: #FFFFFF;
|
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
|
|
padding-top: 70px; /* For fixed navbar */
|
|
}
|
|
|
|
.navbar {
|
|
background-color: #1E1E1E !important;
|
|
}
|
|
|
|
.navbar-brand {
|
|
color: #E50914 !important;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.hero {
|
|
padding: 6rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
color: #a0a0a0;
|
|
}
|
|
|
|
.btn-primary-custom {
|
|
background-color: #E50914;
|
|
border-color: #E50914;
|
|
font-weight: bold;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.btn-primary-custom:hover {
|
|
background-color: #c40812;
|
|
border-color: #c40812;
|
|
}
|
|
|
|
.btn-danger-custom {
|
|
background-color: #6c757d;
|
|
border-color: #6c757d;
|
|
color: #fff;
|
|
}
|
|
|
|
.btn-danger-custom:hover {
|
|
background-color: #5a6268;
|
|
border-color: #545b62;
|
|
}
|
|
|
|
.feature-card {
|
|
background-color: #1E1E1E;
|
|
border: 1px solid #333333;
|
|
border-radius: 0.5rem;
|
|
padding: 2rem;
|
|
height: 100%;
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 2.5rem;
|
|
color: #E50914;
|
|
}
|
|
|
|
footer {
|
|
background-color: #1E1E1E;
|
|
color: #a0a0a0;
|
|
padding: 2rem 0;
|
|
margin-top: 4rem;
|
|
}
|