Last active
December 19, 2015 15:58
-
-
Save wilr/5979672 to your computer and use it in GitHub Desktop.
Dev testing button style.
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
@-webkit-keyframes blinker { | |
from { color: #ff0; } | |
to { color: #fff; } | |
} | |
.devOnly { | |
color: #ff0 !important; | |
font-family: "Comic Sans",'Comic Sans MS', Textile, cursive !important; | |
outline: 2px solid purple !important; | |
padding: 5px !important; | |
background: #f00 !important; | |
text-shadow: 0 0 5px #000 !important; | |
-webkit-animation-name: blinker; | |
-webkit-animation-iteration-count: infinite; | |
-webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0); | |
-webkit-animation-duration: 1s; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment