-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
179 lines (175 loc) · 6.1 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
<!DOCTYPE html>
<html>
<head>
<link href="./reset.css" rel="stylesheet" />
<link href="./lqqks.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<header>
<div class="heroIntro-wrapper grid section bounds">
<h1 class="heroIntro-heading font--display textScale--hero">
<span class="heroIntro-headingText heroIntro-headingText--start"
>Oh hi,</span
>
<span class="heroIntro-headingText heroIntro-headingText--end"
>I'm Mike</span
>
</h1>
<p class="heroIntro-body runningText">
You can call me a designer or you can call me a developer - just don't
restrain me to either box. I'm most excited by collaborating with
people and organizations doing work on social justice, healthcare,
education, and the arts.
</p>
<img
src="./static/assets/portrait.png"
role="presentation"
class="heroIntro-portrait"
/>
</div>
</header>
<section class="grid grid--stack section bounds">
<aside class="grid-side grid-side--stack padBottom--lg">
<div class="summary-item">👨💻 Working at GitHub</div>
<div class="summary-item">🌆 Living in Brooklyn</div>
<div class="summary-item">
🙋♂️ Will volunteer for small non-profits
</div>
</aside>
<div class="grid-main grid-main--stack">
<div class="projects-set runningText">
<h3 class="subtleHeader">Active Projects</h3>
<article class="project">
<h4 class="font--display">
<a class="accentLink" href="https://primer.style/"
>GitHub Primer</a
>:
</h4>
<p>
Primer is GitHub's design system, but it's flexible enough to be used
by anybody. Primer comes with different color themes, and the components
are implemented in React, Rails, CSS, and Figma.
</p>
</article>
</div>
<div class="projects-set runningText">
<h3 class="subtleHeader">Past Projects</h3>
<article class="project">
<h4 class="font--display">
<a class="accentLink" href="https://github.com/dcos-labs/ui-kit"
>D2iQ component library</a
>:
</h4>
<p>
A collaboration between D2iQ's software engineers and designers.
It's designed and built for creating dashboard-like UIs with
high information density.
</p>
</article>
<article class="project">
<h4 class="font--display">
<a
class="accentLink"
href="https://github.com/meetup/swarm-design-system"
>Swarm Design System guidelines site</a
>:
</h4>
<p>
A central place for Meetup’s designers and engineers to get
information about the design system.
</p>
</article>
<article class="project">
<h4 class="font--display">
<a
class="accentLink"
href="https://github.com/meetup/meetup-web-components/"
>Meetup Web Components</a
>:
</h4>
<p>
React components that are reused across Meetup’s web apps.
</p>
</article>
<article class="project">
<h4 class="font--display">
<a
class="accentLink"
href="https://github.com/meetup/swarm-sasstools"
>Swarm Sasstools</a
>:
</h4>
<p>
A library for styling web apps at Meetup. It provides styles in
CSS and utilities for SASS.
</p>
</article>
<article class="project">
<h4 class="font--display">
<a
class="accentLink"
href="https://github.com/meetup/swarm-constants/"
>Swarm Constants</a
>:
</h4>
<p>
iOS, Android, and Web distributions for Meetup's design tokens.
</p>
</article>
</div>
</div>
</section>
<footer class="grid grid--stack section bounds">
<div class="grid-main grid-main--stack runningText">
<h4 class="textScale--big font--display">
About this site
</h4>
</div>
<div class="grid-main grid-main--stack runningText padBottom--lg">
<p>
This is a simple site bundled with
<a href="https://parceljs.org/" class="inlineLink">Parcel</a>, and
deployed with
<a href="https://www.netlify.com/" class="inlineLink">Netlify</a>. The
display typeface is
<a href="https://optimo.ch/typefaces/stanley" class="inlineLink"
>Stanley</a
>. The portrait is taken from a doodle
<a href="https://twitter.com/teeshirts" class="inlineLink"
>Kristen Stewart</a
>
(no, not that one) did during a meeting. For more details, check out
the source code on
<a
href="https://github.com/mperrotti/personal-site"
class="inlineLink"
>GitHub</a
>.
</p>
</div>
<div class="grid-side grid-side--stack footer-contact">
<span>Email:</span>
<span>
<a href="mailto:mperrotti573@gmail.com" class="inlineLink"
>mperrotti573@gmail.com</a
>
</span>
<span>LinkedIn:</span>
<span>
<a
href="https://www.linkedin.com/in/michael-perrotti-81402572/"
class="inlineLink"
>Michael Perrotti</a
>
</span>
<span>GitHub:</span>
<span
><a href="https://github.com/mperrotti" class="inlineLink"
>mperrotti</a
></span
>
</div>
</footer>
</body>
</html>