Last active
February 9, 2018 02:18
-
-
Save NaokiStark/bdd2399d36951121d8aef93238f49a60 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
/* Buttons :3 */ | |
.btn{ | |
background:#f0f0f0; | |
border:none; | |
color:#707070; | |
padding:11px 15px; | |
border-radius:3px; | |
cursor:pointer; | |
outline:none; | |
border-bottom:solid 4px #e0e0e0; | |
position:relative; | |
font-weight:bolder; | |
letter-spacing:.8px; | |
font-family: inherit; | |
} | |
.btn:active{ | |
top:2px; | |
border-bottom:solid 3px #e0e0e0; | |
} | |
.btn.r{ | |
background:#F95859; | |
color:#f0f0f0; | |
border-color:#E43838; | |
} | |
.btn.b{ | |
background:#3498db; | |
color:#f0f0f0; | |
border-color:#277FBA; | |
} | |
.btn.g{ | |
background:#16a085; | |
color:#f0f0f0; | |
border-color:#1C7765; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment