diff --git a/index.html b/index.html
index 54e064be..2b121df8 100644
--- a/index.html
+++ b/index.html
@@ -148,7 +148,7 @@
Rules Text
-
+
Rules Text Font Size
@@ -164,7 +164,7 @@
Card Art
-
+
@@ -342,7 +342,7 @@
* {
text-align: center;
font-family: belerenb;
- font-size: 22px;
+ font-size: 24px;
color: var(--main-text-color);
user-select: none;
}
@@ -390,7 +390,7 @@
border: none;
background-color: var(--section-border-color);
color: var(--input-text-color);
- width: 99%;
+ width: 100%;
}
input[type="color"] {
border: none;
@@ -426,7 +426,7 @@ input[type="color"] {
top: -8px;
left: 18px;
}
-/* Custom select box (dropdown)*/
+/*Custom select box (dropdown)*/
.dropdown {
position: relative;
display: inline-block;
@@ -452,7 +452,7 @@ input[type="color"] {
position: absolute;
pointer-events: none;
color: var(--title-text-color);
- right: 3%;
+ right: 10px;
top: 38%;
}
/*List of all mana symbols and their associated codes*/
@@ -1178,10 +1178,10 @@ function resizeThings() {
document.getElementById("optionsColumn").style = "width: 100%"
}
var symbolList = ""
- var rowCount = Math.ceil(manaSymbolCode.length / Math.floor((window.innerWidth - 30) / 120))
+ var rowCount = Math.ceil(manaSymbolCode.length / Math.floor((window.innerWidth - 30) / 130))
for (var i = 0; i < manaSymbolCode.length; i++) {
if (i%rowCount == 0) {
- symbolList += "
"
+ symbolList += "
"
}
symbolList += manaSymbolCode[i] + "\u2192" + "

"
if (i%rowCount == rowCount - 1) {