forked from Dark-Matter7232/old
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
executable file
·126 lines (118 loc) · 3.34 KB
/
index.html
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-127649772-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-127649772-1');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>blacklytning ⚡</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<!-- Icon Fonts -->
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="images/favicon.ico">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
body {
font-family: 'Poppins', sans-serif;
color: #b19cd9; /* Lighter shade of purple */
background-color: #f4f4f4;
}
h1, h2 {
font-weight: 600;
animation: fadeInDown 1s ease-in-out;
}
h1 {
font-size: 2.5em;
color: #9370db; /* Slightly darker but still light purple */
}
h2 {
font-size: 1.5em;
color: #b19cd9; /* Same lighter purple as body text */
}
.social a img {
transition: transform 0.3s ease;
}
.social a img:hover {
transform: scale(1.1);
}
footer {
text-align: center;
padding: 20px;
background-color: rgba(34, 34, 34, 0.001); /* 90% transparent black */
color: #b19cd9; /* Lighter purple color for footer text */
position: fixed;
width: 100%;
bottom: 0;
left: 0;
backdrop-filter: blur(5px); /* Slight blur effect */
-webkit-backdrop-filter: blur(5px); /* Blur effect for Safari */
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.main-content figure img {
animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
</style>
</head>
<body>
<div id="particles-js">
<div class="main-content text-center">
<figure>
<br/><br/><br/>
<img src="https://blacklytning.github.io/pfp.png"
class="img-circle" width="50%" alt="Profile Picture"/>
</figure>
<h1>@blacklytning</h1>
<h2>Connect With Me</h2>
<br />
<div class="social">
<a href="https://github.com/blacklytning" target="_blank">
<img alt="Github" width="42px" src="https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/github.svg"/>
</a>
<a href="https://t.me/blacklytning" target="_blank">
<img alt="Telegram" width="42px" src="https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/telegram.svg"/>
</a>
</div>
<br/><br/>
</div>
</div>
<footer>
<p>Made with ⚡ by @blacklytning</p>
</footer>
<script src="js/particles.js"></script>
<script src="js/app.js"></script>
</body>
</html>