Advertisement
RyanJEarnshaw

Untitled

Sep 30th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. .btn {
  2. display: inline-block;
  3. background: #e2e2e2;
  4. border: 0;
  5. line-height: 2.5em;
  6. padding: 0 0 0 1em;
  7. margin-bottom: 1em;
  8. outline: none;
  9. text-decoration: none;
  10. color: #666;
  11. }
  12. .btn .arrow {
  13. display: inline-block;
  14. line-height: 2.5em;
  15. text-align: center;
  16. background: #333;
  17. color: white;
  18. font-size: 1em;
  19. width: 2.5em;
  20. -webkit-transition: margin 200ms;
  21. transition: margin 200ms;
  22. margin-left: .75em;
  23. }
  24. .btn:hover {
  25. background: white;
  26. }
  27. .btn:hover .arrow {
  28. margin-left: 1.25em;
  29. background-color: #262626;
  30. }
  31. .btn:active {
  32. background: #ccc;
  33. }
  34. .btn:active .arrow {
  35. margin-left: 1.5em;
  36. }
  37.  
  38. .btn .arrow {
  39. background-color: indianred;
  40. }
  41. .btn:hover .arrow {
  42. background-color: #c14e4e;
  43. }
  44.  
  45. .center {
  46. text-align: center;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement