Skip to content

Commit 9dc3d48

Browse files
committed
gangsta Glowers files added
1 parent a0f58f6 commit 9dc3d48

File tree

3 files changed

+95
-0
lines changed

3 files changed

+95
-0
lines changed

Gangsta Glowers/README.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
# Gangsta Glowers
3+
This is a cool css effects using animation colorfully shadows and font awesome library icons.
4+
5+
## 🚀 About Me
6+
I'm a full stack developer...you can follow me here -https://github.com/RAHULBAWA777
7+
8+
9+
## Run Locally
10+
11+
Clone the project
12+
13+
14+
Start the live server
15+
16+
17+
## Used By
18+
19+
This project is used by the following companies:
20+
21+
- https://github.com/Dezenix/frontend-html-css-js

Gangsta Glowers/index.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title> Gangsta Glowers</title>
8+
<link rel="stylesheet" href="style.css">
9+
</head>
10+
<body>
11+
<div class="box">
12+
<i class="fa-solid fa-skull-crossbones" id="skull"></i>
13+
<i class="fa-solid fa-bomb" id="bomb"></i>
14+
<i class="fa-solid fa-virus" id="virus"></i>
15+
<i class="fa-solid fa-motorcycle" id="bike"></i>
16+
<a href="https://github.com/RAHULBAWA777" style="position:absolute; bottom: 0; color: aliceblue;text-decoration: none;">Made with ❤ by RAHULBAWA</a>
17+
</div>
18+
19+
<script src="https://kit.fontawesome.com/fa1e66a5e4.js" crossorigin="anonymous"></script>
20+
</body>
21+
</html>

Gangsta Glowers/style.css

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
}
5+
body {
6+
height: 100vh;
7+
width: 100vw;
8+
background: #121316;
9+
}
10+
.box {
11+
height: 100vh;
12+
width: 100vw;
13+
display: flex;
14+
justify-content: center;
15+
align-items: center;
16+
}
17+
#skull,
18+
#bomb,
19+
#virus,
20+
#bike {
21+
border-radius: 10px;
22+
padding: 20px 20px;
23+
margin: 0 60px;
24+
font-size: 10rem;
25+
background-color: #000000;
26+
color: #fff;
27+
box-shadow: 4px 4px 4px #00000080, 10px 1px 17px #00000080,
28+
4px 4px 10px #00000080, 4px 4px 3px #00000080, inset 4px 4px 10px #00000080,
29+
inset 4px 4px 10px #00000080, inset 4px 4px 10px #00000080,
30+
inset 4px 4px 10px #00000080;
31+
text-shadow: 0 0 50px #0a78ff, 0 0 100px #0073ff, 0 0 150px #0073ff,
32+
0 0 200px #0073ff;
33+
animation: blink 2s linear infinite;
34+
}
35+
#bomb {
36+
animation-delay: 0.4s;
37+
}
38+
#virus {
39+
animation-delay: 0.6s;
40+
}
41+
#bike {
42+
animation-delay: 0.2s;
43+
}
44+
45+
@keyframes blink {
46+
from {
47+
filter: hue-rotate(0deg);
48+
}
49+
to {
50+
filter: hue-rotate(360deg);
51+
}
52+
}
53+

0 commit comments

Comments
 (0)