Add credit for Jak

This commit is contained in:
Lily Rose 2024-04-25 16:51:26 +10:00
parent 941db8e1aa
commit 66d59a26ae
1 changed files with 13 additions and 4 deletions

View File

@ -24,12 +24,18 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
#sidebar h2 { #sidebar header {
text-align: center;
margin: 0;
padding: 1rem; padding: 1rem;
border-bottom: 2px solid white; border-bottom: 2px solid white;
} }
#sidebar h2, #sidebar p {
margin: 0;
text-align: center;
}
#sidebar p {
font-size: 0.8rem;
margin-top: 0.5rem;
}
#settings { #settings {
flex-grow: 1; flex-grow: 1;
padding: 1rem; padding: 1rem;
@ -116,7 +122,10 @@
</head> </head>
<body> <body>
<div id="sidebar"> <div id="sidebar">
<h2>Gleam Background Settings</h2> <header>
<h2>Gleam Background Settings</h2>
<p>Credit to <a href="https://github.com/giacomocavalieri">Jak</a> for the original design idea.</p>
</header>
<form id="settings" oninput="renderPreview()" onchange="generateDownloadUrls()"> <form id="settings" oninput="renderPreview()" onchange="generateDownloadUrls()">
<label for="widthInput">Width</label> <label for="widthInput">Width</label>
<input id="widthRange" name="widthRange" type="range" min="200" max="8192" value="1920" oninput="this.form.widthInput.value = this.value"> <input id="widthRange" name="widthRange" type="range" min="200" max="8192" value="1920" oninput="this.form.widthInput.value = this.value">