File tree Expand file tree Collapse file tree 3 files changed +54
-0
lines changed
Art/BranchAndVine-EclecticArtwork Expand file tree Collapse file tree 3 files changed +54
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html >
3
+ < head >
4
+ < title > </ title >
5
+ < link rel ="stylesheet " type ="text/css " href ="Art\BranchAndVine-EclecticArtwork\styles.css ">
6
+ </ head >
7
+ < body >
8
+ < div id ="rectangle "> </ div >
9
+ </ body >
10
+ </ html >
Original file line number Diff line number Diff line change
1
+ {
2
+ "artName" : " Eclectic Artwork" ,
3
+ "githubHandle" : " BranchAndVine"
4
+ }
Original file line number Diff line number Diff line change
1
+ div square {
2
+ width : 500px ;
3
+ height : 500px ;
4
+ background-color : aquamarine;
5
+ }
6
+
7
+ square : hover {
8
+ animation-name : do-something;
9
+
10
+ }
11
+
12
+ @keyframes do-something {
13
+ 0% {
14
+ background-color : aquamarine;
15
+ }
16
+
17
+ 15% {
18
+ background-color : aqua;
19
+ }
20
+
21
+ 30% {
22
+ background-color : rgb (43 , 134 , 195 );
23
+ }
24
+
25
+ 50% {
26
+ background-color : blue;
27
+ }
28
+
29
+ 70% {
30
+ background-color : blueviolet;
31
+ }
32
+
33
+ 90% {
34
+ background-color : purple;
35
+ }
36
+
37
+ 100% {
38
+ background-color : darkmagenta;
39
+ }
40
+ }
You can’t perform that action at this time.
0 commit comments