mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
51 lines
928 B
HTML
51 lines
928 B
HTML
<form class="form">
|
|
Sign Up
|
|
<input type="text" class="input" placeholder="Name">
|
|
<input type="text" class="input" placeholder="Password">
|
|
<button>Submit</button>
|
|
</form>
|
|
<style>
|
|
/* From Uiverse.io by Shoh2008 - Tags: form, sign-up */
|
|
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
background: #1e1e1e;
|
|
padding: 20px;
|
|
border: 1px solid #3d3c3c;
|
|
border-radius: 10px;
|
|
color: white;
|
|
text-align: center;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.form input {
|
|
height: 35px;
|
|
outline: none;
|
|
border: 2px solid orange;
|
|
background: transparent;
|
|
padding: 20px 10px;
|
|
border-radius: 5px;
|
|
transition: .5s;
|
|
color: white;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.form input:focus {
|
|
background: orange;
|
|
}
|
|
|
|
.form button {
|
|
width: 100%;
|
|
color: white;
|
|
transition: .5s;
|
|
font-size: 20px;
|
|
outline: none;
|
|
border: none;
|
|
height: 45px;
|
|
border-radius: 5px;
|
|
background: orange;
|
|
align-self: flex-end;
|
|
}
|
|
|
|
</style>
|