Skip to content

Commit f763cae

Browse files
authored
Add files via upload
1 parent ae42861 commit f763cae

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

notes/script.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,9 @@ document.addEventListener("DOMContentLoaded", function () {
3131
heading.appendChild(link);
3232
});
3333
});
34+
35+
document.querySelectorAll("li").forEach(li => {
36+
if (li.textContent.includes("0110100001110100011101000111000001110011001110100")) {
37+
li.classList.add("break-word");
38+
}
39+
});

notes/styles.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,8 @@ em { font-style: italic; }
2121
a {color:rgb(55, 192, 255)}
2222

2323
a:visited {color:rgb(182, 72, 255)}
24+
25+
.break-word {
26+
word-break: break-word;
27+
overflow-wrap: break-word;
28+
}

0 commit comments

Comments
 (0)