diff --git a/js/pis.js b/js/pis.js index b4f5c1d..0d59d54 100644 --- a/js/pis.js +++ b/js/pis.js @@ -29,13 +29,13 @@ async function insertData(json) { const div = document.getElementById('result-box') let tableData = ` - - + + ` let results = 0 for(var i = 0; i < json.length; i++) { // Hopefully can style output with CSS - tableData += ` - ` + tableData += ` + ` results++ } tableData += "
CodeStationsCodeStations
${json[i]['code']}${json[i]['stops']}
${json[i]['code']}${json[i]['stops']}
" diff --git a/styles/pis.css b/styles/pis.css index 8c42fb8..3039e47 100644 --- a/styles/pis.css +++ b/styles/pis.css @@ -4,4 +4,24 @@ #result-box { display: none; +} + +#result-table { + margin: auto; + width: 85%; + max-width: 700px; + text-align: center; +} + +#reset { + margin-top: 25px; +} + +.pis-code { + font-weight:bold; +} + +.station { + text-transform:uppercase; + overflow-wrap:anywhere } \ No newline at end of file diff --git a/sw.js b/sw.js index b975e29..8151cc7 100644 --- a/sw.js +++ b/sw.js @@ -1,6 +1,6 @@ /* Service Worker */ -const appVersion = "2.0.0-dev" +const appVersion = "1.2.4-dev-pis" const cacheName = `owlboard-${appVersion}`; const cacheIDs = [cacheName]; const cacheFiles = [ @@ -13,6 +13,7 @@ const cacheFiles = [ "/issue.html", "/find-code.html", "/settings.html", + "/pis.html", "/manifest.json", "/styles/fonts/firamono/firamono-500.woff2", "/styles/fonts/firamono/firamono-regular.woff2", @@ -24,6 +25,7 @@ const cacheFiles = [ "/styles/issue.css", "/styles/main.css", "/styles/settings.css", + "/styles/pis.css", "/js/find-code.js", "/js/index.js", "/js/issue.js", @@ -32,6 +34,7 @@ const cacheFiles = [ "/js/auth.js", "/js/settings.js", "/js/simple-board.js", + "/js/pis.js", "/images/icon.svg", "/images/logo/wide_logo.svg", "/images/logo/mono-logo.svg",