Guest User

Untitled

a guest
Oct 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1.  
  2. * { box-sizing: border-box; }
  3. html {
  4.  
  5. font: 19px/2px Calibri;
  6. background: #fff;
  7. min-height:100%;
  8. text-align: center;
  9. padding-top: 200px;
  10. font-smoothing: antialiased;
  11. }
  12. a { text-decoration: none; }
  13. .button {
  14. display: inline-block;
  15. margin: 0 auto;
  16. padding: 15px 30px 20px 30px;
  17. position: relative;
  18. box-sizing: border-box;
  19. background: linear-gradient(top, #9DAEB5, #93a6ae);
  20. color: #fefefe;
  21. font-weight: bold;
  22. font-size: 16px;
  23. text-shadow: 0 2px 0 rgba(0,0,0,0.1);
  24. border-radius: 5px;
  25. border: 1px solid #2b3539;
  26. box-shadow: 0 3px 5px rgba(0,0,0,0.3),
  27. inset 0 1px 0 0 rgba(255,255,255,0.5),
  28. inset 0 -5px 0 0 rgba(0,0,0,0.2);
  29. transition: all 0.2s ease-in-out;
  30. }
  31. .button:hover {
  32. background: linear-gradient(top, #b0bec4, #a7b6bc);
  33. }
  34. .button:active {
  35. padding: 15px 30px;
  36. box-shadow: 0 1px 3px rgba(0,0,0,0.3),
  37. inset 0 1px 0 0 rgba(255,255,255,0.5);
  38. transform: translate(0, 5px);
  39. }
Add Comment
Please, Sign In to add comment