Skip to content

Commit

Permalink
added my art to the project (#2430)
Browse files Browse the repository at this point in the history
* added my art to the project

* added include.js file
  • Loading branch information
wcgraupmann committed Jul 1, 2024
1 parent 2f02af1 commit ce5418a
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 7 deletions.
Binary file added Art/wcgraupmann/giphy.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions Art/wcgraupmann/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="block red">Red</div>
<div class="block white">White</div>
<div class="block blue">Blue</div>
</body>
</html>
36 changes: 36 additions & 0 deletions Art/wcgraupmann/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
.block {
display: block;
text-align: center;
margin: 0 100px;
padding: 50px;
border: 1px solid black;
}

.red {
margin-top: 50px;
background-color: red;
transition: all 1s;
}

.red:hover {
transform: scale(1.25);
transition: all 1s;
}

.white {
background-color: white;
transition: all 1s;
}
.white:hover {
transform: scale(1.25);
transition: all 1s;
}

.blue {
background-color: blue;
transition: all 1s;
}
.blue:hover {
transform: scale(1.25);
transition: all 1s;
}
15 changes: 8 additions & 7 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -2943,7 +2943,7 @@ let cards = [
author: 'Abiel',
githubLink: 'https://github.com/arr199'
},
=======
{
artName: "EvaCtion",
pageLink: "./Art/EvaCtion/index.html",
author: "Gawbb",
Expand Down Expand Up @@ -3046,12 +3046,6 @@ let cards = [
author: "Christopher Spencer",
githubLink: "https://github.com/cspencernd",
},
{
pageLink: "./Art/GabrielArt/GabrielArt.html",
imageLink: "./Art/GabrielArt/ZTM.jpg",
author: "GabrielAvramescu",
githubLink: "https://github.com/GabrielAvramescu",
},
{
artName: "Pong",
pageLink: "./Art/danielalanholmes/index.html",
Expand Down Expand Up @@ -3906,6 +3900,13 @@ let cards = [
imageLink: './Art/FanisKapetanakis/Carousel.gif',
author: 'Fanis',
githubLink: 'https://github.com/KapetanakisFanis'
},
{
artName: 'Red White and Blue',
pageLink: './Art/wcgraupmann/index.html',
imageLink: './Art/wcgraupmann/giphy.gif',
author: 'Will Graupmann',
githubLink: 'https://github.com/wcgraupmann'
}
];

Expand Down

0 comments on commit ce5418a

Please sign in to comment.