mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
22 lines
No EOL
401 B
HTML
22 lines
No EOL
401 B
HTML
<button class="button">Submit</button>
|
|
|
|
<style>
|
|
/* From Uiverse.io by danilppzz - Tags: simple, black, button, dark, hoverme */
|
|
.button {
|
|
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;
|
|
}
|
|
|
|
.button:hover {
|
|
border: 1px solid #fff;
|
|
}
|
|
|
|
</style>
|
|
|