mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
136 lines
2.6 KiB
HTML
136 lines
2.6 KiB
HTML
<div class="form">
|
|
<div class="subtitle">Let's create your account!</div>
|
|
<div class="input-container ic1">
|
|
<input id="firstname" class="input" type="text" placeholder="">
|
|
<div class="cut"></div>
|
|
<label for="firstname" class="placeholder">First name</label>
|
|
</div>
|
|
<div class="input-container ic2">
|
|
<input id="lastname" class="input" type="text" placeholder="">
|
|
<div class="cut"></div>
|
|
<label for="lastname" class="placeholder">Last name</label>
|
|
</div>
|
|
<div class="input-container ic2">
|
|
<input id="email" class="input" type="text" placeholder="">
|
|
<div class="cut cut-short"></div>
|
|
<label for="email" class="placeholder">Email
|
|
</label></div>
|
|
<button type="text" class="submit">submit</button>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by Shoh2008 - Tags: form */
|
|
.form {
|
|
background-color: #15172b;
|
|
border-radius: 20px;
|
|
box-sizing: border-box;
|
|
height: 350px;
|
|
padding: 20px;
|
|
width: 320px;
|
|
}
|
|
|
|
.title {
|
|
color: #eee;
|
|
font-family: sans-serif;
|
|
font-size: 36px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.subtitle {
|
|
color: #eee;
|
|
font-family: sans-serif;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.input-container {
|
|
height: 40px;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.ic1 {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.ic2 {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.input {
|
|
background-color: #303245;
|
|
border-radius: 12px;
|
|
border: 0;
|
|
box-sizing: border-box;
|
|
color: #eee;
|
|
font-size: 18px;
|
|
height: 40px;
|
|
outline: 0;
|
|
padding: 4px 10px 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.cut {
|
|
background-color: #15172b;
|
|
border-radius: 10px;
|
|
height: 10px;
|
|
left: 20px;
|
|
position: absolute;
|
|
top: -20px;
|
|
transform: translateY(0);
|
|
transition: transform 200ms;
|
|
width: 76px;
|
|
}
|
|
|
|
.cut-short {
|
|
width: 30px;
|
|
}
|
|
|
|
.input:focus ~ .cut,
|
|
.input:not(:placeholder-shown) ~ .cut {
|
|
transform: translateY(8px);
|
|
}
|
|
|
|
.placeholder {
|
|
color: #65657b;
|
|
font-family: sans-serif;
|
|
left: 20px;
|
|
line-height: 14px;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
transform-origin: 0 50%;
|
|
transition: transform 200ms, color 200ms;
|
|
top: 20px;
|
|
}
|
|
|
|
.input:focus ~ .placeholder,
|
|
.input:not(:placeholder-shown) ~ .placeholder {
|
|
transform: translateY(-30px) translateX(10px) scale(0.75);
|
|
}
|
|
|
|
.input:not(:placeholder-shown) ~ .placeholder {
|
|
color: #808097;
|
|
}
|
|
|
|
.input:focus ~ .placeholder {
|
|
color: #dc2f55;
|
|
}
|
|
|
|
.submit {
|
|
background-color: #08d;
|
|
border-radius: 12px;
|
|
border: 0;
|
|
box-sizing: border-box;
|
|
color: #eee;
|
|
cursor: pointer;
|
|
font-size: 18px;
|
|
height: 50px;
|
|
margin-top: 38px;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.submit:active {
|
|
background-color: #06b;
|
|
}
|
|
|
|
</style>
|