پیشنمایش زنده
کد HTML
<button>
<svg
aria-hidden="true"
stroke="currentColor"
stroke-width="2"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M17.593 3.322c1.1.128 1.907 1.077 1.907 2.185V21L12 17.25 4.5 21V5.507c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0111.186 0z"
stroke-linejoin="round"
stroke-linecap="round"
></path>
</svg>
Add Bookmark
</button>
کد CSS
button {
border: none;
display: flex;
padding: 0.75rem 1.5rem;
background-color: #488aec;
color: #ffffff;
font-size: 0.75rem;
line-height: 1rem;
font-weight: 700;
cursor: pointer;
text-align: center;
text-transform: uppercase;
vertical-align: middle;
align-items: center;
border-radius: 0.5rem;
user-select: none;
gap: 0.75rem;
box-shadow: 0 4px 6px -1px #488aec31, 0 2px 4px -1px #488aec17;
transition: all 0.6s ease;
}
button:hover {
box-shadow: 0 10px 15px -3px #488aec4f, 0 4px 6px -2px #488aec17;
}
button:focus,
button:active {
opacity: 0.85;
box-shadow: none;
}
button svg {
width: 1.25rem;
height: 1.25rem;
}