Config-Funktionen in eigenes Modul, fixes #7

This commit is contained in:
2024-06-04 14:58:52 +02:00
parent 4bcdf1071e
commit f695e874a9
5 changed files with 251 additions and 218 deletions
+53 -33
View File
@@ -22,15 +22,7 @@
}
html {
/* background-color: #000; */
background-image: url('../images/icon-512.png');
background-position: center center;
background-size: cover;
background-attachment: fixed;
}
body {
backdrop-filter: blur(10px) brightness(50%);
background: linear-gradient(to left, #de6262, #ffb88c);
}
h1,
@@ -38,18 +30,22 @@
line-height: 1;
margin: 1rem 0 1.333rem 0;
}
h2 {
margin-bottom: 2.25rem;
}
p {
line-height: 1.333;
line-height: 1.4;
margin: 1rem 0;
}
pre,
code {
background-color: hsl(0, 0%, 25%);
color: #f2f2f2;
background-color: hsl(0, 0%, 85%);
color: #333;
font-weight: 300;
font-size: 0.9rem;
padding: 0.1666em 0.333em;
padding: 0.133em 0.333em;
}
pre {
@@ -95,6 +91,7 @@
padding: 1.1666rem 2rem;
border-radius: 0.5rem;
overflow: auto;
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.card h2 {
@@ -102,13 +99,33 @@
font-weight: 500;
}
table {
border-collapse: collapse;
width: 100%;
}
th {
width: min-content;
}
td {
width: max-content;
}
td, th {
margin: 0;
padding: 1rem;
border-top: 1px solid lightblue;
border-bottom: 1px solid lightblue;
}
@media screen and (max-width: 1024px) {
body,
html {
display: block;
/* height: auto; */
}
#info {
@@ -147,31 +164,34 @@
<div class="columns">
<article class="card">
<h2>Add your content</h2>
<p>You can load a local page or an online ressource.</p>
<p>The first thing you might want to do, is configure your page to load. You can load a local page or an
online ressource.</p>
<p>
Put your local content in <code>/assets/data/index.html</code>
or configure a URL in the config file (&rarr; see <i>Configuration</i>).
or configure a URL in the settings (shortcut <code>Strg + ,</code>).
</p>
</article>
<article class="card">
<h2>Configuration</h2>
<p>If you need a config file, put it in either of these locations:</p>
<ol>
<li><code>/assets/presentation/config.json</code></li>
<li>The application folder</li>
</ol>
<p>Here is an example:</p>
<p>
<pre><code>{
"url": "https://www.tooloop.de",
"whitelist": [
"tooloop.de",
"www.tooloop.de"
],
"logPath": "/assets/logs/Tooloop-Kiosk-Browser.log"
}</code></pre>
</p>
<h2>Keyboard shortcuts</h2>
<table>
<tr>
<th><code>Ctrl + ,</code></th>
<td>Settings</td>
</tr>
<tr>
<th><code>Ctrl + F</code></th>
<td>Toggle Fullscreen</td>
</tr>
<tr>
<th><code>Ctrl + Q</code></th>
<td>Quit</td>
</tr>
<tr>
<th><code>Ctrl + R</code></th>
<td>Reload</td>
</tr>
</table>
</article>
</div>