Changed font and added some centered elements. Fixed spacing (padding and margin)

This commit is contained in:
5gi ☑
2023-12-20 14:09:45 -05:00
parent eb7c297791
commit 5c607d581d
2 changed files with 24 additions and 12 deletions

View File

@@ -1,31 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<html lang="en-US ">
<head>
<meta charset="UTF-8">
<title>Nginx Installer</title>
<link rel="stylesheet" href="style.css">
<link href='https://fonts.googleapis.com/css?family=JetBrains Mono' rel='stylesheet'>
</head>
<body>
<div class="main">
<label for="link">
<p>nginx archive <a href="https://nginx.org/download/" target=”_blank”>(copy link here)</a></p>
<input type="text" id="link">
<!-- <h1 style="margin-left: auto; margin-right: auto">Nginx Script Gen</h1>-->
<label for="link" style="height: 50px">
<p style="width: 300px; "><a href="https://nginx.org/download/" target=”_blank”>NGINX Archive Link:</a></p>
<input type="text" id="link" style="margin-top: 10px">
</label>
<label for="extMod">
<p>Include recommended modules (<a href="https://github.com/openresty/headers-more-nginx-module" target="_blank">more headers</a> & <a href="https://github.com/google/ngx_brotli" target="_blank">brotli compression</a>)</p>
<p>Include recommended modules (<a href="https://github.com/openresty/headers-more-nginx-module" target="_blank">more headers</a> & <a href="https://github.com/google/ngx_brotli" target="_blank">brotli compression</a>):</p>
<input type="checkbox" id="extMod" checked>
<span class="checkmark"></span>
</label>
<label for="http3">
<p>HTTP/3:</p>
<input type="checkbox" id="http3">
<span class="checkmark"></span>
</label>
<label for="service">
<p>Run as service:</p>
<input type="checkbox" id="service">
<span class="checkmark"></span>
</label>
<button id="submit" class="centered-button">Generate Script</button>
<code lang="bash" id="script"></code>
</div>