123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- .hide {
- display: none;
- }
- #mainContainer {
- display: flex;
- }
- #aside {
- width: 30%;
- }
- #aside>a {
- display: block;
- }
- #cartIcon {
- width: 70px;
- height: 70px;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: rgb(245, 221, 163);
- border-radius: 3px;
- }
- .cart {
- width: 40px;
- height: 40px;
- }
- header {
- display: flex;
- justify-content: space-between;
- }
- #cartList {
- width: 500px;
- min-height: 500px;
- background-color: honeydew;
- position: absolute;
- right: 8px;
- top: 80px;
- border-radius: 2%;
- padding-top: 30px;
- }
- #closeListBtn {
- width: 25px;
- height: 25px;
- position: absolute;
- top: 10px;
- right: 10px;
- background-color: red;
- font-size: 25px;
- align-items: center;
- text-align: center;
- border-radius: 25%;
- }
- .cartListItem {
- display: flex;
- padding-top: 10px;
- width: 100%;
- justify-content: space-between;
- align-items: center;
- }
- .cartListItem p {
- margin: 5px 3px;
- }
- .cartListItem input {
- height: 20px;
- width: 35px;
- }
- .btnDeleteAll {
- position: absolute;
- bottom: 20px;
- left: 20px;
- }
- .btnToOrder {
- position: absolute;
- bottom: 20px;
- right: 20px;
- }
- .priceOfOrder {
- position: absolute;
- bottom: 20px;
- right: 200px;
- }
- img {
- max-width: 400px;
- max-height: 400px;
- }
- a {
- padding: 10px 15px;
- }
- button {
- padding: 5px;
- background-color: rgb(158, 188, 243);
- border: 1px solid grey;
- border-radius: 5px;
- }
|