html: minor fixes to styling (#28)

* e

* minify

---------

Co-authored-by: Vaxry <vaxry@vaxry.net>
This commit is contained in:
nyx
2025-04-23 18:05:16 -04:00
committed by GitHub
parent 88507ee893
commit 119da9c973
2 changed files with 39 additions and 13 deletions

View File

@@ -212,7 +212,7 @@
<noscript>
<p class="text-description">
This website uses <a class="link" href="https://github.com/vaxerski/checkpoint">checkpoint</a> and
This website uses&nbsp;<a class="link" href="https://github.com/vaxerski/checkpoint">checkpoint</a>&nbsp;and
requires
javascript to
automatically verify you are not a bot.<br /><br />
@@ -227,7 +227,7 @@
<form action="/checkpoint/challengeNoJs" method="get">
<div>
<label class="form-label" for="name">Enter the output: </label>
<label class="form-label" for="name">Enter the output </label>
<input class="form-input" type="text" name="solution" id="solution" required />
</div>
<input class="input-hidden" type="text" name="fingerprint" id="fingerprint"
@@ -249,21 +249,47 @@
<style>
.form-label {
color: #fff;
color: #d9d9d9;
display: block;
text-align: center;
}
.form-button {
margin-left: 9.5rem;
width: calc(100%-19rem);
display: block;
position: relative;
margin-bottom: 0.5rem;
font-size: 1rem;
}
.form-input {
margin-left: 9.5rem;
width: calc(100%-19rem);
display: block;
margin: 0 auto;
width: 15rem;
background-color: #161616;
color: #d9d9d9;
border: 1px solid #280d0e;
border-radius: 0.3rem;
padding: 0.5rem;
font-size: 1rem;
margin-bottom: 0.5rem;
outline: none;
transition: border-color 0.2s ease-in-out;
}
.form-input:focus {
border-color: #692225;
}
.form-button {
display: block;
margin: 0 auto;
background-color: #280d0e;
color: #d9d9d9;
border: none;
border-radius: 0.3rem;
padding: 0.5rem 1.5rem;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
}
.form-button:hover {
background-color: #692225;
}
.code-block {

File diff suppressed because one or more lines are too long