Skip to content

Commit

Permalink
Update forms.css
Browse files Browse the repository at this point in the history
Signed-off-by: Raydo Matthee <[email protected]>
  • Loading branch information
burnt-exe authored Jun 6, 2024
1 parent a3f83a2 commit 82ffffc
Showing 1 changed file with 15 additions and 30 deletions.
45 changes: 15 additions & 30 deletions css/forms.css
Original file line number Diff line number Diff line change
@@ -1,36 +1,21 @@
/* Forms CSS */

.input-field {
/* forms.css */
input, textarea {
width: 100%;
padding: 0.5rem;
margin-bottom: 1rem;
border-radius: 0.375rem; /* 6px */
border: 1px solid #d1d5db;
}

.input-field:focus {
border-color: #0f62fe;
box-shadow: 0 0 0 1px #0f62fe;
}

.checkbox-custom {
margin-right: 0.5rem;
}

.checkbox-custom:checked {
background-color: #0f62fe;
border-color: #0f62fe;
padding: 10px;
margin-top: 10px;
border: none;
border-radius: 5px;
background-color: #2563EB; /* Light Blue */
color: #FFFFFF; /* White Text */
}

.button-primary {
background-color: #0f62fe;
color: white;
padding: 0.5rem 1rem;
button {
width: 100%;
padding: 15px;
margin-top: 20px;
background-color: #3B82F6; /* Bright Blue */
color: #FFFFFF; /* White Text */
border: none;
border-radius: 0.375rem; /* 6px */
border-radius: 5px;
cursor: pointer;
}

.button-primary:hover {
background-color: #0043ce;
}

0 comments on commit 82ffffc

Please sign in to comment.