Advertisement
Guest User

CSS Gradient Button

a guest
Aug 24th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.85 KB | None | 0 0
  1. /*
  2. See the button: http://prntscr.com/owzl0r
  3. */
  4.  
  5. .gradient-button {
  6.     height: 50px;
  7.     outline: none;
  8.     border: none;
  9.     text-decoration: none;
  10.     text-transform: uppercase;
  11.     padding: 0px 30px;
  12.     border-radius: 3px;
  13.     -webkit-transition: all 0.3s;
  14.     transition: all 0.3s;
  15.     font-family: "Montserrat", Helvetica, Arial, sans-serif;
  16.     background: -webkit-gradient(linear, left top, right top, from(#7f82f0), to(#5ad2d4));
  17.     background: -webkit-linear-gradient(left, #7f82f0 0%, #5ad2d4 100%);
  18.     background: linear-gradient(to right, #7f82f0 0%, #5ad2d4 100%);
  19.     -webkit-box-shadow: 0px 11px 27px 0px rgba(154, 49, 188, 0.33);
  20.     box-shadow: 0px 11px 27px 0px rgba(154, 49, 188, 0.33);
  21.     color: #FFF;
  22.     font-weight: 500;
  23.     letter-spacing: 0.2px;
  24.     text-align: center;
  25.     width: 100%;
  26.     padding: 0px 28px;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement