diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-01-30 18:11:55 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-01-30 18:11:55 -0500 |
| commit | 682b96ebb7210858e26157d1367b75efde9119e2 (patch) | |
| tree | 3d505bfe3563fe7cfc43c3f01dca21a67951dc2e /public/assets/stylesheets/app.css | |
| parent | a3f3f4d370da5d38c039f6cdb36223b396eeeb77 (diff) | |
follow links in profile brochure
Diffstat (limited to 'public/assets/stylesheets/app.css')
| -rwxr-xr-x | public/assets/stylesheets/app.css | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 981869b..4826aef 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -989,8 +989,16 @@ iframe.embed { } .editSubscription .gear.turning { opacity: 0.3; - -webkit-transform: rotate(360deg); - transform: rotate(360deg); + -webkit-animation: gear 1s; + animation: gear 1s; +} +@-webkit-keyframes gear { + from { transform: rotate(0deg); } + to { transform: rotate(720deg); } +} +@keyframes gear { + from { transform: rotate(0deg); } + to { transform: rotate(720deg); } } |
