116 lines
2.0 KiB
CSS
116 lines
2.0 KiB
CSS
/*
|
|
Custom Styles for ACME Climsoft
|
|
*/
|
|
|
|
:root {
|
|
--primary-color: #007BFF;
|
|
--secondary-color: #343A40;
|
|
--accent-color: #17A2B8;
|
|
--background-color: #F8F9FA;
|
|
--text-color: #212529;
|
|
--heading-font: 'Poppins', sans-serif;
|
|
--body-font: 'Roboto', sans-serif;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--body-font);
|
|
background-color: var(--background-color);
|
|
color: var(--text-color);
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: var(--heading-font);
|
|
font-weight: 600;
|
|
color: var(--secondary-color);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--primary-color);
|
|
border-color: var(--primary-color);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #0056b3;
|
|
border-color: #0056b3;
|
|
}
|
|
|
|
.btn-accent {
|
|
background-color: var(--accent-color);
|
|
border-color: var(--accent-color);
|
|
color: #fff;
|
|
}
|
|
|
|
.btn-accent:hover {
|
|
background-color: #138496;
|
|
border-color: #138496;
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero-section {
|
|
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
|
|
padding: 6rem 0;
|
|
color: #fff;
|
|
}
|
|
|
|
.hero-section h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
}
|
|
|
|
.hero-section .lead {
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
/* Product Section */
|
|
.product-section {
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
.product-card {
|
|
border: none;
|
|
border-radius: 10px;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.product-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 8px 12px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.product-card-img {
|
|
height: 200px;
|
|
object-fit: cover;
|
|
border-top-left-radius: 10px;
|
|
border-top-right-radius: 10px;
|
|
}
|
|
|
|
.product-card .card-body {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.product-card .card-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.product-card .card-text {
|
|
font-size: 0.9rem;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.product-price {
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.stock-level {
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
/* Navbar */
|
|
.navbar {
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
|
} |