Skip to content

Commit 17b23a0

Browse files
adding my very beginner project (#2925)
1 parent 540ec24 commit 17b23a0

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"artName": "Eclectic Artwork",
3+
"githubHandle": "BranchAndVine"
4+
}
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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+
}

0 commit comments

Comments
 (0)