Skip to content

Commit

Permalink
Now we're just being silly.
Browse files Browse the repository at this point in the history
  • Loading branch information
martindale committed Sep 22, 2015
1 parent ec9284a commit dc3d85e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions public/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,37 @@ footer {
margin-bottom: -0.2em;
vertical-align: top;
}
.navbar a.brand img:hover {
-webkit-animation-name: spin;
-webkit-animation-duration: 1300ms;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: spin;
-moz-animation-duration: 1300ms;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: spin;
-ms-animation-duration: 1300ms;
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
}
.content-well {
margin: 0 12px 12px;
}

@-moz-keyframes spin {
from { -moz-transform: rotate(0deg); }
to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
from {transform:rotate(0deg);}
to {transform:rotate(360deg);}
}

#chat-form .input-block-level {
width: 464px;
}
Expand Down

0 comments on commit dc3d85e

Please sign in to comment.