Skip to content

Commit e35541f

Browse files
committed
feat(index.html): create the basic structure for the content of gradient background generator
fix #29
1 parent 5d71110 commit e35541f

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

index.html

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,51 @@ <h2>Gradient Background</h2>
225225
</div>
226226
</div>
227227
</div>
228+
<div class="modal-main-content" data-modal="gradient-background">
229+
<div class="input">
230+
<p>Pick Your Colors:</p>
231+
232+
<label for="colorPicker">
233+
<input
234+
type="color"
235+
value="#1DB8CE"
236+
id="gradient-background-color1"
237+
/>
238+
<span>First Color</span>
239+
</label>
240+
241+
<label for="colorPicker">
242+
<input
243+
type="color"
244+
value="#1DB4CE"
245+
id="gradient-background-color2"
246+
/>
247+
<span>Second Color</span>
248+
</label>
249+
250+
<label id="degree">
251+
<span>Slide to change the degree</span>
252+
<input
253+
type="range"
254+
max="360"
255+
min="0"
256+
id="gradient-background-degree"
257+
/>
258+
</label>
259+
260+
<div class="btn" data-button="gradient-background">
261+
Get Result
262+
</div>
263+
</div>
264+
<div class="download-output">
265+
<div class="output"></div>
266+
<div class="download-btn">
267+
<button class="btn" data-download="gradient-background-code">
268+
Get Code
269+
</button>
270+
</div>
271+
</div>
272+
</div>
228273
</div>
229274
</div>
230275
</main>

0 commit comments

Comments
 (0)