diff --git a/css/article.css b/css/article.css index 5281725..e17aa27 100644 --- a/css/article.css +++ b/css/article.css @@ -102,7 +102,7 @@ main .heart { } .full-width > img { - width: 100%; + width: 80%; background-color: #000; filter: brightness(0.7) contrast(1.2) grayscale(0.5); } diff --git a/css/sq2bs.css b/css/sq2bs.css index 2522a76..668b023 100644 --- a/css/sq2bs.css +++ b/css/sq2bs.css @@ -384,4 +384,8 @@ input.equipment-input { .atlas { color: #fbcd49; +} + +a { + color: #88FFFF; } \ No newline at end of file diff --git a/items/index.html b/items/index.html index fce8862..231d1b3 100644 --- a/items/index.html +++ b/items/index.html @@ -33,6 +33,11 @@
WynnAtlas
-WynnAtlas
-The WynnBuilder team has been hard at work giving you the latest and greatest tools for optimizing your most complex Wynncraft builds. Now, we're introducing WynnAtlas, the new, bigger, better, smarter, powerful-er item guide! Featuring an extremely flexible expression language for filtering and sorting items, WynnAtlas' advanced item search system gives build engineers the power to select items with a high degree of granularity. Picking components for your brand-new Divzer WFA build has never been easier!
@@ -208,7 +221,6 @@ docsFns.append(genDocEntry(entry[0], entry[1], null, entry[2])); } - diff --git a/js/items_2.js b/js/items_2.js index af3072c..a670ee3 100644 --- a/js/items_2.js +++ b/js/items_2.js @@ -246,10 +246,15 @@ function init_items2() { const itemEntries = []; for (let i = 0; i < ITEM_LIST_SIZE; i++) { const itemElem = document.createElement('div'); - itemElem.classList.add('item-entry', 'box'); - itemElem.setAttribute('id', `item-entry-${i}`); + itemElem.classList.add('col-lg-3', 'col-sm-auto', "p-2"); + // itemElem.setAttribute('id', `item-entry-${i}`); itemList.append(itemElem); itemEntries.push(itemElem); + + const itemElemContained = document.createElement("div"); + itemElemContained.classList.add("dark-7", "rounded", "px-2", "col-auto"); + itemElemContained.setAttribute('id', `item-entry-${i}`); + itemElem.appendChild(itemElemContained); } // create the expression parser @@ -323,10 +328,10 @@ function init_items2() { for (let i = 0; i < searchMax; i++) { const result = searchResults[i]; itemEntries[i].classList.add('visible'); - displayExpandedItem(result.itemExp, `item-entry-${i}`); + displaysq2ExpandedItem(result.itemExp, `item-entry-${i}`); if (result.sortKeys.length > 0) { const sortKeyListContainer = document.createElement('div'); - sortKeyListContainer.classList.add('itemleft'); + sortKeyListContainer.classList.add('row'); const sortKeyList = document.createElement('ul'); sortKeyList.classList.add('item-entry-sort-key', 'itemp', 'T0'); sortKeyListContainer.append(sortKeyList);