Advertisement
stqr-crossed

cool button thing

Jun 15th, 2024
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <style>
  2. .button {
  3. width: fit-content;
  4. padding: 10px 18px;
  5. font-family: ms gothic;
  6. background-color: #FFA3BE;
  7. text-align: center;
  8. border-radius: 2rem;
  9. position: relative;
  10. height: fit-content;
  11. color: #000;
  12. line-height: 0.8rem;
  13. border: 1px solid #000;
  14. }
  15.  
  16. .button:before {
  17. content: "";
  18. height: 50%;
  19. position: absolute;
  20. top: 0.05rem;
  21. left: 0.4rem;
  22. width: 90%;
  23. border-radius: 5rem;
  24. background: transparent;
  25. background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  26. opacity: 0.6;
  27. }
  28. </style>
  29.  
  30. <div class="button"> text here </div>
  31.  
  32. <!---credit to softteddypaws.neocities.org & mypillowfort.net-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement