-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 1.76 KB
/
index.html
File metadata and controls
54 lines (53 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>
<head>
<title>Solar Eclipse / Mujahid Ali</title>
</head>
<body>
<style>
body{
background-color:#000;
height:50vh;
display:grid;
place-items: center;
}
.circle{
height:200px;
width:200px;
border-radius:50%;
background-color:#ff9540;
position:relative;
box-shadow: 0 0 10px #ff4500, 0 0 40px #ff4500, 0 0 80px #ff4500;
}
.circle::after{
content: "";
position: absolute;
height: 200px;
width: 200px;
border-radius: 50%;
background-color: #000;
animation: eclipse 3s linear infinite alternate;
}
@keyframes eclipse{
0%{
transform: translate(-50px,50px) scale(0.9);
}
50%,75%{
transform: translate(0px,0px) scale(1.02);
box-sizing: 0 0 10px #f9f3f2, 0 0 80px 8px #c79388;
}
100%{
transform: translate(50px,-50px) scale(0.9);
box-shadow: none;
}
}
</style>
<h1 style="color:#fff">Solar Eclipse</h1>
<h4 style="color:#fff">HTML / CSS</h4>
<br>
<br>
<div class="circle"></div>
<br><br><br><br><br><br>
<h5><a href="https://www.behance.net/mujahidali92">Behance: Mujahid Ali</a></h5>
<h5><a href="https://github.com/mujahidbcs92">Github: Mujahid Ali</a></h5>
</body>
</html>