53 lines
1.0 KiB
CSS
53 lines
1.0 KiB
CSS
|
|
body {
|
|
background-color: #F3F4F6;
|
|
font-family: 'Inter', sans-serif;
|
|
color: #111827;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Georgia', serif;
|
|
}
|
|
|
|
.card {
|
|
border-radius: 0.5rem;
|
|
border: none;
|
|
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-image: linear-gradient(to right, #4F46E5, #2563EB);
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
padding: 0.75rem 1.5rem;
|
|
font-weight: 600;
|
|
transition: transform 0.2s ease-in-out;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
}
|
|
|
|
.form-control, .form-select {
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.form-label {
|
|
font-weight: 600;
|
|
}
|
|
|
|
#price-summary {
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
color: #4F46E5;
|
|
}
|
|
|
|
.hero-image {
|
|
height: 400px;
|
|
background-image: url('https://picsum.photos/seed/printshop_hero/1200/400');
|
|
background-size: cover;
|
|
background-position: center;
|
|
border-radius: 0.5rem;
|
|
}
|