82 lines
1.7 KiB
CSS
82 lines
1.7 KiB
CSS
/* Shipping Details Styles */
|
|
.shipping-details {
|
|
background-color: #F1E8D9;
|
|
padding: 40px 0;
|
|
}
|
|
|
|
.shipping-details .container {
|
|
text-align: center;
|
|
}
|
|
|
|
.shipping-details h2 {
|
|
margin-bottom: 30px;
|
|
font-family: 'Staatliches';
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
font-size: 70px;
|
|
line-height: 120%;
|
|
text-align: center;
|
|
color: #121113;
|
|
|
|
}
|
|
|
|
.shipping-details .shipping-forms {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.shipping-details .shipping-forms .shipping-form {
|
|
/*background-color: #F8F3E9;*/
|
|
background-color: white;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
padding: 20px;
|
|
text-align: left;
|
|
width: 45%;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.shipping-details .shipping-forms .shipping-form img {
|
|
width: 100%;
|
|
border-radius: 10px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.shipping-details .shipping-forms .shipping-form h3 {
|
|
font-size: 1.3em;
|
|
margin-bottom: 10px;
|
|
font-family: 'Staatliches';
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
line-height: 120%;
|
|
color: #2B2927;
|
|
}
|
|
|
|
.shipping-details .shipping-forms .shipping-form input,
|
|
.shipping-details .shipping-forms .shipping-form select {
|
|
width: 500px;
|
|
padding: 10px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.shipping-details .shipping-forms .shipping-form a {
|
|
color: #4CAF50;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.button-form{
|
|
background-color: #477758;
|
|
color: white;
|
|
padding: 10px 20px;
|
|
border: none;
|
|
cursor: pointer;
|
|
border-radius: 11px;
|
|
font-family: "Poppins",
|
|
sans-serif;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-size: 16px;
|
|
} |