Advertisement
recipe

Untitled

Jan 10th, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <style>
  2. button, .button, input[type=submit] {
  3. border: 0;
  4. background: #5786c1;
  5. color: white;
  6. padding: 8px 14px;
  7. font-weight: bold;
  8. font-size: 18px;
  9. text-decoration: none;
  10. display: inline-block; /* needed for anchors */
  11. position: relative;
  12. box-shadow: 1px 0px #3a587f, 0px 1px #4171ae,
  13. 2px 1px #3a587f, 1px 2px #4171ae,
  14. 3px 2px #3a587f, 2px 3px #4171ae,
  15. 4px 3px #3a587f, 3px 4px #4171ae,
  16. 5px 4px #3a587f, 4px 5px #4171ae,
  17. 6px 5px #3a587f, 5px 6px #4171ae;
  18. &:hover, &:focus,
  19. &.hover, &.focus {
  20. box-shadow: 1px 0px #3a587f, 0px 1px #4171ae,
  21. 2px 1px #3a587f, 1px 2px #4171ae,
  22. 3px 2px #3a587f, 2px 3px #4171ae,
  23. 4px 3px #3a587f, 3px 4px #4171ae;
  24. }
  25. &:active,
  26. &.active {
  27. box-shadow: 1px 0px #3a587f, 0px 1px #4171ae,
  28. 2px 1px #3a587f, 1px 2px #4171ae;
  29. }
  30. }
  31. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement