Skip to content

Commit a881a6b

Browse files
authored
Index
html
1 parent 34e58f8 commit a881a6b

File tree

1 file changed

+122
-0
lines changed

1 file changed

+122
-0
lines changed

index.html

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Rask</title>
7+
8+
<!-- (Не) Рабочий CDN Font Awesome -->
9+
<link
10+
rel="stylesheet"
11+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
12+
integrity="sha512-Tw6gMfHZT9LoO1QyFhJ1KJj+2cLZsK1RnGk9V3Tn91u8BBJvVJ3WjTPYqJtp1sQtvx1Xpi17kvu9T8V9b5j3eg=="
13+
crossorigin="anonymous"
14+
referrerpolicy="no-referrer"
15+
/>
16+
17+
<style>
18+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');
19+
20+
* {
21+
user-select: none; /* запрет выделения текста */
22+
-webkit-tap-highlight-color: transparent; /* убирает белую полоску */
23+
}
24+
25+
body {
26+
margin: 0;
27+
height: 100vh;
28+
background: url("https://i.postimg.cc/5t4GkRNN/imagine.jpg") no-repeat center center/cover;
29+
font-family: 'Poppins', sans-serif;
30+
display: flex;
31+
justify-content: center;
32+
align-items: center;
33+
color: white;
34+
}
35+
36+
.card {
37+
background: rgba(30, 30, 30, 0.6);
38+
backdrop-filter: blur(20px);
39+
border-radius: 20px;
40+
padding: 30px;
41+
text-align: center;
42+
width: 360px;
43+
box-shadow: 0 0 30px rgba(0,0,0,0.3);
44+
animation: fadeIn 1.2s ease-in-out;
45+
}
46+
47+
@keyframes fadeIn {
48+
from { opacity: 0; transform: translateY(10px); }
49+
to { opacity: 1; transform: translateY(0); }
50+
}
51+
52+
.avatar {
53+
width: 100px;
54+
height: 100px;
55+
border-radius: 50%;
56+
object-fit: cover;
57+
border: 3px solid rgba(255,255,255,0.5);
58+
}
59+
60+
h1 {
61+
margin: 15px 0 5px;
62+
color: #4285f4;
63+
}
64+
65+
p.status {
66+
font-size: 14px;
67+
color: #ddd;
68+
margin-bottom: 10px;
69+
}
70+
71+
.location {
72+
font-size: 13px;
73+
opacity: 0.8;
74+
}
75+
76+
.socials {
77+
display: flex;
78+
justify-content: center;
79+
gap: 18px;
80+
margin-top: 25px;
81+
}
82+
83+
.socials a {
84+
color: white;
85+
text-decoration: none;
86+
font-size: 26px;
87+
transition: transform 0.25s ease, color 0.25s ease;
88+
}
89+
90+
.socials a:hover {
91+
transform: scale(1.2);
92+
}
93+
94+
/* Хуйня не рабочая */
95+
.fa-youtube:hover { color: #ff0000; }
96+
.fa-discord:hover { color: #5865f2; }
97+
.fa-twitch:hover { color: #9146ff; }
98+
.fa-github:hover { color: #aaa; }
99+
.fa-telegram:hover { color: #29b6f6; }
100+
.fa-tiktok:hover { color: #ff0050; }
101+
</style>
102+
</head>
103+
104+
<body>
105+
<div class="card">
106+
<img class="avatar" src="https://i.pinimg.com/736x/4d/72/02/4d7202d6c7502c1701af029f51f8ac35.jpg" alt="avatar">
107+
<h1>Rask</h1>
108+
<p class="status">Just test site. TODO - make normal badges</p>
109+
<p class="location">📍 Night City</p>
110+
111+
<div class="socials">
112+
<!-- ССылки -->
113+
<a href="#" title="YouTube"><i class="fab fa-youtube"></i></a>
114+
<a href="#" title="Discord"><i class="fab fa-discord"></i></a>
115+
<a href="#" title="Twitch"><i class="fab fa-twitch"></i></a>
116+
<a href="#" title="GitHub"><i class="fab fa-github"></i></a>
117+
<a href="https://t.me/joskoeprogramirivanie" title="Telegram"><i class="fab fa-telegram"></i></a>
118+
<a href="#" title="TikTok"><i class="fab fa-tiktok"></i></a>
119+
</div>
120+
</div>
121+
</body>
122+
</html>

0 commit comments

Comments
 (0)