This commit is contained in:
Kyle
2020-04-23 11:37:40 -07:00
parent 9aed7dec42
commit a86c0970ea
2 changed files with 27 additions and 14 deletions

View File

@@ -273,25 +273,31 @@
</body>
<footer class='footer'>
<div>
Card Conjurer by Kyle Burton<br>
<div>Card Conjurer by Kyle Burton</div>
<div>
<select id='inputColorPalette' onchange='loadScript("data/scripts/palettes/" + this.value + ".js")'>
<option value='lightMode'>Light Mode</option>
<option value='darkMode'>Dark Mode</option>
<option value='dayRave'>Day Rave</option>
<option value='nightRave'>Night Rave</option>
<option value='scholarMode'>Scholar Mode</option>
</select>
<option value='lightMode'>Light Mode</option>
<option value='darkMode'>Dark Mode</option>
<option value='dayRave'>Day Rave</option>
<option value='nightRave'>Night Rave</option>
<option value='scholarMode'>Scholar Mode</option>
</select>
</div>
</div>
<div>
Navigation<br>
<a href='index.html'>Card Creator</a><br>
<a href='life.html'>Life Counter</a><br>
<a href='askscryfall.html'>Ask Scryfall</a>
<div>Navigation</div>
<div>
<a href='index.html'>Card Creator</a><br>
<a href='life.html'>Life Counter</a><br>
<a href='askscryfall.html'>Ask Scryfall</a>
</div>
</div>
<div>
Legal<br>
<a href='termsofuse.html'>Terms of Use</a><br>
<a href='disclaimer.html'>Disclaimer</a>
<div>Legal</div>
<div>
<a href='termsofuse.html'>Terms of Use</a><br>
<a href='disclaimer.html'>Disclaimer</a>
</div>
</div>
<script defer src="data/scripts/animations.js"></script>
</footer>

View File

@@ -419,6 +419,13 @@ canvas {
display: grid;
grid-template-columns: auto;
grid-row-gap: 1rem;
text-align: center;
}
.footer > div > div:first-child {
margin-bottom: 0.2rem;
}
.footer > div > div:not(:first-child) {
font-weight: bold;
}
.footer > div > select {
width: auto !important;