mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
66 lines
1.3 KiB
HTML
66 lines
1.3 KiB
HTML
<form class="form">
|
|
<div class="title">Contact us</div>
|
|
<input type="text" placeholder="Your email" class="input">
|
|
<textarea placeholder="Your message"></textarea>
|
|
|
|
<button>Submit</button>
|
|
</form>
|
|
<style>
|
|
/* From Uiverse.io by Yaya12085 - Tags: button, form, input, contact, text */
|
|
.form {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
width: 300px;
|
|
background-color: white;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 30px 30px -30px rgba(27, 26, 26, 0.315);
|
|
}
|
|
|
|
.form .title {
|
|
color: royalblue;
|
|
font-size: 30px;
|
|
font-weight: 600;
|
|
letter-spacing: -1px;
|
|
line-height: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.form input {
|
|
outline: 0;
|
|
border: 1px solid rgb(219, 213, 213);
|
|
padding: 8px 14px;
|
|
border-radius: 8px;
|
|
width: 100%;
|
|
height: 50px;
|
|
}
|
|
|
|
.form textarea {
|
|
border-radius: 8px;
|
|
height: 100px;
|
|
width: 100%;
|
|
resize: none;
|
|
outline: 0;
|
|
padding: 8px 14px;
|
|
border: 1px solid rgb(219, 213, 213);
|
|
}
|
|
|
|
.form button {
|
|
align-self: flex-end;
|
|
padding: 8px;
|
|
outline: 0;
|
|
border: 0;
|
|
border-radius: 8px;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
background-color: royalblue;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
</style>
|