Added bag css

This commit is contained in:
Moe Poi ~ 2021-11-09 09:13:49 +07:00
parent 2f55437610
commit b910a3ea62

55
public/css/bag.css Normal file
View file

@ -0,0 +1,55 @@
* {
font-family: 'Poppins', sans-serif;
}
.box {
width: 100px;
text-align: center;
background-color: white;
color: black;
}
@media (max-width: 320px) {
.box {
width: 50px;
}
}
.btn-checkout {
width: 100%;
background-color: darkred;
border-color: darkred;
border-radius: 100px;
}
.btn-checkout:hover {
background-color: red;
border-color: red;
}
.container input {
justify-content: left;
}
.card {
background-color: #212226;
color: white;
border-radius: 10px;
display: flex;
}
.bag {
color: white;
margin-left: 48px;
margin-right: 48px;
}
@media (max-width: 980px) {
.summary {
margin-top: 20px;
}
.bag {
word-break: normal;
}
}