source: frontend/src/styles/CartScreen.css@ ee05663

Last change on this file since ee05663 was b612ab1, checked in by Nace Gjorgjievski <nace.gorgievski123@…>, 23 months ago

Basic functions added

  • Property mode set to 100644
File size: 1.6 KB
Line 
1.img-thumbnail {
2 height: 80px;
3 margin-left: 20px;
4}
5
6.pageContainer {
7 min-height: 100vh;
8}
9
10main {
11 margin-top: 20px;
12 flex: 1;
13 display: flex;
14 flex-direction: column;
15 align-items: center;
16}
17
18.itemContainer {
19 display: flex;
20 justify-content: space-between;
21 align-items: center;
22}
23
24.trashImgContainer {
25 display: flex;
26 flex-direction: row;
27 justify-content: space-between;
28 align-items: center;
29}
30
31.link {
32 color: black;
33 display: flex;
34 text-decoration: none;
35 display: flex;
36 justify-content: center;
37 align-items: center;
38}
39
40.btnsPriceContainer {
41 display: flex;
42 flex-direction: row;
43 justify-content: space-between;
44 align-items: center;
45}
46
47.productRow {
48 width: 800px;
49}
50
51.quantityInput {
52 height: 40px;
53 width: 40px;
54 text-align: center;
55}
56
57.marginBtn {
58 margin-right: 20px;
59}
60
61.lastRow {
62 border-top: 1px solid black;
63 margin-top: 20px;
64 display: flex;
65 flex-direction: column;
66}
67
68.totalPriceContainer {
69 margin-top: 20px;
70 display: flex;
71 justify-content: space-between;
72 align-items: center;
73}
74
75.checkoutBtnContainer {
76 display: flex;
77 justify-content: right;
78}
79
80@media only screen and (max-width: 801px) {
81 .productRow {
82 width: 100vw;
83 }
84}
85
86@media only screen and (max-width: 554px) {
87 .productRow {
88 width: 100vw;
89 }
90
91 .itemContainer {
92 flex-direction: column;
93 }
94
95 .trashImgContainer {
96 width: 100%;
97 flex-direction: row-reverse;
98 justify-content: space-between;
99 }
100
101 .trashIconContainer {
102 display: flex;
103 justify-content: right;
104 }
105
106 .btnsPriceContainer {
107 width: 100%;
108 justify-content: space-between;
109 }
110
111 .checkoutBtnContainer button {
112 width: 100%;
113 }
114}
Note: See TracBrowser for help on using the repository browser.