Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. body {
  2. color: #fff;
  3. font-family: Sans-serif;
  4. }
  5.  
  6. .box {
  7. background: #FC466B;
  8. border-radius: 5px;
  9. height: 100px;
  10. left: 30%;
  11. line-height: 100px; /* Same as Div Height to make text appear in the middle*/
  12. position: absolute;
  13. text-align: center;
  14. transition: background 1s linear, border-radius 0.5s ease-out 0.5s;
  15. width: 100px;
  16. }
  17.  
  18. .box-hover:hover {
  19. background: #3F5EFB;
  20. }
  21.  
  22. .box-border {
  23. left: 50%;
  24. background: #3F5EFB;
  25. }
  26.  
  27. .box-border:hover {
  28. border-radius: 50%;
  29. }
  30.  
  31. button {
  32. background: #61dafb;
  33. border: none;
  34. /*<offset-x><offset-y><blur-radius>*/
  35. box-shadow: 0 5px 0 #B0C5CB;
  36. color: #333;
  37. font-family: inherit;
  38. font-weight: bold;
  39. left: 41%;
  40. outline: 0;
  41. padding: 12px 20px;
  42. position: absolute;
  43. top: 20%;
  44. transition: all .1s linear;
  45. }
  46.  
  47. button:active {
  48. box-shadow: 0 2px 0 #B0C5CB;
  49. transform: translateY(3px);
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement