mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-05-10 04:05:22 -04:00
feat: added div for forms
This commit is contained in:
parent
d0ca652845
commit
261c0c7815
2 changed files with 53 additions and 4 deletions
|
@ -3,4 +3,48 @@
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
align-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
.form-input {
|
||||
margin-bottom: 40px;
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
flex-direction: column;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.form-row input[type='text'] {
|
||||
background-color: #FFFFFF;
|
||||
border: 1px solid #D6D9DC;
|
||||
border-radius: 3px;
|
||||
width: 100%;
|
||||
padding: 7px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.form-row label {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (min-width: 700px) {
|
||||
.form {
|
||||
width: 600px;
|
||||
}
|
||||
|
||||
.form-row {
|
||||
flex-direction: row;
|
||||
align-items: flex-start; /* To avoid stretching */
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.form-row input[type='text'] {
|
||||
width: 250px;
|
||||
height: initial;
|
||||
}
|
||||
.form-row label {
|
||||
text-align: right;
|
||||
width: 120px;
|
||||
margin-top: 7px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue