Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
removed erroneous file
Browse files Browse the repository at this point in the history
  • Loading branch information
l-white committed Aug 22, 2023
2 parents 4b501fc + b378b13 commit 094dbdb
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Art/poltu/artmotion index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> My first Art Animation</title>
<link rel="stylesheet" type="text/css" href="artstyle.css">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
</head>
<body>
<h1 class="animate__animated animate__heartBeat">City Life</h1>
<div class="container">
<img src="https://pixune.com/wp-content/uploads/2023/03/world.png">
</div>

</body>
</html>
45 changes: 45 additions & 0 deletions Art/poltu/artstyle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
*{
text-align: center;
}
body{
background-color: skyblue;
}

h1{
font-family: fantasy;
font-size: 4em;
border-bottom: 2px solid pink;
width: 400px;
text-align: center;
box-shadow: 4px 4px 5px #888888;
margin-top: 10px;

}

.my-element {
display: inline-block;
margin: 0 0.5rem;

animation: heartBeat;
animation-duration: 2s;
}
.my-element {
--animate-repeat: 2;
}

img{
width: 550px;
height: 350px;
margin: 10px;
}
img:hover {
transform: scale(1.1);
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.container:hover {
transform: rotate(-15deg);
}
Binary file added Art/poltu/world.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -9445,6 +9445,13 @@ let cards = [
imageLink: './Art/wasiqs-classics/snow.gif',
author: 'Wasiq Khan',
githubLink: 'https://github.com/wasiqs-classics'
},
{
artName: 'poltu',
pageLink: './Art/poltu/artmotion index.html',
imageLink: './Art/poltu/world.gif',
author: 'neeshat',
githubLink: 'https://github.com/neeshat060708'
}
];

Expand Down

0 comments on commit 094dbdb

Please sign in to comment.