Created
March 12, 2015 17:40
-
-
Save furf/d32f0166d46a1510899b to your computer and use it in GitHub Desktop.
stylus wins.
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
@import '_common' | |
/** | |
* Clock animation | |
*/ | |
@keyframes alarm | |
from | |
transform rotate(-10deg) | |
to | |
transform rotate(10deg) | |
svg.icon-clock | |
fill $MAGENTA | |
animation-name alarm | |
animation-direction alternate | |
animation-duration .1s | |
animation-iteration-count infinite | |
/** | |
* Tweet button | |
*/ | |
button.tweet | |
background $TWITTER_BLUE | |
color $WHITE | |
border 0 | |
border-radius .25em | |
// padding .5em .667em .5em .5em | |
font-weight bold | |
.icon-twitter | |
fill white | |
margin-right .333em |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment