Cards are saved on your computer under your browser's localstorage, which usually has a limit of 5MB and cannot be changed.
+
Unfortunately, this means that if you save a lot of cards, you could run out of space.
+
Your localstorage runs out of space especially fast when you upload images directly from your computer, because the image itself has to be saved. However, if possible, uploading images via URL will save massive amounts of space, allowing you to save many more cards.
+
And if you do run out of space, don't worry. You can download all saved cards, then delete all saved cards, freeing up all 5MB of space, and you can then reupload the downloaded cards via the file upload, under "Upload previously downloaded cards".
+
diff --git a/css/style-5.css b/css/style-5.css
index abdc5a90..022ed100 100644
--- a/css/style-5.css
+++ b/css/style-5.css
@@ -146,22 +146,22 @@ h1 {
}
h2 {
font-size: 2.5rem;
- font-family: Montserrat-SemiBold, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
+ font-family: Montserrat-Medium, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
overflow-wrap: break-word;
}
h3 {
font-size: 2rem;
- font-family: Montserrat-SemiBold, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
+ font-family: Montserrat-Medium, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
overflow-wrap: break-word;
}
h4 {
font-size: 1.5rem;
- font-family: Montserrat-SemiBold, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
+ font-family: Montserrat-Medium, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
overflow-wrap: break-word;
}
h5 {
font-size: 1.25rem;
- font-family: Montserrat-SemiBold, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
+ font-family: Montserrat-Medium, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
overflow-wrap: break-word;
}
p {
diff --git a/js/creator-1.js b/js/creator-1.js
index 9e61f287..f221114a 100644
--- a/js/creator-1.js
+++ b/js/creator-1.js
@@ -1284,7 +1284,7 @@ function deleteCard() {
}
}
function deleteSavedCards() {
- if (confirm('WARNING:\n\nALL of your saved cards will be deleted! If you would like to save these cards, please make sure you have downloaded them first. There is no way to undo this.')) {
+ if (confirm('WARNING:\n\nALL of your saved cards will be deleted! If you would like to save these cards, please make sure you have downloaded them first. There is no way to undo this.\n\n(Press "OK" to delete your cards)')) {
var cardKeys = JSON.parse(localStorage.getItem('cardKeys'));
cardKeys.forEach(key => localStorage.removeItem(key));
localStorage.setItem('cardKeys', JSON.stringify([]));