This repository was archived by the owner on Feb 7, 2018. It is now read-only.
Changing the animation heart on footer :D#530
Open
andre-mendes wants to merge 1 commit intocustomelements:masterfrom
Open
Changing the animation heart on footer :D#530andre-mendes wants to merge 1 commit intocustomelements:masterfrom
andre-mendes wants to merge 1 commit intocustomelements:masterfrom
Conversation
|
I think the CSS should replace what's here rather than being in the HTML. Also, this is probably a space saving way to achieve the same end. .credits .love {
top: 4px;
width: 8px;
height: 8px;
background: #e74c3c;
position: relative;
display: inline-block;
margin: 5px;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
transform: rotate(-45deg);
animation: heart-pulse .5s infinite alternate ease-in;
}
.credits .love:after,
.credits .love:before {
content: "";
width: 8px;
height: 8px;
position: absolute;
border-radius: 50%;
background: #e74c3c
}
.credits .love:after {
top: -5px;
}
.credits .love:before {
right: -5px
}
@-webkit-keyframes heart-pulse {
to {-webkit-transform: rotate(-45deg) scale(1.2)}
}
@-moz-keyframes heart-pulse {
to {-moz-transform: rotate(-45deg) scale(1.2)}
}
@keyframes heart-pulse {
to {transform: rotate(-45deg) scale(1.2)}
} |
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I changed the animation heart of your signature. He did not throbbed with elegance on Linux :(
:D I did the hearth with css, hope you like it :)