Ad Space - Top Banner (728x90)

Bookmark Button

0 viewsmedium
Background:
1
2
3
4
5
6
7
8
9
10
11
12
<button class="flex overflow-hidden items-center text-sm font-medium bg-purple-600 text-white shadow hover:bg-purple-700 h-9 px-4 py-2 max-w-52 whitespace-pre group relative w-full justify-center gap-2 rounded-md transition-all duration-300 ease-out hover:ring-2 hover:ring-purple-600 hover:ring-offset-2">
  <span class="absolute right-0 -mt-12 h-32 w-8 translate-x-12 rotate-12 bg-white opacity-15 transition-all duration-1000 ease-out group-hover:-translate-x-40"></span>
  <div class="flex items-center">
    <svg class="w-4 h-4 fill-current" viewBox="0 0 24 24">
      <path d="M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"></path>
    </svg>
    <span class="ml-1 text-white">Bookmark</span>
  </div>
  <div class="ml-2 flex items-center gap-1 text-sm">
    <span class="text-xs bg-purple-500 px-1 rounded text-white">SAVED</span>
  </div>
</button>
Was this helpful?