mirror of
https://github.com/cfultz/mtgcsv.git
synced 2024-11-22 09:10:04 +01:00
Added ability to clear theme
This commit is contained in:
parent
6b3a8e837f
commit
668ac3db0a
@ -17,6 +17,7 @@
|
|||||||
<div id="menu-content" class="menu-content">
|
<div id="menu-content" class="menu-content">
|
||||||
<label>Select Theme:</label>
|
<label>Select Theme:</label>
|
||||||
<div id="theme-selector">
|
<div id="theme-selector">
|
||||||
|
<span class="mana-icon" onclick="setTheme('')"></span> <!-- Colorless -->
|
||||||
<span class="mana-icon" onclick="setTheme('theme-white')"></span> <!-- White -->
|
<span class="mana-icon" onclick="setTheme('theme-white')"></span> <!-- White -->
|
||||||
<span class="mana-icon" onclick="setTheme('theme-blue')"></span> <!-- Blue -->
|
<span class="mana-icon" onclick="setTheme('theme-blue')"></span> <!-- Blue -->
|
||||||
<span class="mana-icon" onclick="setTheme('theme-black')"></span> <!-- Black -->
|
<span class="mana-icon" onclick="setTheme('theme-black')"></span> <!-- Black -->
|
||||||
@ -60,6 +61,14 @@
|
|||||||
<textarea id="csv-output" readonly></textarea>
|
<textarea id="csv-output" readonly></textarea>
|
||||||
<div id="card-popup" class="card-popup"></div>
|
<div id="card-popup" class="card-popup"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<p>
|
||||||
|
<a href="https://github.com/cfultz/mtgcsv" target="_blank">View on GitHub</a> |
|
||||||
|
This app is not affiliated with Wizards of the Coast or Hasbro. All rights and trademarks are owned by their respective owners.
|
||||||
|
</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
<script type="module" src="app.js"></script>
|
<script type="module" src="app.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
18
styles.css
18
styles.css
@ -277,3 +277,21 @@ body.dark-mode .menu-content label,
|
|||||||
body.dark-mode .menu-content input {
|
body.dark-mode .menu-content input {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
footer {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 0.5rem; /* Smaller font size */
|
||||||
|
color: #666; /* A lighter color for the text */
|
||||||
|
margin-top: 0px;
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer a {
|
||||||
|
color: #007acc; /* Link color matching the theme */
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer a:hover {
|
||||||
|
text-decoration: underline; /* Underline on hover for emphasis */
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user