Improvements to themes, layouts, and CSS styling

This commit is contained in:
Shaun Walker
2019-10-16 14:28:49 -04:00
parent c029e70783
commit 05a405e036
51 changed files with 11843 additions and 777 deletions

View File

@ -29,7 +29,7 @@ window.interop = {
}
},
includeCSS: function (id, url) {
var link = document.getElementById('yourid');
var link = document.getElementById(id);
if (link === null) {
link = document.createElement("link");
link.id = id;

View File

@ -1,10 +1 @@
/* Open when someone clicks on the span element */
function openActions() {
document.getElementById("actions").style.width = "25%";
}
/* Close when someone clicks on the "x" symbol inside the overlay */
function closeActions() {
document.getElementById("actions").style.width = "0%";
}