Made division buttons 'chunkier' feeling, for lack of a better term

Adding tournaments now defaults to today's date
This commit is contained in:
Taylor Courage 2025-03-08 20:18:18 -05:00
parent 771957158a
commit e595726885
2 changed files with 4 additions and 2 deletions

View File

@ -92,7 +92,7 @@ try { // Try opening the SQL database connection
<input type="text" id="tourneyName" name="tourneyName" maxlength="150" tabindex="1" required>
<p class="newLine"></p>
<label for="tourneyName">Tournament date</label>
<input type="date" id="tourneyDate" name="tourneyDate" max="<?php echo date("Y-m-d"); ?>" tabindex="1" required>
<input type="date" id="tourneyDate" name="tourneyDate" max="<?php echo date("Y-m-d"); ?>" value="<?php echo date("Y-m-d"); ?>" tabindex="1" required>
<p class="newLine"></p>
</div>
<div class="optionsArea">

View File

@ -100,8 +100,10 @@
}
.divisionNavPanel input[type="radio"]:checked + label {
background-color: rgba(0, 40, 255, .4);
background-color: rgba(0, 40, 255, .75);
box-shadow: 0 0 2px;
color: rgb(255, 255, 255);
font-weight: bold;
}
.divisionNavPanel label:hover {