-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adding my art to the project * adding the title * added morph animation
- Loading branch information
1 parent
25b38ba
commit 45ba9eb
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link rel="stylesheet" type="text/css" href="styles.css"> | ||
<title>bryansoftware-art</title> | ||
</head> | ||
<body> | ||
<div id="main"></div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"artName": "art", | ||
"githubHandle": "bryansoftware" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
body { | ||
display: flex; | ||
justify-content: center; | ||
align-content: center; | ||
background-color: #887CAF; | ||
padding: 100px; | ||
} | ||
|
||
@keyframes morph { | ||
0% {background-color:#2B4970;} | ||
20% {background-color:#AA9239; border-radius: 25px 50px 50px 50px;} | ||
40% {background-color:#AA6339; border-radius: 50px 50px 25px 50px;} | ||
60% {background-color:#554300; border-radius: 50px 25px 50px 50px;} | ||
80% {background-color:#051B38; border-radius: 50px 50px 50px 25px;} | ||
100% {background-color:#2B4970; border-radius: 50px;} | ||
} | ||
|
||
#main { | ||
width: 100px; | ||
height: 100px; | ||
border-radius: 50px; | ||
background-color: #051B38; | ||
animation: morph 10s infinite; | ||
} |