Created
September 10, 2019 20:52
-
-
Save opejovic/2b405e585ecd4ff76885fca1cc1fc82c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.custom-pretty-btn { | |
background-color: transparent; | |
border: 0; | |
font-weight: 500; | |
font-size: 13px; | |
padding: 7px 14px; | |
color: rgb(94, 41, 153); | |
display: inline-block; | |
text-transform: uppercase; | |
letter-spacing: 1px; | |
cursor: pointer; | |
text-align: center; | |
-webkit-transition: all 0.5s; | |
-moz-transition: all 0.5s; | |
-ms-transition: all 0.5s; | |
-o-transition: all 0.5s; | |
transition: all 0.5s; | |
} | |
.custom-pretty-btn:hover, .custom-pretty-btn:focus { | |
color: rgb(94, 41, 153); | |
border-radius: 5px; | |
background-color:rgba(98, 63, 138, 0.198); | |
text-decoration: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment