-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
511 lines (438 loc) · 11.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
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
<!DOCTYPE html>
<html>
<head>
<title>index</title>
<meta charset="utf-8"/>
<style type="text/css">
html {
/* the line height value of 1.9 is fixed for a line height multiple of 1.4 in the text view */
font: normal 106.2%/1.9 serif;
}
body {
font-family: 'Avenir Next', Helvetica, Georgia, serif;
word-wrap: break-word;
margin: 0;
padding: 0;
border: 0;
vertical-align: baseline;
overflow:hidden;
background-color: #f2f2f2;
color: #3c3c3c;
}
/**
*
Wrappers
*
*/
#wrapper {
position: fixed;
width: 99.9%;
height: 100%;
overflow-y: scroll;
overflow-x: hidden;
font-size: 1.0em;
}
#wrapper::-webkit-scrollbar {
width: 8px;
height: 10px;
-webkit-transition: all .45s ease-in;
position: relative;
}
#wrapper::-webkit-scrollbar-button:start:decrement, #wrapper::-webkit-scrollbar-button:end:increment {
height: 0px;
display: block;
background-color: transparent;
}
#wrapper::-webkit-scrollbar-track-piece {
background-color:
transparent;
-webkit-border-radius: 6px;
}
#wrapper::-webkit-scrollbar-thumb:vertical {
height: 50px;
background-color: #c8c8c8;
-webkit-border-radius: 6px;
-webkit-transition: all .45s ease-in;
}
#content {
width: 610px;
margin: 0 auto 0 auto;
padding: 30px 0 30px 0;
}
/**
*
Headings
*
*/
h1, h2, h3, h4, h5, h6 {
text-rendering: optimizeLegibility;
line-height: 1;
margin: 0.5rem 0;
}
h1, h2, h3, h4, h5, h6 {
text-rendering: optimizeLegibility;
line-height: 1;
margin: 0.5rem 0;
}
h1,
h2,
h3 { margin-bottom: 1rem; }
h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.00rem; }
h6 { font-size: 0.85rem; }
/**
*
Paragraphs
*
*/
p {
margin: 0 0 1.5em;
}
/**
*
Block quotes
*
*/
blockquote {
margin: 0 0 1.5em;
width: 96%;
padding: 0 10px;
border-left: 3px solid #ddd;
color: #777;
}
/**
*
Code Blocks
*
*/
pre code {
word-wrap: normal;
white-space: pre-wrap;
border: none;
padding: 0;
background-color: transparent;
-webkit-border-radius: 0;
}
pre {
white-space: pre-wrap;
width: 96%;
margin-bottom: 24px;
overflow: hidden;
padding: 3px 10px;
-webkit-border-radius: 3px;
background-color: #eee;
border: 1px solid #ddd;
}
code {
white-space: nowrap;
font-family: monospace;
padding: 2px;
-webkit-border-radius: 3px;
background-color: #eee;
border: 1px solid #ddd;
}
small {
font-size: 65%;
}
/**
*
Dictionary Definition
*
*/
dt {
display: inline;
font-weight:bold;
}
dd {
display: block;
}
/**
*
Anchors
*
*/
a {
color: #308bd8;
text-decoration:none;
}
a:hover {
text-decoration: underline;
}
/**
*
Horizontal rules
*
*/
hr {
width: 100%;
margin: 3em auto;
border: 0;
color: #eee;
background-color: #ccc;
height: 1px;
-webkit-box-shadow:0px 1px 0px rgba(255, 255, 255, 0.75);
}
/**
*
Lists
*
*/
ol, ul {
list-style-position: outside;
padding-left: 0;
margin-left: 1.5em;
}
ol li, ul li {
text-align: -webkit-match-parent;
}
li p {
margin: 0.5em 0 0.5em;
}
ol ol, ol ul, ul ul, ul ol {
padding-left: 1.5em;
}
/**
*
Tables
*
*/
table {
margin-left: auto;
margin-right: auto;
margin-bottom: 24px;
border-bottom: 1px solid #ddd;
border-right: 1px solid #ddd;
border-spacing: 0;
}
table th {
padding: 3px 10px;
background-color: #eee;
border-top: 1px solid #ddd;
border-left: 1px solid #ddd;
}
table tr {
}
table td {
padding: 3px 10px;
border-top: 1px solid #ddd;
border-left: 1px solid #ddd;
}
/**
*
Images
*
*/
img {
border: none;
display: block;
margin: 1em auto;
max-width: 100%;
}
/**
*
Marks
*
*/
mark {
background: #fefec0;
padding:1px 3px;
}
/**
*
Footnotes
*
*/
.footnote {
font-size: 0.8rem;
vertical-align: super;
}
.footnotes ol {
font-weight: bold;
}
.footnotes ol li {
text-align: -webkit-match-parent;
}
.footnotes ol li p {
font-weight: normal;
}
/**
*
Figures and Captions
*
*/
caption {
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 5px;
}
figure {
display: block;
text-align: center;
}
figcaption {
font-size: 0.8rem;
font-style: italic;
}
/**
*
Custom classes
*
*/
.shadow {
-webkit-box-shadow: 0 2px 4px #999;
}
.source {
text-align: center;
font-size: 0.8em;
color: #777;
margin: -40px auto;
}
#wrapper {
width: 99.9%;
}
#content {
width: 610px;
margin-left: auto;
margin-right: auto;
}
/* Mobile support */
@media only screen and (max-device-width:1024px) {
html {
overflow: auto;
}
#wrapper {
overflow: auto;
position: relative;
}
}@media print {
/* Printing support.
* Override all printing colors to match the Light theme.
*/
img, pre, blockquote, table, figure {
page-break-inside: avoid;
}
body {
background-color:#fff;
}
#wrapper {
position: static;
overflow: hidden;
color: #000;
width: 100%;
margin: 0 auto;
}
.footnotes {
page-break-before: always;
}
#content {
margin: 0 auto;
padding: 0;
width: 98%;
}
#top-fader, #bottom-fader {
display: none;
}
hr {
color:#ddd;
background-color:#ddd;
-webkit-box-shadow:0px 1px 0px #ddd;
}
pre {
background-color:transparent;
border: 1px solid #ddd;
}
code {
background-color:transparent;
border: 1px solid #ddd;
}
blockquote {
border-left: 3px solid #ddd;
color: #000;
}
ol {
/*
* Override the list style when printing to ensure list
* markers won't get cut.
*/
list-style-position: inside;
padding-left: 0;
margin-left: 0;
}
table {
border-bottom: 1px solid #ddd;
border-right: 1px solid #ddd;
}
table th {
background-color:transparent;
border-top: 1px solid #ddd;
border-left: 1px solid #ddd;
}
table td {
border-top: 1px solid #ddd;
border-left: 1px solid #ddd;
}
mark {
background:transparent;
color: #000;
}
.source {
color: #000;
}
}
</style>
</head>
<body>
<div id="wrapper">
<div id="content">
<h1>Philly CocoaHeads</h1>
<blockquote>
<p>Sorry for the simplistic website, we are in a period of transition. If you fail to find what you are looking for, please email us at: <a href="mailto:leadership@phillycocoa.org">leadership@phillycocoa.org</a></p>
</blockquote>
<h2>Important Links</h2>
<ul>
<li><a href="http://www.meetup.com/PhillyCocoaHeads/">Meetup</a> - All event dates, times and info. Please keep your RSVPs up to date.</li>
<li><a href="https://twitter.com/phillycocoa">Twitter</a> - Event announcements and other news.</li>
<li><a href="https://vimeo.com/phillycocoa">Vimeo</a> - A video archive of some meeting talks.</li>
<li><a href="https://phillycocoa-slackin.herokuapp.com/">Slack</a> - We have our own slack with channels for <code>#code-help</code>, <code>#gig-swap</code>, <code>#consulting</code> and other more general discussions.</li>
</ul>
<h2>About Us</h2>
<p>Philly CocoaHeads is the Philadelphia area’s Mac and iOS programming group, a chapter of the worldwide <a href="http://cocoaheads.org/">CocoaHeads</a>. </p>
<p>CocoaHeads is a group devoted to discussion of Apple developer technologies. During monthly meetings and other events, members present on their projects and offer tutorials on various programming topics.</p>
<p>Our main group meetings are on the second Thursday of every month. We also hold a weekly book club and a month Side Project Saturday event. All details are available on <a href="http://www.meetup.com/PhillyCocoaHeads/">Meetup.com</a>.</p>
<p>All members are to adhere to our <a href="code-of-conduct.html">code of conduct</a>.</p>
<p>We are always looking for feedback and suggestions on what topics to discuss at our meetings. Please send email to <a href="mailto:leadership@phillycocoa.org">leadership@phillycocoa.org</a>.</p>
<h2>Sponsors</h2>
<ul>
<li>Apple - Main Meeting venue</li>
<li>PromptWorks - Side Project Saturday venue</li>
<li>Twilio - Long Term Monetary Sponsor</li>
<li>Chariot Solutions - Long Term Monetary Sponsor</li>
</ul>
<p>Philly CocoaHeads has always tried to have a very low barrier of entry for participation, thus we do not have any formal membership dues or event fees. We do however have real running costs and welcome sponsorship from local companies that benefit from our presence in the community or who are looking to reach out to Apple developers.</p>
<p>Monetary Sponsors helps us cover groups costs, including: meeting pizza and refreshments, online meeting software for book club, website and video archival costs, recording equipment, and more. Thank you very much. :) </p>
<p>Monthly Sponsorship is offered per month for $200. Should you decide to sponsor you’ll get:</p>
<ul>
<li>Ad placement on our webpage.</li>
<li>Promotion in our meeting announcements (email/twitter/Meetup)</li>
<li>An opportunity to speak at the meeting (10–15m) to plug your product or job opportunity)</li>
</ul>
<p>Payment can be made via check or we can send you a PalPal invoice which can be paid using a credit card.</p>
<p>If you are interested, please reach out to Mike Zornek, email preferred <a href="mailto:zorn@phillycocoa.org">zorn@phillycocoa.org</a> or his cell 267–563–0616.</p>
<h2>Leadership</h2>
<p>If you every have any questions or feedback, please let us know. Our main email is: <a href="mailto:leadership@phillycocoa.org">leadership@phillycocoa.org</a>. </p>
<p>You can also reach out to the individual leaders below, via Twitter or our own Slack channel.</p>
<ul>
<li><a href="http://twitter.com/zorn">Mike Zornek</a> - Main Meetings</li>
<li><a href="http://twitter.com">Stephen Tolton</a> - Side Project Saturdays</li>
<li><a href="http://twitter.com">Michael Mayer</a> - Book Club</li>
<li><a href="http://twitter.com">Curtis Herbert</a> - Videos</li>
<li><a href="http://twitter.com">Tom Piarulli</a> - Future Projects</li>
<li><a href="http://twitter.com">Kotaro Fujita</a> - Social Media</li>
</ul>
</div>
</div> <!-- End wrapper -->
</body>
</html>