This file contains 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
@ECHO OFF | |
REM | |
REM 01.17.2013, Requires Node.js, JSHint, Recess, and UglifyJS (installed in the path) | |
REM Run this command after node.js is installed | |
REM npm install -g less jshint recess uglify-js | |
REM | |
MKDIR bootstrap\img | |
MKDIR bootstrap\css | |
MKDIR bootstrap\js |
This file contains 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
background: linear-gradient(223deg, #00ffbd, #7d00ff, #ef583a); | |
background-size: 600% 600%; | |
-webkit-animation: Channel 42s ease infinite; | |
-moz-animation: Channel 42s ease infinite; | |
-o-animation: Channel 42s ease infinite; | |
animation: Channel 42s ease infinite; | |
@-webkit-keyframes Channel { | |
0%{background-position:81% 0%} | |
50%{background-position:20% 100%} | |
100%{background-position:81% 0%} |