Files
parts_website/static/dist/css/main.bundle.css

187 lines
2.7 KiB
CSS

:root {
--primary: #2563eb;
--secondary: #1e40af;
--text: #1f2937;
--subheading: #4b5563;
--light: #f3f4f6;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: system-ui, -apple-system, sans-serif;
}
body {
line-height: 1.6;
color: var(--text);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
/*
.page_body {
position: fixed;
top:
}
*/
.button {
display: inline-block;
padding: 0.75rem 1.5rem;
border-radius: 6px;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
width: fit-content;
}
.button-primary {
background: var(--primary);
color: white;
}
.button-primary:hover {
background: var(--secondary);
}
.button-light {
background: white;
color: var(--primary);
}
.button-light:hover {
background: var(--light);
}
.logo:hover{
cursor: pointer;
}
header {
background: white;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
/* position: fixed;
top: 0; */
width: 100%;
z-index: 1000;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
color: var(--primary);
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
text-decoration: none;
color: var(--text);
font-weight: 500;
align-content: center;
}
.nav-links a.button {
color: white;
}
.footer {
background: #1f2937;
color: #f3f4f6;
padding: 4rem 0 2rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h3 {
color: #fff;
margin-bottom: 1rem;
font-size: 1.2rem;
}
.footer-section ul {
list-style: none;
padding: 0;
}
.footer-section ul li {
margin-bottom: 0.5rem;
}
.footer-section a {
color: #f3f4f6;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-section a:hover {
color: #fff;
text-decoration: underline;
}
.footer-bottom {
border-top: 1px solid #374151;
padding-top: 2rem;
text-align: center;
font-size: 0.9rem;
}
.footer-bottom a {
color: aquamarine;
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr;
text-align: center;
}
}
.text-center {
text-align: center;
}
.section-title {
font-size: 2rem;
margin-bottom: 1rem;
}
.section-subtitle {
margin-bottom: 2rem;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.nav-links {
display: none;
}
}
/* Default */
/*# sourceMappingURL=main.bundle.css.map*/