feat: add more styling

This commit is contained in:
Mike 2023-11-03 17:00:22 -04:00
parent 261c0c7815
commit 0cea846e12
2 changed files with 44 additions and 28 deletions

View file

@ -1,10 +1,14 @@
.container {
justify-content: center;
display: flex;
flex-direction: column;
align-items: center;
align-content: center;
}
.form {
width: 50vw;
}
.form-input {
margin-bottom: 40px;
display: flex;
@ -13,7 +17,9 @@
flex-wrap: wrap;
}
.form-row input[type='text'] {
.form-input input[type='text'],
.form-input input[type='password'],
.form-input input[type='email'] {
background-color: #FFFFFF;
border: 1px solid #D6D9DC;
border-radius: 3px;
@ -22,26 +28,35 @@
font-size: 14px;
}
.form-row label {
.form-input label {
margin-bottom: 15px;
}
@media only screen and (min-width: 700px) {
.container {
height: 95vh;
}
.sidebar {
width: 50vw;
}
.form {
width: 600px;
width: 50vw;
}
.form-row {
.form-input {
flex-direction: row;
align-items: flex-start; /* To avoid stretching */
margin-bottom: 20px;
}
.form-row input[type='text'] {
.form-input input[type='text'],
.form-input input[type='password'],
.form-input input[type='email'] {
width: 250px;
height: initial;
}
.form-row label {
.form-input label {
text-align: right;
width: 120px;
margin-top: 7px;

View file

@ -2,7 +2,7 @@
<html lang="en">
<head>
<title>Join our Awesome Mailing list!</title>
<title>Join Our Awesome Mailing list!</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet">
@ -39,4 +39,5 @@
</div>
<script src="js/script.js"></script>
</body>
</html>