This commit removes the redundant logo.svg file. It then adds several new components including 'footer', 'contact_form', 'home', 'verify_email' in forms/src/components directory. It also includes associated CSS files for styling these components. Updates have also been made in the index.html file for SEO metadata. Changes made aim to enhance functionality and improve user interface.
53 lines
787 B
CSS
53 lines
787 B
CSS
.container {
|
|
flex-grow: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
form {
|
|
max-width: 600px;
|
|
margin: auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: #333;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="email"],
|
|
textarea {
|
|
width: 100%;
|
|
padding: 10px;
|
|
font-size: 1em;
|
|
border-radius: 5px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
button,
|
|
input[type="submit"] {
|
|
padding: 10px 20px;
|
|
font-size: 1em;
|
|
border-radius: 5px;
|
|
border: none;
|
|
color: #fff;
|
|
background-color: #007BFF;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button[disabled],
|
|
input[type="submit"][disabled] {
|
|
background-color: #ccc;
|
|
}
|
|
|
|
#footer{
|
|
padding-bottom: 0 !important;
|
|
} |