mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
22 lines
No EOL
408 B
HTML
22 lines
No EOL
408 B
HTML
<input placeholder="Enter your name" class="input" type="text" />
|
|
|
|
<style>
|
|
/* From Uiverse.io by danilppzz - Tags: black, input, dark */
|
|
.input {
|
|
background-color: #292929;
|
|
border: 1px solid #3e3e3e;
|
|
border-radius: 8px;
|
|
color: #fff;
|
|
padding: 14px 24px;
|
|
text-decoration: none;
|
|
font-size: 16px;
|
|
margin: 12px 14px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.input:hover {
|
|
border: 1px solid #fff;
|
|
}
|
|
|
|
</style>
|
|
|