93 lines
1.8 KiB
CSS
93 lines
1.8 KiB
CSS
:root {
|
|
--primary-color: #FFFFFF;
|
|
--secondary-color: #1A1A1A;
|
|
--accent-color-1: #4A90E2;
|
|
--accent-color-2: #F5A623;
|
|
--background-color: #F8F9FA;
|
|
--heading-font: 'Poppins', sans-serif;
|
|
--body-font: 'Roboto', sans-serif;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--body-font);
|
|
background-color: var(--background-color);
|
|
color: var(--secondary-color);
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: var(--heading-font);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--accent-color-1);
|
|
border-color: var(--accent-color-1);
|
|
font-weight: 600;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 0.5rem;
|
|
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #357ABD;
|
|
border-color: #357ABD;
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(135deg, #6DD5FA, #4A90E2);
|
|
color: var(--primary-color);
|
|
padding: 6rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-section h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero-section p {
|
|
font-size: 1.25rem;
|
|
max-width: 600px;
|
|
margin: 1rem auto;
|
|
}
|
|
|
|
.product-grid {
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
.product-card {
|
|
background-color: var(--primary-color);
|
|
border: none;
|
|
border-radius: 0.75rem;
|
|
overflow: hidden;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
.product-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.product-card .card-img-top {
|
|
width: 100%;
|
|
height: 200px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.product-card .card-body {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.product-card .card-title {
|
|
font-size: 1.2rem;
|
|
font-weight: 600;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.product-card .card-text {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
color: var(--accent-color-1);
|
|
margin-bottom: 1rem;
|
|
} |