, , , ( #sky), , . Twitter Bootstrap .
JSFiddle : http://jsfiddle.net/jakebellacera/6Zabx/
CSS, :
#sky {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 900%;
background-image: -webkit-linear-gradient(top, rgba(30,152,209,1) 0%, rgb(202, 229, 243) 11%, rgba(125, 185, 232, 0.82) 22%,
rgb(240, 231, 26) 33%, rgb(245, 86, 12) 44%, rgba(197, 127, 81, 0.82) 55%,
rgba(5, 5, 5, 1) 66%, rgb(54, 55, 56) 77%, rgb(3, 3, 3) 100%);
background-image: -moz-linear-gradient(top, rgba(30,152,209,1) 0%, rgb(202, 229, 243) 11%, rgba(125, 185, 232, 0.82) 22%,
rgb(240, 231, 26) 33%, rgb(245, 86, 12) 44%, rgba(197, 127, 81, 0.82) 55%,
rgba(5, 5, 5, 1) 66%, rgb(54, 55, 56) 77%, rgb(3, 3, 3) 100%);
-webkit-animation-name: changeSkyColor;
-webkit-animation-duration: 14s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: alternate;
-moz-animation-name: changeSkyColor;
-moz-animation-duration: 14s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;
-moz-animation-direction: alternate;
}
@-webkit-keyframes changeSkyColor /* Safari and Chrome */
{
0%{
top: 0px;
}
100% {
top: -800%;
}
}
@-moz-keyframes changeSkyColor /* Mozilla */
{
0%{
top: 0px;
}
100% {
top: -800%;
}
}