-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
170 lines (147 loc) · 6.22 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!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">
<title>haven of fallenull</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Ubuntu&display=swap" rel="stylesheet">
<!--@import url('https://fonts.googleapis.com/css2?family=Iosevka:wght@400;500;700&display=swap');-->
<style>
body {
background: url('background.jpg') no-repeat center center fixed;
background-size: cover;
color: #e0e0e0;
font-family: 'IBM Plex Mono', monospace;
font-weight: 400;
font-style: normal;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
position: relative;
}
/* Затемняющий слой */
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8); /* Прозрачность затемнения */
z-index: 1;
}
.container {
border: 2px solid #9686ea;
padding: 20px;
width: 80%;
max-width: 600px;
text-align: left;
animation: fadeIn 2s forwards;
opacity: 0; /* Изначально невидимый */
z-index: 2; /* Поверх затемнения */
position: relative;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.blinking-cursor {
white-space: nowrap;
overflow: hidden;
animation: typing 1s steps(30) forwards;
word-wrap: break-word; /* Разрешаем перенос слов */
word-break: break-word; /* Чтобы длинные слова переносились */
max-width: 100%; /* Ограничиваем ширину */
box-sizing: border-box; /* Чтобы padding не выходил за пределы */
font-family: 'IBM Plex Mono', monospace; /* Шрифт */
}
@keyframes typing {
from { width: 0; } /* Начинаем с ширины 0 */
to { width: 100%; } /* Заканчиваем на полной ширине текста */
}
@keyframes blink {
from, to { background-color: transparent; }
50% { background-color: #9686ea; }
}
a {
color: #9686ea;
text-decoration: none;
font-size: 1.5rem;
display: block;
margin: 10px 0;
word-wrap: break-word; /* Разрешаем перенос слов */
word-break: break-word; /* Чтобы длинные слова переносились */
max-width: 100%; /* Ограничиваем ширину */
box-sizing: border-box; /* Чтобы padding не выходил за пределы */
transition: opacity 0.3s ease-in-out;
}
h1 {
color: #9686ea;
text-decoration: none;
font-size: 2rem;
display: block;
margin: 10px 0;
word-wrap: break-word; /* Разрешаем перенос слов */
word-break: break-word; /* Чтобы длинные слова переносились */
max-width: 100%; /* Ограничиваем ширину */
box-sizing: border-box; /* Чтобы padding не выходил за пределы */
transition: opacity 0.3s ease-in-out;
}
p {
color: #9686ea;
text-decoration: none;
font-size: 0.6rem;
display: block;
margin: 10px 0;
word-wrap: break-word; /* Разрешаем перенос слов */
word-break: break-word; /* Чтобы длинные слова переносились */
max-width: 100%; /* Ограничиваем ширину */
box-sizing: border-box; /* Чтобы padding не выходил за пределы */
transition: opacity 0.3s ease-in-out;
}
a::before {
content: "– ";
}
a:hover {
opacity: 0.7;
}
a:active {
opacity: 0.5;
}
</style>
</head>
<body>
<div class="container" id="linkContainer">
<h1 class="blinking-cursor">haven of fallenull</h1>
<a href="https://github.com/fallenull" target="_blank" class="blinking-cursor">Git</a>
<a href="https://t.me/fallenull" target="_blank" class="blinking-cursor">Telegram</a>
<a href="https://x.com/fallenull" target="_blank" class="blinking-cursor">X<br></a>
<a href="https://fallenull.github.io/aboutme.html" target="_blank" class="blinking-cursor">About me</a>
<p class="blinking-cursor"><br><br><br>f: "What's it like to hold the hand of someone you love? Interlinked."<br>
n: "Interlinked."<br>
f: "Did they teach you how to feel finger to finger? Interlinked."<br>
n: "Interlinked."<br>
f: "Do you long for having your heart interlinked? Interlinked."<br>
n: "Interlinked."<br>
f: "What's it like to hold your child in your arms? Interlinked."<br>
n: "Interlinked."</p>
</div>
<script>
document.querySelectorAll('a').forEach(link => {
link.addEventListener('click', (e) => {
e.preventDefault();
document.body.style.animation = 'fadeOut 1s';
setTimeout(() => {
window.location.href = e.target.href;
}, 900);
});
});
</script>
</body>
</html>