-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathindex.html
174 lines (152 loc) · 4.53 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colin Marc</title>
<style>
body {
margin: 0 2em;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: .8em;
}
ul {
padding: 0;
margin: 0;
list-style: none;
}
h1 {
font-size: 4em;
margin-bottom: 0;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
h2 {
margin: 0;
}
#container {
display: flex;
flex-direction: column;
justify-content: center;
}
#me {
width: 100%;
max-width: 300px;
vertical-align: bottom;
display: block;
}
#left {
margin-top: -2em;
padding: 0 25%;
border-bottom: .5em solid black;
box-shadow: 0 .55em 5px -5px rgba(0, 0, 0, 0.2);
text-align: center;
}
#right {
display: flex;
flex-direction: column;
flex-wrap: wrap;
margin-bottom: 2em;
text-align: center;
}
#right > div {
margin-top: 1em;
}
@media screen and (min-width: 940px) {
#container {
flex-direction: row;
box-shadow: 0 .55em 5px -5px rgba(0, 0, 0, 0.2);
}
#me {
width: 100%;
max-width: none;
overflow-y: hidden;
display: inline;
}
#left {
width: 50%;
margin: 0;
padding: 0;
margin-right: 2em;
border-bottom: none;
box-shadow: none;
}
#right {
margin-top: 3em;
margin-bottom: 0;
text-align: inherit;
}
@media screen and (min-height: 560px) {
body, html {
height: 100%;
overflow-y: hidden;
}
#container {
border-bottom: .5em solid black;
}
}
}
a,
a:link,
a:visited,
a:hover,
a:active {
color: teal;
text-decoration: inherit;
font-weight: inherit;
}
</style>
</head>
<body>
<div id="container">
<div id="left"><img id="me" src="me_bw.jpg"></div>
<div id="right">
<h1>Colin Marc</h1>
<div>
<h2>contact</h2>
<ul>
<li><a href="mailto:hi@colinmarc.com?Subject=HI">hi@colinmarc.com</a></li>
<li><a href="https://twitter.com/colinmarc">twitter</a></li>
<li><a href="https://github.com/colinmarc">github</a></li>
<li><a href="https://keybase.io/colinmarc">keybase</a></li>
</ul>
</div>
<div>
<h2>words</h2>
<ul>
<li><a href="/words.html">Words</a> - a poem</li>
<li><a href="http://philome.la/colinmarc/my-job">my job</a> - a twine poem</li>
<li><a href="/ink.html">She Must Accept Some Swirling Ink</a> - a poem</li>
</ul>
</div>
<div>
<h2>code</h2>
<ul>
<li><a href="http://sequins.io">sequins</a> - a key/value store for storing static batch data</li>
<li><a href="http://hg.python.org/cpython/rev/2514a4e2b3ce">python issue #14204</a> - adding NPN support to cpython</li>
<li><a href="http://philome.la">philome.la</a> - free twine hosting</li>
</ul>
</div>
<div>
<h2>friends</h2>
<ul>
<li><a href="https://stripe.com">Stripe</a> - May 2012 to December 2016</li>
<li><a href="https://www.recurse.com/">Recurse Center</a> - batch of winter 2012</li>
<li>various contract work since forever</li>
</ul>
</div>
<div>
I'm currently looking for contract or consulting work; <br/> feel free to <a href="mailto:hi@colinmarc.com?Subject=HAS%20JERB">reach out!</a>
</div>
</div>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-42532946-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>