mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
152 lines
No EOL
3.3 KiB
HTML
152 lines
No EOL
3.3 KiB
HTML
<section class="add-card page">
|
|
<form class="form">
|
|
<label for="name" class="label">
|
|
<span class="title">Card holder full name</span>
|
|
<input
|
|
class="input-field"
|
|
type="text"
|
|
name="input-name"
|
|
title="Input title"
|
|
placeholder="Enter your full name"
|
|
/>
|
|
</label>
|
|
<label for="serialCardNumber" class="label">
|
|
<span class="title">Card Number</span>
|
|
<input
|
|
id="serialCardNumber"
|
|
class="input-field"
|
|
type="number"
|
|
name="input-name"
|
|
title="Input title"
|
|
placeholder="0000 0000 0000 0000"
|
|
/>
|
|
</label>
|
|
<div class="split">
|
|
<label for="ExDate" class="label">
|
|
<span class="title">Expiry Date</span>
|
|
<input
|
|
id="ExDate"
|
|
class="input-field"
|
|
type="text"
|
|
name="input-name"
|
|
title="Expiry Date"
|
|
placeholder="01/23"
|
|
/>
|
|
</label>
|
|
<label for="cvv" class="label">
|
|
<span class="title"> CVV</span>
|
|
<input
|
|
id="cvv"
|
|
class="input-field"
|
|
type="number"
|
|
name="cvv"
|
|
title="CVV"
|
|
placeholder="CVV"
|
|
/>
|
|
</label>
|
|
</div>
|
|
<input class="checkout-btn" type="button" value="Checkout" />
|
|
</form>
|
|
</section>
|
|
|
|
<style>
|
|
/* From Uiverse.io by 3bdel3ziz-T - Tags: material design, tooltip, form, text animation, click animation, cool card, cardhover , card animation */
|
|
.form {
|
|
background: #0c0f14;
|
|
box-shadow: 0px 187px 75px rgba(0, 0, 0, 0.01),
|
|
0px 105px 63px rgba(0, 0, 0, 0.05), 0px 47px 47px rgba(0, 0, 0, 0.09),
|
|
0px 12px 26px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
|
|
width: 320px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
padding: 20px;
|
|
position: relative;
|
|
border-radius: 25px;
|
|
}
|
|
.form .label {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
height: -moz-fit-content;
|
|
height: fit-content;
|
|
}
|
|
.form .label:has(input:focus) .title {
|
|
top: 0;
|
|
left: 0;
|
|
color: #d17842;
|
|
}
|
|
.form .label .title {
|
|
padding: 0 10px;
|
|
transition: all 300ms;
|
|
font-size: 12px;
|
|
color: #8b8e98;
|
|
font-weight: 600;
|
|
width: -moz-fit-content;
|
|
width: fit-content;
|
|
top: 14px;
|
|
position: relative;
|
|
left: 15px;
|
|
background: #0c0f14;
|
|
}
|
|
.form .input-field {
|
|
width: auto;
|
|
height: 50px;
|
|
text-indent: 15px;
|
|
border-radius: 15px;
|
|
outline: none;
|
|
background-color: transparent;
|
|
border: 1px solid #21262e;
|
|
transition: all 0.3s;
|
|
caret-color: #d17842;
|
|
color: #aeaeae;
|
|
}
|
|
|
|
.form .input-field:hover {
|
|
border-color: rgba(209, 121, 66, 0.5);
|
|
}
|
|
|
|
.form .input-field:focus {
|
|
border-color: #d17842;
|
|
}
|
|
.form .split {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
gap: 15px;
|
|
}
|
|
.form .split label {
|
|
width: 130px;
|
|
}
|
|
.form .checkout-btn {
|
|
margin-top: 20px;
|
|
padding: 20px 0;
|
|
border-radius: 25px;
|
|
font-weight: 700;
|
|
transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
|
|
cursor: pointer;
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
display: flex;
|
|
align-items: center;
|
|
border: none;
|
|
justify-content: center;
|
|
fill: #fff;
|
|
color: #fff;
|
|
border: 2px solid transparent;
|
|
background: #d17842;
|
|
transition: all 200ms;
|
|
}
|
|
.form .checkout-btn:active {
|
|
scale: 0.95;
|
|
}
|
|
|
|
.form .checkout-btn:hover {
|
|
color: #d17842;
|
|
border: 2px solid #d17842;
|
|
background: transparent;
|
|
}
|
|
|
|
</style>
|
|
|