Skip to content

Commit

Permalink
Add a line for Quilt.js
Browse files Browse the repository at this point in the history
  • Loading branch information
atom-box committed Sep 6, 2021
1 parent 2fb80c4 commit 11a67a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion helpers/quiltMain.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ articles.forEach(element => {
singleDiv = `<article style="background-color:${element.backgroundColor}; color: ${element.textColor};"><div class='gutters';>
<div class="top-bottom-space"><div>
<h2 >${element.title}</h2>
<p>Challenge: <br/>${element.question}</p>
<p>Challenge:</p><div class="white-box"><p>${element.question}</p></div>
`;
singleDiv += `<p>Solution:</p>`;
singleDiv += `<div class="white-box" id="${element.title}">`;
Expand Down
7 changes: 4 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,10 @@
<h1 class="mt-5">Coding <a href="https://codingbat.com/python"> Bat</a></h1>
<p class="lead">These are short projects to try out a specific concept.<br>like from #LeetCode or #100DaysOfCode.</p>
<ul>
<li><a target="_blank" href="first-and-last.html">First Word, Last Word</a></li>
<li>Solve five <a target="_blank" href="solveSeven.html">coding </a>challenges.</li> <li><a target="_blank" href="first-and-last.html">First Word, Last Word</a></li>
<li>Recursive implementation of SelectionSort.js: <a target="_blank" href="https://github.com/atom-box/codingBatJS/blob/master/selectionSort.js"> code </a> and <a target="_blank" href="https://github.com/atom-box/codingBatJS/blob/master/images/selectionSort.png"> screenshot</a> </li>
<li>Grab Bag I <a target="_blank" href="solveSeven.html">coding </a>challenges.</li> <li><a target="_blank" href="first-and-last.html">First Word, Last Word</a></li>
<li>Grab Bag II <a target="_blank" href="https://atom-box.github.io/codingBatJS/quilt.html">coding </a>challenges.</li> <li><a target="_blank" href="first-and-last.html">First Word, Last Word</a></li>
<li>Recursive implementation of SelectionSort.js: <a target="_blank" href="https://github.com/atom-box/codingBatJS/blob/master/selectionSort.js"> code </a> and <a target="_blank" href="https://github.com/atom-box/codingBatJS/blob/master/images/selectionSort.png"> screenshot</a> </li>
<li><a target="_blank" href="first-and-last.html">First Word, Last Word</a></li>
<li><a target="_blank" href="clickableMaya.html">Maya Calendar</a> with image mapping</li>
<li><a target="_blank" href="textSimilarity.html">How Similar Are Two Word Lists?</a> (for ShareRewards.com 10/9/2019)</li>
<li><a target="_blank" href="sidelineES6.html">Scrollable ES6 Notes (very clunky; not smooth)</a></li>
Expand Down
2 changes: 1 addition & 1 deletion quilt.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
}

.white-box {
border: white solid 0.2rem;
border: #ccc solid 0.08rem;
}

.stripe {
Expand Down

0 comments on commit 11a67a5

Please sign in to comment.