-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
388 lines (326 loc) · 9.62 KB
/
about.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>blairJdaniel Website</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
* {
box-sizing: border-box;
}
body {
background-image: linear-gradient(rgba(255, 255, 255, 0.374), rgba(255, 255, 255, 0.348)),url("https://raw.githubusercontent.com/blairjdaniel/blairjdaniel.github.io/main/about_bg.png");
background-repeat: no-repeat;
background-size: cover;
font-family: 'Montserrat', sans-serif;
line-height: 1.6;
margin: 0;
min-height: 100vh;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
h2,
h3,
a {
color: #000000;
}
a {
text-decoration: none;
}
.logo {
margin: 0;
font-size: 1.45em;
}
.main-nav {
margin-top: 5px;
}
.logo a,
.main-nav a {
padding: 10px 15px;
text-align: center;
display: block;
}
.main-nav a {
color: #000000;
font-size: .99em;
}
.main-nav a:hover {
color: #fdfeff;
}
.header {
padding-top: .5em;
padding-bottom: .5em;
border: 1px solid #a2a2a2;
background-color: #e1f2f6;
-webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
/* =================================
Media Queries
==================================== */
@media (min-width: 769px) {
.header,
.main-nav {
display: flex;
}
.header {
flex-direction: column;
align-items: center;
.header{
width: 80%;
margin: 0 auto;
max-width: 1150px;
}
}
}
@media (min-width: 1025px) {
.header {
flex-direction: row;
justify-content: space-between;
}
.dropdown {
position: relative;
}
}.dropdown-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
z-index: 1;
}
.dropdown:hover .dropdown-menu {
display: block;
}
.container {
width: 80%; /* Adjust as needed */
height: auto; /* Adjust as needed */
margin: 80px; /* This will center the container if it's less than 100% width */
}
.container p {
color: #020302; /* Replace with your desired color */
}
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgba(57, 54, 54, 0.038); /* Black w/ less opacity */
}
.modal-content {
background-color: #e1f2f600;
margin: auto;
padding: 20px;
width: 57%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: left;
}@media screen and (max-width: 600px) {
.modal-content {
width: 80%;
height: auto;
padding: 10px;
margin: 80px;
}
#myModal {
margin-top: 100px; /* adjust as needed */
width: 80%;
}
p {
display: none;
}
#myCertPU {
width: 90%; /* adjust as needed */
height: auto;
margin: 10px auto; /* centers the element horizontally */
}
}
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.socials {
/* Add your styles here */
}
.socials a {
margin: 0 10px;
color: #000000; /* Change to any color you want */
text-decoration: none;
}
.socials i {
font-size: 1em; /* Change to adjust the size of the icons */
}
#myCertPU {
display: none;
/* rest of your styles */
}
.cert-container img {
transition: transform 0.3s ease;
width: 100px; /* adjust as needed */
height: auto;
}
.cert-container img:hover {
transform: scale(5);
}
.cert {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 85px;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
.cert-content {
background-color: #fefefeb6;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
position: relative;
transform: translateY(-50%);
top: 10%;
}
.thumbnail {
transition: transform 0.3s ease;
}
.thumbnail:hover {
transform: scale(5);
}
button {
background-color: #b9beb9bd; /* change to your preferred color */
border: none;
color: rgb(0, 0, 0);
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #e6ede6; /* change to your preferred color */
}
</style>
</head>
<body>
<header class="header">
<h1 class="logo"><a href="https://blairjdaniel.github.io/">blairJdaniel</a></h1>
<div class="socials">
<a href="mailto:[email protected]"><i class="fas fa-envelope"></i></a>
<a href="https://github.com/blairjdaniel" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.twitter.com/blairjdaniel" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/blairjdaniel-1bb360258/" target="_blank"><i class="fab fa-linkedin-in"></i></a>
</div>
<ul class="main-nav">
<li><a href="about.html">About Me</a></li>
<li class="dropdown">
<a href="projects.html">Projects</a>
<ul class="dropdown-menu">
<li><a href="data_vis.html">Data Visualization</a></li>
<li><a href="machine_learning.html">Machine Learning</a></li>
<li><a href="hockey.html">Hockey</a></li>
</ul>
</li>
</ul>
</header>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<div class="container">
<p>Hey! I'm in the midst of my great career renewal! I was a Stone Mason in Vancouver, Canada for the better part of 15 years with a few years of carpentry and forestry mixed in there. In 2021 I decided to give my body a break and started courses at UBC to learn Python and work in Data Science. My focus will be on Machine Learning and Data Visualization!<br><br>
Please click on the Resume button to take a look at what I've done with my life so far! <br><br>
<button onclick="openPdf()">Resume</button>
<button onclick="openSlider()">Certification</button>
</p>
</div>
</div>
</div>
<div id="myCertPU" class="cert">
<div class="cert-content">
<span class="close_myCertPU">×</span>
<div class="cert-container">
<img id="Key Capabilites in Data Science - Python" src="https://imagedelivery.net/6Zd827ntxJzbKr8wufKU4w/f632a1a8-1e20-4fc3-3e2a-cff64811ac00/public">
<img id="Circuit Stream XR/VR" src="https://imagedelivery.net/6Zd827ntxJzbKr8wufKU4w/18edfdc8-cfac-48c2-aedd-ea2992344800/public">
<img id="LearnIntermediate JavaScript" src="https://imagedelivery.net/6Zd827ntxJzbKr8wufKU4w/6b06dd33-4797-480c-43ba-2e4a498a3600/public">
<img id="Learn HTML" src="https://imagedelivery.net/6Zd827ntxJzbKr8wufKU4w/aaf86b8f-e52e-45a8-c845-08923f0f4800/public">
<img id="Learn CSS" src="https://imagedelivery.net/6Zd827ntxJzbKr8wufKU4w/e12fc666-fe9e-48b5-da24-8e9a64751600/public">
<img id="Learn To Building Interactive Websites" src="https://imagedelivery.net/6Zd827ntxJzbKr8wufKU4w/13f43ceb-a184-4013-56d3-1b68f67a6d00/public">
<img id="Learn Code Foundations" src="https://imagedelivery.net/6Zd827ntxJzbKr8wufKU4w/488302af-9d6f-4bfa-31e1-7f1268341300/public">
<img id="Learn To Create Front End App" src="https://imagedelivery.net/6Zd827ntxJzbKr8wufKU4w/aeffff16-873b-4b9e-bcd3-2f8e02380b00/public">
<img id="Learn Command Line" src="https://imagedelivery.net/6Zd827ntxJzbKr8wufKU4w/43ba0e6b-0ec3-4441-01cc-34c9ffa5db00/public">
<img id="Learn Typescript" src="https://imagedelivery.net/6Zd827ntxJzbKr8wufKU4w/0e53bbbb-430d-437d-68c8-73112873ab00/public">
<img id="Learn GitHub" src="https://imagedelivery.net/6Zd827ntxJzbKr8wufKU4w/0e33d51e-4d7f-45b2-c2eb-96974e3b8100/public">
<img id="Learn React" src="https://imagedelivery.net/6Zd827ntxJzbKr8wufKU4w/c4f8093b-b61c-43cc-5475-aa7df26fdb00/public">
<img id="Learn Web Development" src="https://imagedelivery.net/6Zd827ntxJzbKr8wufKU4w/0b26765b-38e1-43b5-ec6f-41dfd8dde100/public">
</div>
</div>
</div>
<script>
window.onload = function() {
var modal = document.getElementById("myModal");
var span = document.getElementsByClassName("close")[0];
modal.style.display = "block";
span.onclick = function() {
modal.style.display = "none";
}
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
modal.addEventListener('click', function(event) {
if (event.target == modal) {
modal.style.display = 'none';
}
});
}
</script>
<script>
var certModal = document.getElementById("myCertPU");
var span = document.getElementsByClassName("close_myCertPU")[0];
function openPdf() {
window.open('https://github.com/blairjdaniel/blairjdaniel.github.io/blob/main/Resume.pdf', '_blank', 'width=600,height=600');
}
function openSlider() {
var certModal = document.getElementById("myCertPU");
certModal.style.display = "block";
}
span.onclick = function() {
certModal.style.display = "none";
}
window.onclick = function(event) {
if (event.target == certModal) {
certModal.style.display = "none";
}
}
</script>
</body>
</html>