|
15 | 15 | />
|
16 | 16 | <link rel="stylesheet" href="styles.css" />
|
17 | 17 | <title>Sorting Visualizer</title>
|
18 |
| - <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8246776799485595" |
19 |
| - crossorigin="anonymous"></script> |
20 | 18 | </head>
|
21 | 19 | <body>
|
| 20 | + <div class="spcl"> |
| 21 | + <h1 class="h1" style="color: #183024;">Rotate Your Phone </h1> |
| 22 | + <div> |
| 23 | + <img src="content/rotate.png" alt="Rotate Phone" width="50px"> |
| 24 | + </div> |
| 25 | + </div> |
22 | 26 | <div class="root">
|
23 | 27 | <header>
|
24 |
| - <a href="/"> |
| 28 | + <a href="/" style="text-decoration: none;"> |
25 | 29 | <p class="hd-txt"><strong>Sorting Visualizer</strong></p>
|
26 | 30 | </a>
|
27 | 31 | </header>
|
28 | 32 |
|
29 | 33 | <div class="main-cnt">
|
30 | 34 | <div class="menu">
|
31 |
| - <div> |
32 |
| - <input |
33 |
| - type="range" |
34 |
| - min="10" |
35 |
| - max="200" |
36 |
| - value="20" |
37 |
| - step="10" |
38 |
| - name="size" |
39 |
| - class="slider" |
40 |
| - id="size" |
41 |
| - /> |
42 |
| - </div> |
43 |
| - <div> |
44 |
| - <label for="size" class="mt-2" style="color: #395144;">Size</label> |
45 |
| - </div> |
46 |
| - <div> |
47 |
| - <input |
48 |
| - type="range" |
49 |
| - min="10" |
50 |
| - max="410" |
51 |
| - value="60" |
52 |
| - step="50" |
53 |
| - name="speed" |
54 |
| - class="slider" |
55 |
| - id="speed" |
56 |
| - /> |
57 |
| - </div> |
58 |
| - <div> |
59 |
| - <label for="speed" class="mt-2" style="color: #395144;">Speed</label> |
60 |
| - </div> |
61 |
| - <div> |
62 |
| - <button class="btn btn-clr mt-2" id="new-array" type="button"> |
63 |
| - New Array |
64 |
| - </button> |
65 |
| - </div> |
66 |
| - <div> |
67 |
| - <button class="btn reload mt-4 mb-2" id="reload">Reload</button> |
| 35 | + <div class="othr-btns"> |
| 36 | + <div> |
| 37 | + <input |
| 38 | + type="range" |
| 39 | + min="10" |
| 40 | + max="200" |
| 41 | + value="20" |
| 42 | + step="10" |
| 43 | + name="size" |
| 44 | + class="slider" |
| 45 | + id="size" |
| 46 | + /> |
| 47 | + </div> |
| 48 | + <div> |
| 49 | + <label for="size" style="color: #395144;">Size</label> |
| 50 | + </div> |
| 51 | + <div> |
| 52 | + <input |
| 53 | + type="range" |
| 54 | + min="10" |
| 55 | + max="410" |
| 56 | + value="60" |
| 57 | + step="50" |
| 58 | + name="speed" |
| 59 | + class="slider" |
| 60 | + id="speed" |
| 61 | + /> |
| 62 | + </div> |
| 63 | + <div> |
| 64 | + <label for="speed" style="color: #395144;">Speed</label> |
| 65 | + </div> |
| 66 | + <div> |
| 67 | + <button class="btn btn-sm btn-clr" id="new-array" type="button"> |
| 68 | + New Array |
| 69 | + </button> |
| 70 | + </div> |
| 71 | + <div> |
| 72 | + <button class="btn btn-sm reload" id="reload">Reload</button> |
| 73 | + </div> |
68 | 74 | </div>
|
69 | 75 | <div class="srt-btn">
|
70 | 76 | <div>
|
71 |
| - <button class="btn btn-clr" id="bubble" type="button"> |
| 77 | + <button class="btn btn-sm btn-clr" id="bubble" type="button"> |
72 | 78 | Bubble Sort
|
73 | 79 | </button>
|
74 | 80 | </div>
|
75 | 81 | <div>
|
76 |
| - <button class="btn btn-clr" id="selection" type="button"> |
| 82 | + <button class="btn btn-sm btn-clr" id="selection" type="button"> |
77 | 83 | Selection Sort
|
78 | 84 | </button>
|
79 | 85 | </div>
|
80 | 86 | <div>
|
81 |
| - <button class="btn btn-clr" id="insertion" type="button"> |
| 87 | + <button class="btn btn-sm btn-clr" id="insertion" type="button"> |
82 | 88 | Insertion Sort
|
83 | 89 | </button>
|
84 | 90 | </div>
|
85 | 91 | <div>
|
86 |
| - <button class="btn btn-clr" id="merge" type="button"> |
| 92 | + <button class="btn btn-sm btn-clr" id="merge" type="button"> |
87 | 93 | Merge Sort
|
88 | 94 | </button>
|
89 | 95 | </div>
|
90 | 96 | <div>
|
91 |
| - <button class="btn btn-clr" id="quick" type="button"> |
| 97 | + <button class="btn btn-sm btn-clr" id="quick" type="button"> |
92 | 98 | Quick Sort
|
93 | 99 | </button>
|
94 | 100 | </div>
|
|
97 | 103 | <div class="bars-cnt" id="bars">
|
98 | 104 | <!-- Bars -->
|
99 | 105 | </div>
|
100 |
| - <div> |
101 |
| - <div style="position: relative; width: 100%; max-width: 100%;"> |
102 |
| - <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8246776799485595" |
103 |
| - crossorigin="anonymous"></script> |
104 |
| - <!-- HomePageRightAd --> |
105 |
| - <ins class="adsbygoogle" |
106 |
| - style="display:block; position: absolute; width: inherit; max-width: inherit;" |
107 |
| - data-ad-client="ca-pub-8246776799485595" |
108 |
| - data-ad-slot="8333530099" |
109 |
| - data-ad-format="auto" |
110 |
| - data-full-width-responsive="true"> |
111 |
| - </ins> |
112 |
| - <script> |
113 |
| - (adsbygoogle = window.adsbygoogle || []).push({}); |
114 |
| - </script> |
115 |
| - </div> |
116 |
| - </div> |
| 106 | + <!-- <div> |
| 107 | + Future Content Here [Need to Change CSS Grid Column] |
| 108 | + </div> --> |
117 | 109 | </div>
|
118 | 110 | <footer
|
119 |
| - class="d-flex flex-wrap justify-content-space-between align-items-center py-3 border-top" |
| 111 | + class="py-3 border-top" |
120 | 112 | >
|
121 | 113 | <div class="ftr">
|
122 | 114 | <div>
|
|
143 | 135 | >
|
144 | 136 | <svg
|
145 | 137 | xmlns="http://www.w3.org/2000/svg"
|
146 |
| - width="24" |
147 |
| - height="24" |
| 138 | + width="22" |
| 139 | + height="22" |
148 | 140 | fill="currentColor"
|
149 | 141 | class="bi bi-linkedin"
|
150 | 142 | viewBox="0 0 16 16"
|
|
159 | 151 | <a class="text-dark" href="https://github.com/iamujj15">
|
160 | 152 | <svg
|
161 | 153 | xmlns="http://www.w3.org/2000/svg"
|
162 |
| - width="24" |
163 |
| - height="24" |
| 154 | + width="22" |
| 155 | + height="22" |
164 | 156 | fill="currentColor
|
165 | 157 | class="bi bi-github"
|
166 | 158 | viewBox="0 0 16 16"
|
|
0 commit comments