-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
110 lines (109 loc) · 3.76 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
<!DOCTYPE html>
<html lang="en" class="invert-dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Chris Lee</title>
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/css/tachyons.min.css"
/>
<link rel="stylesheet" href="style.css" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(["_setAccount", "UA-19583432-1"]);
_gaq.push(["_trackPageview"]);
(function() {
var ga = document.createElement("script");
ga.type = "text/javascript";
ga.async = true;
ga.src =
("https:" == document.location.protocol
? "https://ssl"
: "http://www") + ".google-analytics.com/ga.js";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body class="bg-near-white dark-gray">
<nav class="fixed top-0 bg-near-white gill-sans f6 ttu w-100 z-1">
<ul
class="fw6 list ph4 ph5-ns flex-ns flex-row cl-mw center items-center nowrap overflow-x-auto"
>
<li class="dib mr4 flex-auto">
<a href="/" class="link dark-gray hover-cl-blue pv3"
><span class="tracked-mega">Chris Le</span>e</a
>
</li>
<li class="dib mr4">
<a href="/work" class="link dark-gray hover-cl-blue pv3"
><span class="tracked-mega">Wor</span>k</a
>
</li>
<li class="dib mr4">
<a href="/posts" class="link dark-gray hover-cl-blue pv3"
><span class="tracked-mega">Writin</span>g</a
>
</li>
<li class="dib bb bw1 dark-gray pv3" style="margin-top: 2px;">
<span class="tracked-mega">Abou</span>t
</li>
</ul>
</nav>
<main class="charter f6 lh-copy cl-mw center pa4 pt6 pa5-ns pt6-ns">
<p class="f4 f3-ns lh-large mb4">
I love the <strong class="fw6">gray areas</strong>,
<strong class="fw6">connections</strong>, and
<strong class="fw6">mysteries</strong> of life.
</p>
<div class="flex-l flex-row-reverse items-start">
<img src="/images/photo.jpg" class="w-100" style="max-width: 24rem;" />
<div class="flex-auto pt3 pt0-l pr4-l">
<p class="fw6 mb2">I'm particularly interested in:</p>
<ul class="mb4 list list-hyphen">
<li class="mv2">
Creativity and innovation
</li>
<li class="mv2">
Constant learning and curiosity
</li>
<li class="mv2">
How people think and make decisions
</li>
<li class="mv2">
Technology as helpful and harmful
</li>
<li class="mv2">
The beauty of the natural world
</li>
<li class="mv2">
Big existential, spiritual questions
</li>
<li class="mv2">
Deep, empathetic relationships across boundaries
</li>
</ul>
<p class="fw6 mb2">
How I experience the world is shaped by the often contrasting
influences of:
</p>
<ul class="list list-hyphen">
<li class="mv2">
My Christian faith (liturgical and evangelical influences)
</li>
<li class="mv2">
My work and community in Silicon Valley
</li>
<li class="mv2">
My Asian American (Malaysian Chinese) identity
</li>
<li class="mv2">
My personality (Enneagram 5w6 - analytical/introverted)
</li>
</ul>
</div>
</div>
</main>
</body>
</html>