Skip to content

Instantly share code, notes, and snippets.

@wilr
Last active December 19, 2015 15:58
Show Gist options
  • Save wilr/5979672 to your computer and use it in GitHub Desktop.
Save wilr/5979672 to your computer and use it in GitHub Desktop.
Dev testing button style.
@-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