figma-to-code-agent 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +55 -0
- package/LICENSE +21 -0
- package/QUICKSTART.md +198 -0
- package/README.md +149 -0
- package/dist/FigmaToCodeAgent.d.ts +55 -0
- package/dist/FigmaToCodeAgent.d.ts.map +1 -0
- package/dist/FigmaToCodeAgent.js +251 -0
- package/dist/FigmaToCodeAgent.js.map +1 -0
- package/dist/assets/index.d.ts +6 -0
- package/dist/assets/index.d.ts.map +1 -0
- package/dist/assets/index.js +7 -0
- package/dist/assets/index.js.map +1 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +261 -0
- package/dist/cli.js.map +1 -0
- package/dist/extraction/FigmaAPIClient.d.ts +53 -0
- package/dist/extraction/FigmaAPIClient.d.ts.map +1 -0
- package/dist/extraction/FigmaAPIClient.js +275 -0
- package/dist/extraction/FigmaAPIClient.js.map +1 -0
- package/dist/extraction/FigmaCache.d.ts +28 -0
- package/dist/extraction/FigmaCache.d.ts.map +1 -0
- package/dist/extraction/FigmaCache.js +120 -0
- package/dist/extraction/FigmaCache.js.map +1 -0
- package/dist/extraction/MCPClient.d.ts +75 -0
- package/dist/extraction/MCPClient.d.ts.map +1 -0
- package/dist/extraction/MCPClient.js +254 -0
- package/dist/extraction/MCPClient.js.map +1 -0
- package/dist/extraction/index.d.ts +9 -0
- package/dist/extraction/index.d.ts.map +1 -0
- package/dist/extraction/index.js +27 -0
- package/dist/extraction/index.js.map +1 -0
- package/dist/extraction/types.d.ts +122 -0
- package/dist/extraction/types.d.ts.map +1 -0
- package/dist/extraction/types.js +6 -0
- package/dist/extraction/types.js.map +1 -0
- package/dist/generation/AICodeOptimizer.d.ts +10 -0
- package/dist/generation/AICodeOptimizer.d.ts.map +1 -0
- package/dist/generation/AICodeOptimizer.js +33 -0
- package/dist/generation/AICodeOptimizer.js.map +1 -0
- package/dist/generation/ReactGenerator.d.ts +27 -0
- package/dist/generation/ReactGenerator.d.ts.map +1 -0
- package/dist/generation/ReactGenerator.js +423 -0
- package/dist/generation/ReactGenerator.js.map +1 -0
- package/dist/generation/VueGenerator.d.ts +23 -0
- package/dist/generation/VueGenerator.d.ts.map +1 -0
- package/dist/generation/VueGenerator.js +337 -0
- package/dist/generation/VueGenerator.js.map +1 -0
- package/dist/generation/index.d.ts +6 -0
- package/dist/generation/index.d.ts.map +1 -0
- package/dist/generation/index.js +7 -0
- package/dist/generation/index.js.map +1 -0
- package/dist/generation/types.d.ts +24 -0
- package/dist/generation/types.d.ts.map +1 -0
- package/dist/generation/types.js +3 -0
- package/dist/generation/types.js.map +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -0
- package/dist/llm/BedrockProvider.d.ts +8 -0
- package/dist/llm/BedrockProvider.d.ts.map +1 -0
- package/dist/llm/BedrockProvider.js +34 -0
- package/dist/llm/BedrockProvider.js.map +1 -0
- package/dist/llm/LLMFactory.d.ts +5 -0
- package/dist/llm/LLMFactory.d.ts.map +1 -0
- package/dist/llm/LLMFactory.js +21 -0
- package/dist/llm/LLMFactory.js.map +1 -0
- package/dist/llm/OpenAIProvider.d.ts +7 -0
- package/dist/llm/OpenAIProvider.d.ts.map +1 -0
- package/dist/llm/OpenAIProvider.js +34 -0
- package/dist/llm/OpenAIProvider.js.map +1 -0
- package/dist/llm/index.d.ts +5 -0
- package/dist/llm/index.d.ts.map +1 -0
- package/dist/llm/index.js +21 -0
- package/dist/llm/index.js.map +1 -0
- package/dist/llm/types.d.ts +23 -0
- package/dist/llm/types.d.ts.map +1 -0
- package/dist/llm/types.js +3 -0
- package/dist/llm/types.js.map +1 -0
- package/dist/transformation/ASTFactory.d.ts +92 -0
- package/dist/transformation/ASTFactory.d.ts.map +1 -0
- package/dist/transformation/ASTFactory.js +240 -0
- package/dist/transformation/ASTFactory.js.map +1 -0
- package/dist/transformation/ASTParser.d.ts +13 -0
- package/dist/transformation/ASTParser.d.ts.map +1 -0
- package/dist/transformation/ASTParser.js +177 -0
- package/dist/transformation/ASTParser.js.map +1 -0
- package/dist/transformation/TransformationPipeline.d.ts +31 -0
- package/dist/transformation/TransformationPipeline.d.ts.map +1 -0
- package/dist/transformation/TransformationPipeline.js +42 -0
- package/dist/transformation/TransformationPipeline.js.map +1 -0
- package/dist/transformation/index.d.ts +7 -0
- package/dist/transformation/index.d.ts.map +1 -0
- package/dist/transformation/index.js +25 -0
- package/dist/transformation/index.js.map +1 -0
- package/dist/transformation/transformers/AIComponentSplitter.d.ts +14 -0
- package/dist/transformation/transformers/AIComponentSplitter.d.ts.map +1 -0
- package/dist/transformation/transformers/AIComponentSplitter.js +71 -0
- package/dist/transformation/transformers/AIComponentSplitter.js.map +1 -0
- package/dist/transformation/transformers/AILayoutAnalyzer.d.ts +18 -0
- package/dist/transformation/transformers/AILayoutAnalyzer.d.ts.map +1 -0
- package/dist/transformation/transformers/AILayoutAnalyzer.js +125 -0
- package/dist/transformation/transformers/AILayoutAnalyzer.js.map +1 -0
- package/dist/transformation/transformers/AISemanticNamer.d.ts +12 -0
- package/dist/transformation/transformers/AISemanticNamer.d.ts.map +1 -0
- package/dist/transformation/transformers/AISemanticNamer.js +50 -0
- package/dist/transformation/transformers/AISemanticNamer.js.map +1 -0
- package/dist/transformation/transformers/ComponentExtractor.d.ts +16 -0
- package/dist/transformation/transformers/ComponentExtractor.d.ts.map +1 -0
- package/dist/transformation/transformers/ComponentExtractor.js +91 -0
- package/dist/transformation/transformers/ComponentExtractor.js.map +1 -0
- package/dist/transformation/transformers/FigmaLayerPreserver.d.ts +14 -0
- package/dist/transformation/transformers/FigmaLayerPreserver.d.ts.map +1 -0
- package/dist/transformation/transformers/FigmaLayerPreserver.js +48 -0
- package/dist/transformation/transformers/FigmaLayerPreserver.js.map +1 -0
- package/dist/transformation/transformers/FigmaStructureOptimizer.d.ts +16 -0
- package/dist/transformation/transformers/FigmaStructureOptimizer.d.ts.map +1 -0
- package/dist/transformation/transformers/FigmaStructureOptimizer.js +65 -0
- package/dist/transformation/transformers/FigmaStructureOptimizer.js.map +1 -0
- package/dist/transformation/transformers/FlattenTransformer.d.ts +15 -0
- package/dist/transformation/transformers/FlattenTransformer.d.ts.map +1 -0
- package/dist/transformation/transformers/FlattenTransformer.js +69 -0
- package/dist/transformation/transformers/FlattenTransformer.js.map +1 -0
- package/dist/transformation/transformers/LayoutOptimizer.d.ts +15 -0
- package/dist/transformation/transformers/LayoutOptimizer.d.ts.map +1 -0
- package/dist/transformation/transformers/LayoutOptimizer.js +63 -0
- package/dist/transformation/transformers/LayoutOptimizer.js.map +1 -0
- package/dist/transformation/transformers/SemanticNamer.d.ts +14 -0
- package/dist/transformation/transformers/SemanticNamer.d.ts.map +1 -0
- package/dist/transformation/transformers/SemanticNamer.js +65 -0
- package/dist/transformation/transformers/SemanticNamer.js.map +1 -0
- package/dist/transformation/transformers/SimplifyTransformer.d.ts +23 -0
- package/dist/transformation/transformers/SimplifyTransformer.d.ts.map +1 -0
- package/dist/transformation/transformers/SimplifyTransformer.js +138 -0
- package/dist/transformation/transformers/SimplifyTransformer.js.map +1 -0
- package/dist/transformation/types.d.ts +129 -0
- package/dist/transformation/types.d.ts.map +1 -0
- package/dist/transformation/types.js +7 -0
- package/dist/transformation/types.js.map +1 -0
- package/dist/validation/index.d.ts +6 -0
- package/dist/validation/index.d.ts.map +1 -0
- package/dist/validation/index.js +7 -0
- package/dist/validation/index.js.map +1 -0
- package/package.json +81 -0
- package/test-app/test-react/index.html +19 -0
- package/test-app/test-react/package.json +16 -0
- package/test-app/test-react/src/Component.jsx +146 -0
- package/test-app/test-react/src/Component.module.css +572 -0
- package/test-app/test-react/src/Homepage.jsx +53 -0
- package/test-app/test-react/src/Homepage.module.css +218 -0
- package/test-app/test-react/src/ProductPage.jsx +74 -0
- package/test-app/test-react/src/ProductPage.module.css +357 -0
- package/test-app/test-react/src/ShoppingCart.jsx +151 -0
- package/test-app/test-react/src/ShoppingCart.module.css +739 -0
- package/test-app/test-react/src/main.jsx +9 -0
- package/test-app/test-react/vite.config.js +6 -0
- package/test-app/test-vue/index.html +19 -0
- package/test-app/test-vue/package.json +15 -0
- package/test-app/test-vue/src/App.vue +16 -0
- package/test-app/test-vue/src/Component.vue +723 -0
- package/test-app/test-vue/src/Homepage.vue +271 -0
- package/test-app/test-vue/src/ProductPage.vue +431 -0
- package/test-app/test-vue/src/ShoppingCart.vue +890 -0
- package/test-app/test-vue/src/main.js +4 -0
- package/test-app/test-vue/vite.config.js +6 -0
|
@@ -0,0 +1,890 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="shopping-cart">
|
|
3
|
+
<!-- tomato -->
|
|
4
|
+
<div class="tomato">
|
|
5
|
+
<!-- heirloomTomato -->
|
|
6
|
+
<span class="heirloom-tomato">Heirloom tomato</span>
|
|
7
|
+
<!-- 599 -->
|
|
8
|
+
<span class="element">$5.99</span>
|
|
9
|
+
<!-- 599Lb -->
|
|
10
|
+
<span class="lb">$5.99 / lb</span>
|
|
11
|
+
<!-- inputField -->
|
|
12
|
+
<div class="input-field">
|
|
13
|
+
<!-- 1Lb -->
|
|
14
|
+
<span class="lb-1">1 lb</span>
|
|
15
|
+
<!-- icon -->
|
|
16
|
+
<div class="icon">
|
|
17
|
+
<!-- union -->
|
|
18
|
+
<div class="union">
|
|
19
|
+
<!-- union -->
|
|
20
|
+
<div class="union-1">
|
|
21
|
+
<!-- rectangle4 -->
|
|
22
|
+
<div class="rectangle4" />
|
|
23
|
+
<!-- rectangle5 -->
|
|
24
|
+
<div class="rectangle5" />
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
<!-- edONeil -->
|
|
30
|
+
<img class="ed-oneil" :src="imged_o_neil_avvdzlhdowa_unsplash_1" alt="edONeil" />
|
|
31
|
+
</div>
|
|
32
|
+
<!-- ginger -->
|
|
33
|
+
<div class="ginger">
|
|
34
|
+
<!-- organicGinger -->
|
|
35
|
+
<span class="organic-ginger">Organic ginger</span>
|
|
36
|
+
<!-- 1299Lb -->
|
|
37
|
+
<span class="lb-2">$12.99 / lb</span>
|
|
38
|
+
<!-- inputField -->
|
|
39
|
+
<div class="input-field-1">
|
|
40
|
+
<!-- 05Lb -->
|
|
41
|
+
<span class="lb-3">0.5 lb</span>
|
|
42
|
+
<!-- icon -->
|
|
43
|
+
<div class="icon-1">
|
|
44
|
+
<!-- union -->
|
|
45
|
+
<div class="union-2">
|
|
46
|
+
<!-- union -->
|
|
47
|
+
<div class="union-3">
|
|
48
|
+
<!-- rectangle4 -->
|
|
49
|
+
<div class="rectangle4-1" />
|
|
50
|
+
<!-- rectangle5 -->
|
|
51
|
+
<div class="rectangle5-1" />
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
55
|
+
</div>
|
|
56
|
+
<!-- 650 -->
|
|
57
|
+
<span class="element-1">$6.50</span>
|
|
58
|
+
<!-- noonbrewZicb4Ekmak -->
|
|
59
|
+
<img class="noonbrew-zicb4ekmak" :src="imgnoonbrew_zicb4_ekmak_unsplash" alt="noonbrewZicb4Ekmak" />
|
|
60
|
+
</div>
|
|
61
|
+
<!-- onion -->
|
|
62
|
+
<div class="onion">
|
|
63
|
+
<!-- sweetOnion -->
|
|
64
|
+
<span class="sweet-onion">Sweet onion</span>
|
|
65
|
+
<!-- 299Lb -->
|
|
66
|
+
<span class="lb-4">$2.99 / lb</span>
|
|
67
|
+
<!-- inputField -->
|
|
68
|
+
<div class="input-field-2">
|
|
69
|
+
<!-- 5Lb -->
|
|
70
|
+
<span class="lb-5">5 lb</span>
|
|
71
|
+
<!-- icon -->
|
|
72
|
+
<div class="icon-2">
|
|
73
|
+
<!-- union -->
|
|
74
|
+
<div class="union-4">
|
|
75
|
+
<!-- union -->
|
|
76
|
+
<div class="union-5">
|
|
77
|
+
<!-- rectangle4 -->
|
|
78
|
+
<div class="rectangle4-2" />
|
|
79
|
+
<!-- rectangle5 -->
|
|
80
|
+
<div class="rectangle5-2" />
|
|
81
|
+
</div>
|
|
82
|
+
</div>
|
|
83
|
+
</div>
|
|
84
|
+
</div>
|
|
85
|
+
<!-- 1495 -->
|
|
86
|
+
<span class="element-2">$14.95</span>
|
|
87
|
+
<!-- k80Fkphulv -->
|
|
88
|
+
<img class="k80fkphulv" :src="imgk8_0_fkphulv_m_unsplash_2" alt="k80Fkphulv" />
|
|
89
|
+
</div>
|
|
90
|
+
<!-- summary -->
|
|
91
|
+
<div class="summary">
|
|
92
|
+
<!-- orderSummary -->
|
|
93
|
+
<span class="order-summary">Order summary</span>
|
|
94
|
+
<!-- subtotal -->
|
|
95
|
+
<span class="subtotal">Subtotal</span>
|
|
96
|
+
<!-- 2744 -->
|
|
97
|
+
<span class="element-3">$27.44</span>
|
|
98
|
+
<!-- shipping -->
|
|
99
|
+
<span class="shipping">Shipping</span>
|
|
100
|
+
<!-- 399 -->
|
|
101
|
+
<span class="element-4">$3.99</span>
|
|
102
|
+
<!-- tax -->
|
|
103
|
+
<span class="tax">Tax</span>
|
|
104
|
+
<!-- 200 -->
|
|
105
|
+
<span class="element-5">$2.00</span>
|
|
106
|
+
<!-- total -->
|
|
107
|
+
<span class="total">Total</span>
|
|
108
|
+
<!-- 3343 -->
|
|
109
|
+
<span class="element-6">$33.43</span>
|
|
110
|
+
<!-- button -->
|
|
111
|
+
<div class="button">
|
|
112
|
+
<!-- continueToPayment -->
|
|
113
|
+
<span class="continue-to-payment">Continue to payment</span>
|
|
114
|
+
</div>
|
|
115
|
+
</div>
|
|
116
|
+
<!-- pageHeading -->
|
|
117
|
+
<div class="page-heading">
|
|
118
|
+
<!-- 3Items -->
|
|
119
|
+
<span class="items">3 items</span>
|
|
120
|
+
<!-- basket -->
|
|
121
|
+
<span class="basket">Basket</span>
|
|
122
|
+
</div>
|
|
123
|
+
<!-- navigation -->
|
|
124
|
+
<div class="navigation">
|
|
125
|
+
<!-- worldPeas -->
|
|
126
|
+
<span class="world-peas">World Peas</span>
|
|
127
|
+
<!-- shop -->
|
|
128
|
+
<span class="shop">Shop</span>
|
|
129
|
+
<!-- newstand -->
|
|
130
|
+
<span class="newstand">Newstand</span>
|
|
131
|
+
<!-- whoWeAre -->
|
|
132
|
+
<span class="who-we-are">Who we are</span>
|
|
133
|
+
<!-- myProfile -->
|
|
134
|
+
<span class="my-profile">My profile</span>
|
|
135
|
+
<!-- cartButton -->
|
|
136
|
+
<div class="cart-button">
|
|
137
|
+
<!-- basket3 -->
|
|
138
|
+
<span class="basket3">Basket (3)</span>
|
|
139
|
+
</div>
|
|
140
|
+
</div>
|
|
141
|
+
</div>
|
|
142
|
+
</template>
|
|
143
|
+
|
|
144
|
+
<script setup>
|
|
145
|
+
import imged_o_neil_avvdzlhdowa_unsplash_1 from './assets/ed-o-neil-avvdzlhdowa-unsplash-1.png'
|
|
146
|
+
import imgnoonbrew_zicb4_ekmak_unsplash from './assets/noonbrew-zicb4_ekmak-unsplash.png'
|
|
147
|
+
import imgk8_0_fkphulv_m_unsplash_2 from './assets/k8-0_fkphulv-m-unsplash-2.png'
|
|
148
|
+
</script>
|
|
149
|
+
|
|
150
|
+
<style scoped>
|
|
151
|
+
.shopping-cart {
|
|
152
|
+
position: relative;
|
|
153
|
+
max-width: 1440px;
|
|
154
|
+
margin: 0 auto;
|
|
155
|
+
height: 1024px;
|
|
156
|
+
background-color: rgba(255, 255, 255, 1);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.tomato {
|
|
160
|
+
position: absolute;
|
|
161
|
+
left: 96px;
|
|
162
|
+
top: 301px;
|
|
163
|
+
width: 821px;
|
|
164
|
+
height: 159px;
|
|
165
|
+
overflow: hidden;
|
|
166
|
+
background-color: rgba(250, 250, 245, 1);
|
|
167
|
+
border-radius: 24px;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.heirloom-tomato {
|
|
171
|
+
position: absolute;
|
|
172
|
+
left: 184px;
|
|
173
|
+
top: 24px;
|
|
174
|
+
width: 162px;
|
|
175
|
+
height: 26px;
|
|
176
|
+
font-family: 'Inter', sans-serif;
|
|
177
|
+
font-size: 20px;
|
|
178
|
+
font-weight: 600;
|
|
179
|
+
line-height: 26px;
|
|
180
|
+
text-align: left;
|
|
181
|
+
white-space: nowrap;
|
|
182
|
+
color: rgba(0, 0, 0, 1);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.element {
|
|
186
|
+
position: absolute;
|
|
187
|
+
left: 740px;
|
|
188
|
+
top: 24px;
|
|
189
|
+
width: 57px;
|
|
190
|
+
height: 26px;
|
|
191
|
+
font-family: 'Inter', sans-serif;
|
|
192
|
+
font-size: 20px;
|
|
193
|
+
font-weight: 600;
|
|
194
|
+
line-height: 26px;
|
|
195
|
+
text-align: right;
|
|
196
|
+
white-space: nowrap;
|
|
197
|
+
color: rgba(0, 0, 0, 1);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.lb {
|
|
201
|
+
position: absolute;
|
|
202
|
+
left: 184px;
|
|
203
|
+
top: 54px;
|
|
204
|
+
width: 92px;
|
|
205
|
+
height: 26px;
|
|
206
|
+
font-family: 'Inter', sans-serif;
|
|
207
|
+
font-size: 20px;
|
|
208
|
+
font-weight: 600;
|
|
209
|
+
line-height: 26px;
|
|
210
|
+
text-align: left;
|
|
211
|
+
white-space: nowrap;
|
|
212
|
+
color: rgba(66, 107, 31, 1);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.input-field {
|
|
216
|
+
position: absolute;
|
|
217
|
+
left: 184px;
|
|
218
|
+
top: 95px;
|
|
219
|
+
width: 128px;
|
|
220
|
+
height: 40px;
|
|
221
|
+
overflow: hidden;
|
|
222
|
+
background-color: rgba(255, 255, 255, 1);
|
|
223
|
+
border-radius: 20px;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.lb-1 {
|
|
227
|
+
position: absolute;
|
|
228
|
+
left: 16px;
|
|
229
|
+
top: 10px;
|
|
230
|
+
width: 26px;
|
|
231
|
+
height: 21px;
|
|
232
|
+
font-family: 'Inter', sans-serif;
|
|
233
|
+
font-size: 16px;
|
|
234
|
+
font-weight: 600;
|
|
235
|
+
line-height: 21px;
|
|
236
|
+
text-align: left;
|
|
237
|
+
white-space: nowrap;
|
|
238
|
+
color: rgba(0, 0, 0, 1);
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.icon {
|
|
242
|
+
position: absolute;
|
|
243
|
+
left: 88px;
|
|
244
|
+
top: 4px;
|
|
245
|
+
width: 32px;
|
|
246
|
+
height: 32px;
|
|
247
|
+
overflow: hidden;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.union {
|
|
251
|
+
position: absolute;
|
|
252
|
+
left: 8px;
|
|
253
|
+
top: 8px;
|
|
254
|
+
width: 16px;
|
|
255
|
+
height: 16px;
|
|
256
|
+
overflow: hidden;
|
|
257
|
+
background-color: rgba(109, 109, 109, 1);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.union-1 {
|
|
261
|
+
position: absolute;
|
|
262
|
+
left: -2px;
|
|
263
|
+
top: -1px;
|
|
264
|
+
width: 19px;
|
|
265
|
+
height: 19px;
|
|
266
|
+
overflow: hidden;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.rectangle4 {
|
|
270
|
+
position: absolute;
|
|
271
|
+
left: 3px;
|
|
272
|
+
top: 0px;
|
|
273
|
+
width: 16px;
|
|
274
|
+
height: 16px;
|
|
275
|
+
background-color: rgba(255, 0, 255, 1);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.rectangle5 {
|
|
279
|
+
position: absolute;
|
|
280
|
+
left: 0px;
|
|
281
|
+
top: 12px;
|
|
282
|
+
width: 7px;
|
|
283
|
+
height: 7px;
|
|
284
|
+
background-color: rgba(255, 0, 255, 1);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.ed-oneil {
|
|
288
|
+
position: absolute;
|
|
289
|
+
left: 0px;
|
|
290
|
+
top: 0px;
|
|
291
|
+
width: 160px;
|
|
292
|
+
height: 160px;
|
|
293
|
+
object-fit: cover;
|
|
294
|
+
display: block;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.ginger {
|
|
298
|
+
position: absolute;
|
|
299
|
+
left: 96px;
|
|
300
|
+
top: 491px;
|
|
301
|
+
width: 821px;
|
|
302
|
+
height: 159px;
|
|
303
|
+
overflow: hidden;
|
|
304
|
+
background-color: rgba(250, 250, 245, 1);
|
|
305
|
+
border-radius: 24px;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.organic-ginger {
|
|
309
|
+
position: absolute;
|
|
310
|
+
left: 184px;
|
|
311
|
+
top: 24px;
|
|
312
|
+
width: 144px;
|
|
313
|
+
height: 26px;
|
|
314
|
+
font-family: 'Inter', sans-serif;
|
|
315
|
+
font-size: 20px;
|
|
316
|
+
font-weight: 600;
|
|
317
|
+
line-height: 26px;
|
|
318
|
+
text-align: left;
|
|
319
|
+
white-space: nowrap;
|
|
320
|
+
color: rgba(0, 0, 0, 1);
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.lb-2 {
|
|
324
|
+
position: absolute;
|
|
325
|
+
left: 184px;
|
|
326
|
+
top: 54px;
|
|
327
|
+
width: 102px;
|
|
328
|
+
height: 26px;
|
|
329
|
+
font-family: 'Inter', sans-serif;
|
|
330
|
+
font-size: 20px;
|
|
331
|
+
font-weight: 600;
|
|
332
|
+
line-height: 26px;
|
|
333
|
+
text-align: left;
|
|
334
|
+
white-space: nowrap;
|
|
335
|
+
color: rgba(66, 107, 31, 1);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.input-field-1 {
|
|
339
|
+
position: absolute;
|
|
340
|
+
left: 184px;
|
|
341
|
+
top: 95px;
|
|
342
|
+
width: 128px;
|
|
343
|
+
height: 40px;
|
|
344
|
+
overflow: hidden;
|
|
345
|
+
background-color: rgba(255, 255, 255, 1);
|
|
346
|
+
border-radius: 20px;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.lb-3 {
|
|
350
|
+
position: absolute;
|
|
351
|
+
left: 16px;
|
|
352
|
+
top: 10px;
|
|
353
|
+
width: 44px;
|
|
354
|
+
height: 21px;
|
|
355
|
+
font-family: 'Inter', sans-serif;
|
|
356
|
+
font-size: 16px;
|
|
357
|
+
font-weight: 700;
|
|
358
|
+
line-height: 21px;
|
|
359
|
+
text-align: left;
|
|
360
|
+
white-space: nowrap;
|
|
361
|
+
color: rgba(0, 0, 0, 1);
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.icon-1 {
|
|
365
|
+
position: absolute;
|
|
366
|
+
left: 88px;
|
|
367
|
+
top: 4px;
|
|
368
|
+
width: 32px;
|
|
369
|
+
height: 32px;
|
|
370
|
+
overflow: hidden;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.union-2 {
|
|
374
|
+
position: absolute;
|
|
375
|
+
left: 8px;
|
|
376
|
+
top: 8px;
|
|
377
|
+
width: 16px;
|
|
378
|
+
height: 16px;
|
|
379
|
+
overflow: hidden;
|
|
380
|
+
background-color: rgba(109, 109, 109, 1);
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.union-3 {
|
|
384
|
+
position: absolute;
|
|
385
|
+
left: -2px;
|
|
386
|
+
top: -1px;
|
|
387
|
+
width: 19px;
|
|
388
|
+
height: 19px;
|
|
389
|
+
overflow: hidden;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.rectangle4-1 {
|
|
393
|
+
position: absolute;
|
|
394
|
+
left: 3px;
|
|
395
|
+
top: 0px;
|
|
396
|
+
width: 16px;
|
|
397
|
+
height: 16px;
|
|
398
|
+
background-color: rgba(255, 0, 255, 1);
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.rectangle5-1 {
|
|
402
|
+
position: absolute;
|
|
403
|
+
left: 0px;
|
|
404
|
+
top: 12px;
|
|
405
|
+
width: 7px;
|
|
406
|
+
height: 7px;
|
|
407
|
+
background-color: rgba(255, 0, 255, 1);
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.element-1 {
|
|
411
|
+
position: absolute;
|
|
412
|
+
left: 740px;
|
|
413
|
+
top: 24px;
|
|
414
|
+
width: 57px;
|
|
415
|
+
height: 26px;
|
|
416
|
+
font-family: 'Inter', sans-serif;
|
|
417
|
+
font-size: 20px;
|
|
418
|
+
font-weight: 600;
|
|
419
|
+
line-height: 26px;
|
|
420
|
+
text-align: right;
|
|
421
|
+
white-space: nowrap;
|
|
422
|
+
color: rgba(0, 0, 0, 1);
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.noonbrew-zicb4ekmak {
|
|
426
|
+
position: absolute;
|
|
427
|
+
left: 0px;
|
|
428
|
+
top: 0px;
|
|
429
|
+
width: 160px;
|
|
430
|
+
height: 160px;
|
|
431
|
+
object-fit: cover;
|
|
432
|
+
display: block;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.onion {
|
|
436
|
+
position: absolute;
|
|
437
|
+
left: 96px;
|
|
438
|
+
top: 681px;
|
|
439
|
+
width: 821px;
|
|
440
|
+
height: 159px;
|
|
441
|
+
overflow: hidden;
|
|
442
|
+
background-color: rgba(250, 250, 245, 1);
|
|
443
|
+
border-radius: 24px;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.sweet-onion {
|
|
447
|
+
position: absolute;
|
|
448
|
+
left: 184px;
|
|
449
|
+
top: 24px;
|
|
450
|
+
width: 120px;
|
|
451
|
+
height: 26px;
|
|
452
|
+
font-family: 'Inter', sans-serif;
|
|
453
|
+
font-size: 20px;
|
|
454
|
+
font-weight: 600;
|
|
455
|
+
line-height: 26px;
|
|
456
|
+
text-align: left;
|
|
457
|
+
white-space: nowrap;
|
|
458
|
+
color: rgba(0, 0, 0, 1);
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.lb-4 {
|
|
462
|
+
position: absolute;
|
|
463
|
+
left: 184px;
|
|
464
|
+
top: 54px;
|
|
465
|
+
width: 93px;
|
|
466
|
+
height: 26px;
|
|
467
|
+
font-family: 'Inter', sans-serif;
|
|
468
|
+
font-size: 20px;
|
|
469
|
+
font-weight: 600;
|
|
470
|
+
line-height: 26px;
|
|
471
|
+
text-align: left;
|
|
472
|
+
white-space: nowrap;
|
|
473
|
+
color: rgba(66, 107, 31, 1);
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.input-field-2 {
|
|
477
|
+
position: absolute;
|
|
478
|
+
left: 184px;
|
|
479
|
+
top: 95px;
|
|
480
|
+
width: 128px;
|
|
481
|
+
height: 40px;
|
|
482
|
+
overflow: hidden;
|
|
483
|
+
background-color: rgba(255, 255, 255, 1);
|
|
484
|
+
border-radius: 20px;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.lb-5 {
|
|
488
|
+
position: absolute;
|
|
489
|
+
left: 16px;
|
|
490
|
+
top: 10px;
|
|
491
|
+
width: 29px;
|
|
492
|
+
height: 21px;
|
|
493
|
+
font-family: 'Inter', sans-serif;
|
|
494
|
+
font-size: 16px;
|
|
495
|
+
font-weight: 700;
|
|
496
|
+
line-height: 21px;
|
|
497
|
+
text-align: left;
|
|
498
|
+
white-space: nowrap;
|
|
499
|
+
color: rgba(0, 0, 0, 1);
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.icon-2 {
|
|
503
|
+
position: absolute;
|
|
504
|
+
left: 88px;
|
|
505
|
+
top: 4px;
|
|
506
|
+
width: 32px;
|
|
507
|
+
height: 32px;
|
|
508
|
+
overflow: hidden;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.union-4 {
|
|
512
|
+
position: absolute;
|
|
513
|
+
left: 8px;
|
|
514
|
+
top: 8px;
|
|
515
|
+
width: 16px;
|
|
516
|
+
height: 16px;
|
|
517
|
+
overflow: hidden;
|
|
518
|
+
background-color: rgba(109, 109, 109, 1);
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.union-5 {
|
|
522
|
+
position: absolute;
|
|
523
|
+
left: -2px;
|
|
524
|
+
top: -1px;
|
|
525
|
+
width: 19px;
|
|
526
|
+
height: 19px;
|
|
527
|
+
overflow: hidden;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.rectangle4-2 {
|
|
531
|
+
position: absolute;
|
|
532
|
+
left: 3px;
|
|
533
|
+
top: 0px;
|
|
534
|
+
width: 16px;
|
|
535
|
+
height: 16px;
|
|
536
|
+
background-color: rgba(255, 0, 255, 1);
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.rectangle5-2 {
|
|
540
|
+
position: absolute;
|
|
541
|
+
left: 0px;
|
|
542
|
+
top: 12px;
|
|
543
|
+
width: 7px;
|
|
544
|
+
height: 7px;
|
|
545
|
+
background-color: rgba(255, 0, 255, 1);
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.element-2 {
|
|
549
|
+
position: absolute;
|
|
550
|
+
left: 730px;
|
|
551
|
+
top: 24px;
|
|
552
|
+
width: 67px;
|
|
553
|
+
height: 26px;
|
|
554
|
+
font-family: 'Inter', sans-serif;
|
|
555
|
+
font-size: 20px;
|
|
556
|
+
font-weight: 600;
|
|
557
|
+
line-height: 26px;
|
|
558
|
+
text-align: right;
|
|
559
|
+
white-space: nowrap;
|
|
560
|
+
color: rgba(0, 0, 0, 1);
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.k80fkphulv {
|
|
564
|
+
position: absolute;
|
|
565
|
+
left: 0px;
|
|
566
|
+
top: 0px;
|
|
567
|
+
width: 160px;
|
|
568
|
+
height: 160px;
|
|
569
|
+
object-fit: cover;
|
|
570
|
+
display: block;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.summary {
|
|
574
|
+
position: absolute;
|
|
575
|
+
left: 949px;
|
|
576
|
+
top: 301px;
|
|
577
|
+
width: 395px;
|
|
578
|
+
height: 318px;
|
|
579
|
+
overflow: hidden;
|
|
580
|
+
background-color: rgba(250, 250, 245, 1);
|
|
581
|
+
border-radius: 24px;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.order-summary {
|
|
585
|
+
position: absolute;
|
|
586
|
+
left: 24px;
|
|
587
|
+
top: 24px;
|
|
588
|
+
width: 151px;
|
|
589
|
+
height: 26px;
|
|
590
|
+
font-family: 'Inter', sans-serif;
|
|
591
|
+
font-size: 20px;
|
|
592
|
+
font-weight: 600;
|
|
593
|
+
line-height: 26px;
|
|
594
|
+
text-align: left;
|
|
595
|
+
white-space: nowrap;
|
|
596
|
+
color: rgba(0, 0, 0, 1);
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.subtotal {
|
|
600
|
+
position: absolute;
|
|
601
|
+
left: 24px;
|
|
602
|
+
top: 82px;
|
|
603
|
+
width: 64px;
|
|
604
|
+
height: 21px;
|
|
605
|
+
font-family: 'Inter', sans-serif;
|
|
606
|
+
font-size: 16px;
|
|
607
|
+
font-weight: 400;
|
|
608
|
+
line-height: 21px;
|
|
609
|
+
text-align: left;
|
|
610
|
+
white-space: nowrap;
|
|
611
|
+
color: rgba(0, 0, 0, 1);
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.element-3 {
|
|
615
|
+
position: absolute;
|
|
616
|
+
left: 319px;
|
|
617
|
+
top: 82px;
|
|
618
|
+
width: 52px;
|
|
619
|
+
height: 21px;
|
|
620
|
+
font-family: 'Inter', sans-serif;
|
|
621
|
+
font-size: 16px;
|
|
622
|
+
font-weight: 400;
|
|
623
|
+
line-height: 21px;
|
|
624
|
+
text-align: right;
|
|
625
|
+
white-space: nowrap;
|
|
626
|
+
color: rgba(0, 0, 0, 1);
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.shipping {
|
|
630
|
+
position: absolute;
|
|
631
|
+
left: 24px;
|
|
632
|
+
top: 119px;
|
|
633
|
+
width: 66px;
|
|
634
|
+
height: 21px;
|
|
635
|
+
font-family: 'Inter', sans-serif;
|
|
636
|
+
font-size: 16px;
|
|
637
|
+
font-weight: 400;
|
|
638
|
+
line-height: 21px;
|
|
639
|
+
text-align: left;
|
|
640
|
+
white-space: nowrap;
|
|
641
|
+
color: rgba(0, 0, 0, 1);
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.element-4 {
|
|
645
|
+
position: absolute;
|
|
646
|
+
left: 326px;
|
|
647
|
+
top: 119px;
|
|
648
|
+
width: 45px;
|
|
649
|
+
height: 21px;
|
|
650
|
+
font-family: 'Inter', sans-serif;
|
|
651
|
+
font-size: 16px;
|
|
652
|
+
font-weight: 400;
|
|
653
|
+
line-height: 21px;
|
|
654
|
+
text-align: right;
|
|
655
|
+
white-space: nowrap;
|
|
656
|
+
color: rgba(0, 0, 0, 1);
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.tax {
|
|
660
|
+
position: absolute;
|
|
661
|
+
left: 24px;
|
|
662
|
+
top: 156px;
|
|
663
|
+
width: 27px;
|
|
664
|
+
height: 21px;
|
|
665
|
+
font-family: 'Inter', sans-serif;
|
|
666
|
+
font-size: 16px;
|
|
667
|
+
font-weight: 400;
|
|
668
|
+
line-height: 21px;
|
|
669
|
+
text-align: left;
|
|
670
|
+
white-space: nowrap;
|
|
671
|
+
color: rgba(0, 0, 0, 1);
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.element-5 {
|
|
675
|
+
position: absolute;
|
|
676
|
+
left: 327px;
|
|
677
|
+
top: 156px;
|
|
678
|
+
width: 44px;
|
|
679
|
+
height: 21px;
|
|
680
|
+
font-family: 'Inter', sans-serif;
|
|
681
|
+
font-size: 16px;
|
|
682
|
+
font-weight: 400;
|
|
683
|
+
line-height: 21px;
|
|
684
|
+
text-align: right;
|
|
685
|
+
white-space: nowrap;
|
|
686
|
+
color: rgba(0, 0, 0, 1);
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.total {
|
|
690
|
+
position: absolute;
|
|
691
|
+
left: 24px;
|
|
692
|
+
top: 193px;
|
|
693
|
+
width: 39px;
|
|
694
|
+
height: 21px;
|
|
695
|
+
font-family: 'Inter', sans-serif;
|
|
696
|
+
font-size: 16px;
|
|
697
|
+
font-weight: 600;
|
|
698
|
+
line-height: 21px;
|
|
699
|
+
text-align: left;
|
|
700
|
+
white-space: nowrap;
|
|
701
|
+
color: rgba(0, 0, 0, 1);
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.element-6 {
|
|
705
|
+
position: absolute;
|
|
706
|
+
left: 314px;
|
|
707
|
+
top: 190px;
|
|
708
|
+
width: 57px;
|
|
709
|
+
height: 21px;
|
|
710
|
+
font-family: 'Inter', sans-serif;
|
|
711
|
+
font-size: 16px;
|
|
712
|
+
font-weight: 600;
|
|
713
|
+
line-height: 21px;
|
|
714
|
+
text-align: right;
|
|
715
|
+
white-space: nowrap;
|
|
716
|
+
color: rgba(0, 0, 0, 1);
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
.button {
|
|
720
|
+
display: flex;
|
|
721
|
+
align-items: center;
|
|
722
|
+
justify-content: center;
|
|
723
|
+
position: absolute;
|
|
724
|
+
left: 24px;
|
|
725
|
+
top: 246px;
|
|
726
|
+
width: 347px;
|
|
727
|
+
height: 48px;
|
|
728
|
+
overflow: hidden;
|
|
729
|
+
background-color: rgba(66, 107, 31, 1);
|
|
730
|
+
border-radius: 8px;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.continue-to-payment {
|
|
734
|
+
font-family: 'Inter', sans-serif;
|
|
735
|
+
font-size: 16px;
|
|
736
|
+
font-weight: 600;
|
|
737
|
+
line-height: 21px;
|
|
738
|
+
white-space: nowrap;
|
|
739
|
+
color: rgba(255, 255, 255, 1);
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.page-heading {
|
|
743
|
+
position: absolute;
|
|
744
|
+
left: 0px;
|
|
745
|
+
top: 112px;
|
|
746
|
+
width: 1440px;
|
|
747
|
+
height: 149px;
|
|
748
|
+
overflow: hidden;
|
|
749
|
+
background-color: rgba(255, 255, 255, 1);
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.items {
|
|
753
|
+
position: absolute;
|
|
754
|
+
left: 301px;
|
|
755
|
+
top: 90px;
|
|
756
|
+
width: 69px;
|
|
757
|
+
height: 26px;
|
|
758
|
+
font-family: 'Inter', sans-serif;
|
|
759
|
+
font-size: 20px;
|
|
760
|
+
font-weight: 300;
|
|
761
|
+
line-height: 26px;
|
|
762
|
+
text-align: left;
|
|
763
|
+
white-space: nowrap;
|
|
764
|
+
color: rgba(0, 0, 0, 1);
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.basket {
|
|
768
|
+
position: absolute;
|
|
769
|
+
left: 96px;
|
|
770
|
+
top: 56px;
|
|
771
|
+
width: 181px;
|
|
772
|
+
height: 77px;
|
|
773
|
+
font-family: 'Newsreader', sans-serif;
|
|
774
|
+
font-size: 64px;
|
|
775
|
+
font-weight: 400;
|
|
776
|
+
line-height: 77px;
|
|
777
|
+
letter-spacing: -1.28px;
|
|
778
|
+
text-align: left;
|
|
779
|
+
white-space: nowrap;
|
|
780
|
+
color: rgba(0, 0, 0, 1);
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.navigation {
|
|
784
|
+
position: absolute;
|
|
785
|
+
left: 0px;
|
|
786
|
+
top: 0px;
|
|
787
|
+
width: 1440px;
|
|
788
|
+
height: 112px;
|
|
789
|
+
overflow: hidden;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.world-peas {
|
|
793
|
+
position: absolute;
|
|
794
|
+
left: 96px;
|
|
795
|
+
top: 41px;
|
|
796
|
+
width: 151px;
|
|
797
|
+
height: 32px;
|
|
798
|
+
font-family: 'Newsreader', sans-serif;
|
|
799
|
+
font-size: 32px;
|
|
800
|
+
font-weight: 500;
|
|
801
|
+
line-height: 32px;
|
|
802
|
+
letter-spacing: -0.32px;
|
|
803
|
+
text-align: left;
|
|
804
|
+
white-space: nowrap;
|
|
805
|
+
color: rgba(66, 107, 31, 1);
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.shop {
|
|
809
|
+
position: absolute;
|
|
810
|
+
left: 744px;
|
|
811
|
+
top: 46px;
|
|
812
|
+
width: 39px;
|
|
813
|
+
height: 21px;
|
|
814
|
+
font-family: 'Inter', sans-serif;
|
|
815
|
+
font-size: 16px;
|
|
816
|
+
font-weight: 400;
|
|
817
|
+
line-height: 21px;
|
|
818
|
+
text-align: center;
|
|
819
|
+
white-space: nowrap;
|
|
820
|
+
color: rgba(0, 0, 0, 1);
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.newstand {
|
|
824
|
+
position: absolute;
|
|
825
|
+
left: 831px;
|
|
826
|
+
top: 46px;
|
|
827
|
+
width: 77px;
|
|
828
|
+
height: 21px;
|
|
829
|
+
font-family: 'Inter', sans-serif;
|
|
830
|
+
font-size: 16px;
|
|
831
|
+
font-weight: 400;
|
|
832
|
+
line-height: 21px;
|
|
833
|
+
text-align: center;
|
|
834
|
+
white-space: nowrap;
|
|
835
|
+
color: rgba(0, 0, 0, 1);
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
.who-we-are {
|
|
839
|
+
position: absolute;
|
|
840
|
+
left: 956px;
|
|
841
|
+
top: 46px;
|
|
842
|
+
width: 90px;
|
|
843
|
+
height: 21px;
|
|
844
|
+
font-family: 'Inter', sans-serif;
|
|
845
|
+
font-size: 16px;
|
|
846
|
+
font-weight: 400;
|
|
847
|
+
line-height: 21px;
|
|
848
|
+
text-align: center;
|
|
849
|
+
white-space: nowrap;
|
|
850
|
+
color: rgba(0, 0, 0, 1);
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.my-profile {
|
|
854
|
+
position: absolute;
|
|
855
|
+
left: 1094px;
|
|
856
|
+
top: 46px;
|
|
857
|
+
width: 76px;
|
|
858
|
+
height: 21px;
|
|
859
|
+
font-family: 'Inter', sans-serif;
|
|
860
|
+
font-size: 16px;
|
|
861
|
+
font-weight: 400;
|
|
862
|
+
line-height: 21px;
|
|
863
|
+
text-align: center;
|
|
864
|
+
white-space: nowrap;
|
|
865
|
+
color: rgba(0, 0, 0, 1);
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.cart-button {
|
|
869
|
+
display: flex;
|
|
870
|
+
align-items: center;
|
|
871
|
+
justify-content: center;
|
|
872
|
+
position: absolute;
|
|
873
|
+
left: 1218px;
|
|
874
|
+
top: 32px;
|
|
875
|
+
width: 126px;
|
|
876
|
+
height: 48px;
|
|
877
|
+
overflow: hidden;
|
|
878
|
+
background-color: rgba(66, 107, 31, 1);
|
|
879
|
+
border-radius: 4px;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
.basket3 {
|
|
883
|
+
font-family: 'Inter', sans-serif;
|
|
884
|
+
font-size: 16px;
|
|
885
|
+
font-weight: 600;
|
|
886
|
+
line-height: 21px;
|
|
887
|
+
white-space: nowrap;
|
|
888
|
+
color: rgba(255, 255, 255, 1);
|
|
889
|
+
}
|
|
890
|
+
</style>
|