reset the template
This commit is contained in:
parent
209b0d58c3
commit
bafff0e0dc
105 changed files with 4292 additions and 10535 deletions
43
_sass/libs/_animations.scss
Normal file
43
_sass/libs/_animations.scss
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
// Animation
|
||||
@-webkit-keyframes infiniteRotate {
|
||||
0% { -webkit-transform: rotate(0deg); }
|
||||
100% { -webkit-transform: rotate(360deg); }
|
||||
}
|
||||
@-moz-keyframes infiniteRotate {
|
||||
0% { -webkit-transform: rotate(0deg); }
|
||||
100% { -webkit-transform: rotate(360deg); }
|
||||
}
|
||||
@keyframes infiniteRotate {
|
||||
0% { -webkit-transform: rotate(0deg); }
|
||||
100% { -webkit-transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
|
||||
@-webkit-keyframes backgroundBlink {
|
||||
0%{background-position:73% 0%}
|
||||
50%{background-position:28% 100%}
|
||||
100%{background-position:73% 0%}
|
||||
}
|
||||
@-moz-keyframes backgroundBlink {
|
||||
0%{background-position:73% 0%}
|
||||
50%{background-position:28% 100%}
|
||||
100%{background-position:73% 0%}
|
||||
}
|
||||
@keyframes backgroundBlink {
|
||||
0%{background-position:73% 0%}
|
||||
50%{background-position:28% 100%}
|
||||
100%{background-position:73% 0%}
|
||||
}
|
||||
|
||||
@-webkit-keyframes backgroundSize {
|
||||
0%{background-size:200% 400%}
|
||||
100%{background-size:400% 200%}
|
||||
}
|
||||
@-moz-keyframes backgroundSize {
|
||||
0%{background-size:200% 400%}
|
||||
100%{background-size:400% 200%}
|
||||
}
|
||||
@keyframes backgroundSize {
|
||||
0%{background-size:200% 400%}
|
||||
100%{background-size:400% 200%}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue