Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.45 KB | None | 0 0
  1. button {
  2.     position: absolute;
  3.     width: 200px;
  4.     left: 50%;
  5.     transform: translateX(-50%);
  6.     color: #555;
  7.     background: none;
  8.     border: none;
  9.     font-family: Lato;
  10.     font-size: 20px;
  11.     text-transform: uppercase;
  12.     cursor: pointer;
  13.     font-weight: 300;
  14.     transition: background-color 0.3s, color 0.3s;
  15. }
  16.  
  17. button:hover { font-weight: 600; }
  18. button:hover i { margin-right: 20px; }
  19.  
  20. button:focus {
  21.     outline: none;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement