Advertisement
gabrielbarbosa

Untitled

Aug 20th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.97 KB | None | 0 0
  1. a.light-btn.colored span {    
  2.     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  3.     text-shadow: -1px 2px 1px #5d5d5d;
  4. }
  5.  
  6. a.light-btn.colored:before {       position: absolute;
  7.     z-index: -10;
  8.     top: 0;
  9.     left: 0;
  10.     display: block;
  11.     width: 100%;
  12.     height: 100%;
  13.     content: '';
  14.     transition: all .35s ease;
  15.     background: linear-gradient(-350deg, #08c6ffcc 0, #00ff72 100%);
  16. }
  17.  
  18. a.light-btn {    
  19.     font-family: Montserrat, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  20.     font-size: 2rem;
  21.     font-weight: 700;
  22.     position: relative;
  23.     display: inline-flex;
  24.     height: 60px;
  25.     margin: 15px 0 0 0;
  26.     padding: 0 25px;
  27.     text-align: center;
  28.     text-transform: uppercase;
  29.     color: #FFFFFF;
  30.     border: 1px solid #000000;
  31.     border-bottom: 2px solid #91ff00a1;
  32.     border-radius: 5px;
  33.     background: transparent;
  34.     align-items: center;
  35.     justify-content: center;
  36. }
  37.  
  38.  
  39. Contribuição By Gabriel da Luz :D
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement