1+ p {
2+ text-align : center;
3+ font-size : 35px ;
4+ }
5+ marquee {
6+ margin : 10px ;
7+ /* padding: 10px; */
8+ overflow : hidden;
9+ position : relative;
10+ border : 2px solid orange;
11+ background-color : yellow;
12+ }
13+ header p : hover {
14+ font-family : "Courier New" , Courier, monospace;
15+ }
16+ .container {
17+ width : 500px ;
18+ border : 3px solid red;
19+ margin-left : 490px ;
20+ margin-top : 10px ;
21+ padding : 20px ;
22+ display : inline-block;
23+ border-radius : 8px ;
24+ justify-content : center;
25+ text-align : center;
26+ position : relative;
27+ font-size : 25px ;
28+ box-shadow : 50px 10px violet;
29+ }
30+ .box {
31+ display : inline-block;
32+ margin-top : 450px ;
33+ margin-left : 15px ;
34+ width : 150px ;
35+ height : 150px ;
36+ background-color : red;
37+ position : absolute;
38+ animation-name : moving;
39+ animation-duration : 4s ;
40+ animation-iteration-count : infinite;
41+ /* animation-delay: 0s; */
42+ }
43+ @keyframes moving{
44+ 0% {background-color : red;left : 0% ;top : 0% ;}
45+ 25% {background-color : magenta;left : 200px ;top : 0% ;}
46+ 50% {background-color : blue;left : 200px ;top : 200px ;}
47+ 75% {background-color : green;left : 0% ;top : 200px ;}
48+ 100% {background-color : red;left : 0% ;top : 0% ;}
49+ }
50+ .ball {
51+ margin-left : 600px ;
52+
53+ }
54+ div ul {
55+ display : flex;
56+ border-bottom : 8px solid black;
57+ margin-right : 400px ;
58+ margin-top : 150px ;
59+ }
60+ div ul li {
61+ width : 50px ;
62+ height : 50px ;
63+ background-color : black;
64+ list-style : none;
65+ margin : 0 10px ;
66+ border-radius : 50% ;
67+ animation : bouncy 1s linear infinite;
68+ }
69+ @keyframes bouncy{
70+ 0% {transform : translateY (0 );}
71+ 50% {transform : translateY (-150px );}
72+ 100% {transform : translateY (0 );}
73+ }
74+ # first {
75+ animation-delay : 0.2s ;
76+ background-color : # fdcb6e ;
77+ }
78+ # second {
79+ animation-delay : 0.6ss ;
80+ background-color : # ff7675 ;
81+ }
82+ # third {
83+ animation-delay : 0.4s ;
84+ background-color : # 81ecec ;
85+ }
86+ # fourth {
87+ animation-delay : 0.8s ;
88+ background-color : # 55efc4 ;
89+ }
90+ # fifth {
91+ animation-delay : 0.5s ;
92+ background-color : # fd79a8 ;
93+ }
0 commit comments