Skip to content

Commit

Permalink
feat: Add form styling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Starciad committed Jan 23, 2024
1 parent e0e5de8 commit 33e630a
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions styles/elements/forms.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
form {
display: flex;

flex-direction: column;

padding: 8px;
}

fieldset {
display: flex;
flex-direction: column;

padding: 32px;
margin: 16px 0px 16px 0px;

border-radius: 8px;
border-color: #262f3b;
border-style: solid;
}

fieldset legend {
padding: 0px 16px 0px 16px;

font-size: 16px;
font-weight: bolder;
}

label {
font-size: 18px;
}

select {
color: black;

width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border-radius: 16px;
}

option {
color: black;

font-size: 18px;

padding: 12px 20px;
}

input {
color: black;

width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border-radius: 16px;
}

0 comments on commit 33e630a

Please sign in to comment.