-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #362 from RAHULBAWA777/patch-71
Mine Craft Spider Loader
- Loading branch information
Showing
3 changed files
with
70 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,20 @@ | ||
|
||
# Miecraft Sider Spinner | ||
|
||
## 🚀 About Me | ||
I'm a full stack developer...you can follow me here -https://github.com/RAHULBAWA777 | ||
|
||
|
||
## Run Locally | ||
|
||
Clone the project | ||
|
||
|
||
Start the live server | ||
|
||
|
||
## Used By | ||
|
||
This project is used by the following companies: | ||
|
||
-https://github.com/Dezenix/frontend-html-css-js |
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,15 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="style.css" /> | ||
<title>MineCraft Spider Loader</title> | ||
</head> | ||
<body> | ||
<div class="crust"> | ||
<div class="core"></div> | ||
</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,35 @@ | ||
body{ | ||
background-color: black; | ||
} | ||
.crust { | ||
margin-top: 20%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.crust .core { | ||
width: calc(170px / 7); | ||
height: calc(70px / 7); | ||
background-color: #acff1d; | ||
color: #acff1d; | ||
box-shadow: 20px 20px 0 0, -20px -20px 0 0, 20px -20px 0 0, -20px 20px 0 0, | ||
0 20px 0 0, 20px 0 0 0, -20px 0 0 0, 0 -20px 0 0; | ||
animation: revolve 4s linear infinite; | ||
} | ||
|
||
@keyframes revolve { | ||
50% { | ||
box-shadow: 20px 20px 0px 0px, -20px -20px 0px 0px, 20px -20px 0px 0px, | ||
-20px 20px 0px 0px, 0px 10px 0px 0px, 10px 0px 0px 0px, -10px 0px 0px 0px, | ||
0px -10px 0px 0px; | ||
} | ||
75% { | ||
box-shadow: 20px 20px 0px 0px, -20px -20px 0px 0px, 20px -20px 0px 0px, | ||
-20px 20px 0px 0px, 0px 10px 0px 0px, 10px 0px 0px 0px, -10px 0px 0px 0px, | ||
0px -10px 0px 0px; | ||
} | ||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} |