Update index.html
Browse files- index.html +5 -22
index.html
CHANGED
@@ -7,8 +7,8 @@
|
|
7 |
src: url("/Stencil.otf");
|
8 |
}
|
9 |
@font-face {
|
10 |
-
font-family:
|
11 |
-
src: url("
|
12 |
}
|
13 |
@font-face {
|
14 |
font-family: Aldrich;
|
@@ -36,15 +36,11 @@
|
|
36 |
<div class="color-option" onclick="changeColor('#ff0000')">Red</div>
|
37 |
<div class="color-option" onclick="changeColor('#0000ff')">Blue</div>
|
38 |
<div class="color-option" onclick="changeColor('#ffffff')">White</div>
|
39 |
-
<div class="color-option">
|
40 |
-
<input type="color" id="customTextColor" onchange="changeColor(this.value)">
|
41 |
-
<label for="customTextColor">Custom</label>
|
42 |
-
</div>
|
43 |
</div>
|
44 |
<div class="font-options">
|
45 |
<h3>Select Font</h3>
|
46 |
<div class="font-option" onclick="changeFont('Stencil')">Stencil</div>
|
47 |
-
<div class="font-option" onclick="changeFont('
|
48 |
<div class="font-option" onclick="changeFont('Aldrich')">Aldrich</div>
|
49 |
</div>
|
50 |
<div class="toggle-options">
|
@@ -70,22 +66,9 @@
|
|
70 |
<h3>Font Size</h3>
|
71 |
<input type="range" id="sizeSlider" min="50" max="300" value="180" onchange="adjustSize(this.value)" disabled>
|
72 |
</div>
|
73 |
-
<div class="background-options">
|
74 |
-
<h3>Background</h3>
|
75 |
-
<div class="background-option" onclick="changeBackground('black')">Black</div>
|
76 |
-
<div class="background-option" onclick="changeBackground('linear-gradient(to right, red, yellow)')">Gradient 1</div>
|
77 |
-
<div class="background-option" onclick="changeBackground('linear-gradient(to right, blue, purple)')">Gradient 2</div>
|
78 |
-
<div class="background-option">
|
79 |
-
<input type="color" id="customBgColor1" value="#000000" onchange="updateCustomGradient()">
|
80 |
-
<input type="color" id="customBgColor2" value="#ffffff" onchange="updateCustomGradient()">
|
81 |
-
<label for="customBgColor1">Custom Gradient</label>
|
82 |
-
</div>
|
83 |
-
</div>
|
84 |
-
</div>
|
85 |
-
<div class="menu-buttons">
|
86 |
-
<button onclick="resetDefaults()">Default Settings</button>
|
87 |
-
<button onclick="toggleMenu()">Done</button>
|
88 |
</div>
|
|
|
|
|
89 |
</div>
|
90 |
<script src="./script.js"></script>
|
91 |
</body>
|
|
|
7 |
src: url("/Stencil.otf");
|
8 |
}
|
9 |
@font-face {
|
10 |
+
font-family: Rails;
|
11 |
+
src: url("/Rails.otf");
|
12 |
}
|
13 |
@font-face {
|
14 |
font-family: Aldrich;
|
|
|
36 |
<div class="color-option" onclick="changeColor('#ff0000')">Red</div>
|
37 |
<div class="color-option" onclick="changeColor('#0000ff')">Blue</div>
|
38 |
<div class="color-option" onclick="changeColor('#ffffff')">White</div>
|
|
|
|
|
|
|
|
|
39 |
</div>
|
40 |
<div class="font-options">
|
41 |
<h3>Select Font</h3>
|
42 |
<div class="font-option" onclick="changeFont('Stencil')">Stencil</div>
|
43 |
+
<div class="font-option" onclick="changeFont('Rails')">Rails</div>
|
44 |
<div class="font-option" onclick="changeFont('Aldrich')">Aldrich</div>
|
45 |
</div>
|
46 |
<div class="toggle-options">
|
|
|
66 |
<h3>Font Size</h3>
|
67 |
<input type="range" id="sizeSlider" min="50" max="300" value="180" onchange="adjustSize(this.value)" disabled>
|
68 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
</div>
|
70 |
+
<button onclick="resetDefaults()">Default Settings</button>
|
71 |
+
<button onclick="toggleMenu()">Done</button>
|
72 |
</div>
|
73 |
<script src="./script.js"></script>
|
74 |
</body>
|