Skip to content

Commit

Permalink
Add my artwork (#2385)
Browse files Browse the repository at this point in the history
  • Loading branch information
fi1na committed Oct 29, 2023
1 parent 9f44d85 commit df5a1b2
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 0 deletions.
Binary file added Art/fi1na/Loading-spinner.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions Art/fi1na/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Loading Animation</title>
</head>
<body>
<div class="loading-spinner"></div>
</body>
</html>
32 changes: 32 additions & 0 deletions Art/fi1na/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
body {
font-family: Arial, sans-serif;
background-color: #f6378f;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}

.loading-spinner {
width: 50px;
height: 50px;
border: 8px solid transparent;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
border-radius: 50%;
animation: spin 1s linear infinite;
background: transparent;
border-image: linear-gradient(109.6deg, rgb(0, 0, 0) 11.2%, rgb(11, 132, 145) 91.1%);
border-image-slice: 1;
}

@keyframes spin {
0% {
transform: rotate(0deg);
}

100% {
transform: rotate(360deg);
}
}
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -2641,6 +2641,13 @@ let cards = [
author: 'Marcus',
githubLink: 'https://github.com/marjsky'
},
{
artName: '360 Degree gradient loading spinner',
pageLink: './Art/fi1na/index.html',
imageLink: './Art/fi1na/Loading-spinner.gif',
author: 'Fiona Dash',
githubLink: 'https://github.com/fi1na'
},
];

/* -------------------------------------------------------------------------- */
Expand Down

0 comments on commit df5a1b2

Please sign in to comment.