Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added my art to the project #2430

Merged
merged 2 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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