-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (64 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<title>My development journey</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/showdown.min.js"></script>
<script src="script.js"></script>
<style>
body {
background-color: #121212;
color: #E0E0E0;
font-family: Arial, sans-serif;
}
hr {
margin: 2em 0;
border: 0.5px solid #ccc;
}
#cv-container {
margin-left: 15%;
margin-right: 15%;
}
img, video {
border-radius: 12px;
margin: auto;
display: block;
max-width: 80%;
max-height: 80%;
clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.media-item {
display: flex;
align-items: center;
justify-content: flex-end;
flex-wrap: nowrap;
animation: slide-in-right 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
p {
color: rgb(201, 201, 201);
}
/* Add styles for h1, h2, h3, ... */
h1, h2, h3, h4 {
text-shadow: 2px 2px 4px #0b1b25;
font-family: monospace;
}
@keyframes slide-in-right {
0% {
transform: translateX(1000px);
}
100% {
transform: translateX(0);
}
}
</style>
</head>
<body>
<div class="badge-base LI-profile-badge" data-locale="en_US" data-size="medium" data-theme="dark" data-type="VERTICAL" data-vanity="ilya-katsapin-72a6001b3" data-version="v1"><a class="badge-base__link LI-simple-link" href="https://ru.linkedin.com/in/ilya-katsapin-72a6001b3?trk=profile-badge">Ilya Katsapin</a></div>
<div id="cv-container">
</div>
<hr>
<div id="media-container">
</div>
</body>
</html>