Style Updates.

This commit is contained in:
TheOldGuy 2024-09-03 15:13:11 +00:00
parent 541a41faea
commit e415ce1f28

View File

@ -31,6 +31,19 @@
width: 100%;
max-width: 400px;
}
button[type="submit"] {
padding: 8px 16px;
font-size: 16px; /* 80% of the input text font size */
background-color: #888888; /* Adjust this color to match the palette */
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
background-color: #aaaaaa; /* Slightly darker shade for hover effect */
}
#countdown {
font-size: 24px;
margin-top: 20px;
@ -42,7 +55,7 @@
</head>
<body>
<div class="container">
<h1>Please, enter the Version: </h1>
<h1>Please, Enter the Version: </h1>
<form id="versionForm">
<input type="text" id="versionInput" placeholder="Enter Version" required pattern="[a-zA-Z0-9_-]+" />
<button type="submit">Access</button>