-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
241 lines (222 loc) · 7.5 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>GeorgeTailor</title>
<link rel="icon" href="https://avatars1.githubusercontent.com/u/6958936?v=4" type="image/png">
<style>
:root {
--bg-color: rgb(10, 10, 10);
--text-color: #f2ebe2;
--background-image: linear-gradient(90deg, rgba(10, 10, 10, 0.6), rgb(10, 10, 10, 1)), url("https://images.unsplash.com/photo-1553748024-d1b27fb3f960?w=500&h=1000&q=80&fit=crop");
}
html {
background: var(--bg-color);
}
body {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
margin: 0;
padding: 3rem;
color: var(--text-color);
font-family: 'Avenir', Calibri, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
background: var(--background-image) left top;
background-size: 330px auto;
background-repeat: no-repeat;
box-sizing: border-box;
}
#profile {
display: flex;
flex-wrap: wrap;
text-align: left;
gap: 2rem;
font-weight: bold;
height: min-content;
}
#profile_img {
width: 180px;
height: 180px;
border-radius: 5px;
background: url(https://avatars.githubusercontent.com/u/6958936?s=400&u=2092646ceaf2917023ed053d60f5af0eaeb17974&v=4) center;
background-size: cover !important;
}
#userbio {
display: flex;
flex-direction: column;
gap: 0.5rem;
font-size: 1.6rem;
width: 100%;
}
#username {
display: flex;
flex-direction: column;
font-size: 1.2rem;
gap: 0.5rem;
justify-content: flex-end;
width: calc(100% - 180px - 2rem);
}
a {
text-decoration: none;
font-weight: bold;
font-size: inherit;
color: inherit;
}
a:hover {
text-decoration: underline;
}
#projects {
display: flex;
flex-wrap: wrap;
gap: 2rem;
height: max-content;
width: min-content;
flex-grow: 1;
}
#projects h1 {
width: 100%;
}
#projects section {
display: flex;
flex-direction: column;
padding: 2rem;
border-radius: 2px;
border: 1px solid rgb(0, 0, 0, 0.08);
box-shadow: 0px 0px 0px rgb(0, 0, 0, 0);
background: rgb(20, 20, 20);
width: min-content;
min-width: calc(210px + 2rem);
flex-grow: 1;
gap: 1rem;
box-sizing: border-box;
}
#projects section .bottom_section {
margin-top: auto;
}
h2 {
font-size: 24px;
padding: 0px 1px;
word-wrap: break-word;
margin-top: 0;
}
.about_section {
font-size: 1.2rem;
font-weight: bold;
}
details summary {
cursor: pointer;
}
@media (max-width: 800px) {
body {
padding: 1rem;
}
}
</style>
</head>
<body>
<div id="profile">
<div id="profile_img"></div>
<div id="username">
<span>Yuriy Kravets</span>
<a href="https://github.com/GeorgeTailor">@GeorgeTailor</a>
</div>
<div id="userbio">
<span>Many years of experince in backend (mostly Java and its ecosystem) and frontend (VanillaJS/Angular).
Worked in different branches: banking, e-commerce, medical, recruiting.</span>
<span>Interested in languages and working with audio.</span>
</div>
<div id="about">
<details>
<summary>Useful links</summary>
<ul>
<li><a href="https://github.com/GeorgeTailor" target="_blank">Github</a></li>
<li><a href="https://stackoverflow.com/users/2942615/yuriy-kravets"
target="_blank">stackoverflow</a></li>
<li><a href="https://www.linkedin.com/in/~yuriy-kravets-28762097/" target="_blank">LinkedIn</a></li>
</ul>
</details>
</div>
</div>
<div id="projects">
<h1>Projects I've worked on</h1>
<section>
<a href="https://www.slangzone.net/" target="_blank">
<h2>SlangZone.net</h2>
</a>
<div class="about_section">
Website for ukrainian slang.
</div>
<div class="bottom_section">
<details>
<summary>Backend</summary>
<ul>
<li>NodeJS</li>
<li>Express</li>
<li>Postgres</li>
</ul>
</details>
<details>
<summary>Frontend</summary>
<ul>
<li>VanillaJS</li>
<li>ESModules</li>
<li>CSS Variables</li>
<li>Web Components</li>
</ul>
</details>
</div>
</section>
<section>
<a href="https://demiurg.app/" target="_blank">
<h2>demiurg.app</h2>
</a>
<div class="about_section">
Web application for notes and tablature edition and playback. Heavily relies on Web Audio API.
</div>
<div class="bottom_section">
<details>
<summary>Backend</summary>
<ul>
<li>Serverless functions</li>
<li>Cloudflare D1</li>
<li>Cloudflare KV</li>
</ul>
</details>
<details>
<summary>Frontend</summary>
<ul>
<li>VanillaJS</li>
<li>ESModules</li>
<li>CSS Variables</li>
<li>Web Audio API</li>
<li>Lots of math</li>
<li>Lots of algorithms</li>
</ul>
</details>
</div>
</section>
<section>
<a href="https://zooplus.github.io/zoo-web-components/" target="_blank">
<h2 class="section_title">Zoo web components</h2>
</a>
<div class="about_section">
Set of extendable, reusable web-components which can be used in any modern UI framework (or
without any). <a href="https://zooplus.github.io/zoo-web-components-docs/index.html" target="_blank">
Link to docs.
</a>
</div>
<div class="bottom_section">
<details>
<summary>Frontend</summary>
<ul>
<li>VanillaJS</li>
<li>VanillaCSS</li>
</ul>
</details>
</div>
</section>
</div>
</body>
</html>