Skip to content

Commit 8dfd8c1

Browse files
learn
1 parent 77a1cfd commit 8dfd8c1

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

learn/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ <h2>Code</h2>
4242
<div class="youtube-embed">
4343
<h2>Enjoy the music</h2>
4444

45-
<iframe width="560" height="315"
45+
<!-- <iframe width="560" height="315"
4646
src="https://www.youtube.com/embed/videoseries?si=DjrsiQcNbOL9TS8X&amp;list=PLSzbgWLwz7o4t_egWJKBE5aL2JK0vCGCA&autoplay=1&mute=1"
4747
title="YouTube video player" frameborder="0"
4848
allow="accelerometer;autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
49-
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
49+
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> -->
5050

5151
</div>
5252

learn/sort/bubblesort.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ <h3>Conclusion</h3>
102102
algorithms and problem-solving techniques.</p>
103103
</div>
104104
<div>
105-
<ol id="stepsofsorting"></ol>
105+
<ol id="stepsofsorting"></ol>
106106

107107

108108
</div>

learn/sort/script.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ function bubbleSort() {
6565
array[j + 1] = temp;
6666
}
6767
}
68+
// alert("Loop done");
6869
}
6970
}
7071

learn/sort/style.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ input[type="text"]:focus {
108108
box-shadow: 0 4px 8px rgba(41, 128, 185, 0.3);
109109
}
110110

111-
button {
111+
button ,ol{
112112
padding: 12px 24px;
113113
font-size: 18px;
114114
color: #fff;
@@ -122,7 +122,9 @@ button {
122122
button:hover {
123123
background-color: #2980b9;
124124
}
125-
125+
li:hover {
126+
background-color: #29b973;
127+
}
126128
button:disabled {
127129
background-color: #bdc3c7;
128130
cursor: not-allowed;

0 commit comments

Comments
 (0)