All checks were successful
Build and Push Docker Image / build (push) Successful in 24s
- Created `side-bar.html` and `item-list.html` fragments for catalog page layout - Updated `catalog/index.html` to include sidebar and item list templates - Added styles for catalog layout in `catalog.css` - Enabled `DEBUG=True` in settings for local development - Adjusted CSS in shipping and services for consistent spacing
100 lines
1.6 KiB
CSS
100 lines
1.6 KiB
CSS
.box-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.icon {
|
|
width: 59px;
|
|
height: 59px;
|
|
border-radius: 100%;
|
|
background: #ffffff;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
& > svg {
|
|
width: 80%;
|
|
height: 80%;
|
|
|
|
fill: #63768d;
|
|
}
|
|
}
|
|
|
|
.blue {
|
|
background: #63768d;
|
|
|
|
& > svg {
|
|
fill: #ffffff;
|
|
}
|
|
}
|
|
|
|
.top-box {
|
|
width: 560px;
|
|
height: 260px;
|
|
padding: 39px;
|
|
background: #63768d;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
& > h2 {
|
|
margin-top: 8px;
|
|
font-weight: 400;
|
|
font-size: 44px;
|
|
text-align: left;
|
|
|
|
color: #ffffff;
|
|
}
|
|
|
|
& > p {
|
|
margin-top: 8px;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
text-align: center;
|
|
|
|
color: #ffffff;
|
|
}
|
|
}
|
|
|
|
.large {
|
|
margin-top: 40px;
|
|
margin-bottom: 130px;
|
|
height: 300px;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: end;
|
|
|
|
background-image: url(../img/services-bg.png);
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.large-block {
|
|
height: 170px;
|
|
margin-right: 190px;
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
& > h2 {
|
|
font-weight: 400;
|
|
font-size: 44px;
|
|
text-align: left;
|
|
|
|
color: #63768d;
|
|
}
|
|
|
|
& > p {
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
text-align: center;
|
|
|
|
color: #63768d;
|
|
}
|
|
} |