1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,97 @@ |
1 |
+#iso_mod_checkout_review { |
|
2 |
+ .orderproducts { |
|
3 |
+ .boxed { |
|
4 |
+ text-align: right; |
|
5 |
+ |
|
6 |
+ a { |
|
7 |
+ text-decoration: none; |
|
8 |
+ font-weight: $font-weight-bold; |
|
9 |
+ @include font-size(14px); |
|
10 |
+ |
|
11 |
+ i { |
|
12 |
+ margin-left: 5px; |
|
13 |
+ } |
|
14 |
+ } |
|
15 |
+ } |
|
16 |
+ } |
|
17 |
+} |
|
18 |
+ |
|
19 |
+.orderinfo, |
|
20 |
+.mod_iso_orderdetails { |
|
21 |
+ |
|
22 |
+ &.first { |
|
23 |
+ @include media-breakpoint-up(md) { |
|
24 |
+ display: flex; |
|
25 |
+ flex-flow: row wrap; |
|
26 |
+ margin-left: -1rem; |
|
27 |
+ margin-right: -1rem; |
|
28 |
+ |
|
29 |
+ > * { |
|
30 |
+ padding-right: 1rem; |
|
31 |
+ padding-left: 1rem; |
|
32 |
+ } |
|
33 |
+ } |
|
34 |
+ } |
|
35 |
+ |
|
36 |
+ |
|
37 |
+ .clear { |
|
38 |
+ display: none; |
|
39 |
+ } |
|
40 |
+ |
|
41 |
+ h2, |
|
42 |
+ p, |
|
43 |
+ .order_status, |
|
44 |
+ .collection { |
|
45 |
+ width: 100%; |
|
46 |
+ } |
|
47 |
+ |
|
48 |
+ .order_status { |
|
49 |
+ margin: 1rem 0 2rem 0; |
|
50 |
+ font-weight: $font-weight-bold; |
|
51 |
+ @include font-size(20px); |
|
52 |
+ } |
|
53 |
+ |
|
54 |
+ p { |
|
55 |
+ margin-bottom: 2rem; |
|
56 |
+ } |
|
57 |
+ |
|
58 |
+ @include media-breakpoint-up(md) { |
|
59 |
+ .info_container { |
|
60 |
+ width: 50%; |
|
61 |
+ position: relative; |
|
62 |
+ } |
|
63 |
+ } |
|
64 |
+ |
|
65 |
+ a.edit { |
|
66 |
+ position: absolute; |
|
67 |
+ right: 1rem; |
|
68 |
+ top: 0; |
|
69 |
+ color: transparent; |
|
70 |
+ font-size: 0px; |
|
71 |
+ |
|
72 |
+ &:after { |
|
73 |
+ @extend %fa-icon; |
|
74 |
+ @extend .fas; |
|
75 |
+ content: fa-content($fa-var-pen); |
|
76 |
+ font-size: 1rem; |
|
77 |
+ color: var(--bs-primary); |
|
78 |
+ } |
|
79 |
+ } |
|
80 |
+ |
|
81 |
+ h3 { |
|
82 |
+ color: var(--bs-body-color); |
|
83 |
+ @include font-size(16px); |
|
84 |
+ font-weight: $font-weight-bold; |
|
85 |
+ padding-right: 1rem; |
|
86 |
+ |
|
87 |
+ & + .info { |
|
88 |
+ background-color: var(--bs-gray-100); |
|
89 |
+ @include font-size(14px); |
|
90 |
+ padding: 1rem; |
|
91 |
+ } |
|
92 |
+ } |
|
93 |
+ |
|
94 |
+ .info { |
|
95 |
+ margin-bottom: 2rem; |
|
96 |
+ } |
|
97 |
+} |