Skip to content
This repository was archived by the owner on Mar 26, 2022. It is now read-only.

Commit 3c41a48

Browse files
authored
Background animation
1 parent 4e60835 commit 3c41a48

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

main.css

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,27 @@ background-size: 800% 800%;
88
animation: Background 23s ease infinite;
99
}
1010

11+
@-webkit-keyframes Background {
12+
0%{background-position:0% 50%}
13+
50%{background-position:100% 50%}
14+
100%{background-position:0% 50%}
15+
}
16+
@-moz-keyframes Background {
17+
0%{background-position:0% 50%}
18+
50%{background-position:100% 50%}
19+
100%{background-position:0% 50%}
20+
}
21+
@-o-keyframes Background {
22+
0%{background-position:0% 50%}
23+
50%{background-position:100% 50%}
24+
100%{background-position:0% 50%}
25+
}
26+
@keyframes Background {
27+
0%{background-position:0% 50%}
28+
50%{background-position:100% 50%}
29+
100%{background-position:0% 50%}
30+
}
31+
1132
.jumbotron {
1233
padding: 1% !important;
1334
}

0 commit comments

Comments
 (0)