-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
185 lines (177 loc) · 5.83 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
<!DOCTYPE html>
<html>
<head>
<title>Big: Presentations for Busy Messy Hackers</title>
<meta charset='utf-8'>
<meta property="og:title" content="Big"/>
<meta property="og:description" content="Presentations for Busy Messy Hackers"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<style>
body {
color:#222;
max-width:640px;
margin:20px auto 50px auto;
font:normal 14px/25px 'Helvetica Neue', sans-serif;
}
h1 { font-size:140px; line-height:40px;margin-top:140px; }
h1, h2 {
text-align:center;
}
.head {
color:#fff;
background:#000;
padding:10px;
text-align:right;
border:1px solid #000;
}
.content {
margin:40px 50px 0 50px;
}
.buttons {
text-align:center;
padding:20px 0 20px 0;
}
.button {
color:#fff;
background:#56a;
padding:10px 20px;
font-size:18px;
border-radius:3px;
text-decoration:none;
margin:0 10px;
border-bottom:1px solid #AEB7DD;
border-right:1px solid #AEB7DD;
}
.button:first-child {
background:#586;
border-bottom:1px solid #A8D8B3;
border-right:1px solid #A8D8B3;
}
a {
color:blue;
text-decoration:none;
}
a:hover { text-decoration:underline; }
ul { list-style-type:none; margin:0; padding:0;}
li { width:50%;float:left;box-sizing:border-box;border:5px solid #fff; }
li a {
color: #000;
display:block;
text-decoration:none;
padding:15px;
background:#fff;
transition:background 100ms linear;
text-align:center;
border-radius:2px;
background:#efefef;
}
li a:hover { background:#558866; color:#fff; text-decoration:none; }
.clearfix:after {
content:'.';
display:block;
height:0;
clear:both;
visibility:hidden;
}
.clearfix { display:inline-block; }
pre {
padding:10px;
background:#e0efe0;
}
.gh {
display:block;
text-align:right;
}
</style>
</head>
<body>
<a class='gh' href='https://github.com/tmcw/big'>(fork || star) on github</a>
<div class='head'>
<iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=tmcw&repo=big&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100px" height="20px"></iframe>
<h1>Big</h1>
<div class='buttons'>
<a class='button' href='https://github.com/tmcw/big/archive/gh-pages.zip'>Download</a>
<a class='button' href='./demo.html'>Demo</a>
</div>
<h2>Presentations for Busy Messy Hackers</h2>
</div>
<div class='content'>
<p>
Big is a minimal presentation system with a simple rule: the text on every
slide is embiggened until it fills your screen.
It works pretty okay with focused presentations and plenty of narration,
and it will make long bullet-lists look terrible.
</p>
<p>
You create presentations with big by downloading it and editing simple
HTML: <code>div</code> elements become slides. You style your presentations
with CSS, just like web pages.
</p>
<p>Then you can either post your slides
to GitHub to share with the world, or boot up a local development
server to conference-wifi-proof them.
</p>
</div>
<div class='content'>
<h2>Quick Start</h2>
<pre>curl -L http://bit.ly/big-quick > index.html
python -m SimpleHTTPServer</pre>
<p>(then open <a href='http://localhost:8000/'>localhost:8000</a>)</p>
</div>
<div class='content'>
<h2>Examples</h2>
<ul class='clearfix'>
<li><a href="http://exposedata.com/talk/d3-geo/#0">d3-geo</a>
<li><a href="http://bdon.org/talk-2013-1-29.html#0">THREE.js + geo</a>
<li><a href="http://macwright.org/presentations/beyond/">FOSS4G: Beyond</a></li>
<li><a href="http://macwright.org/presentations/projections/#0">Project It Yourself</a></li>
<li><a href="http://macwright.org/presentations/carto/">Carto</a></li>
<li><a href="http://maxogden.github.com/slides/empirejs/index.html#0">javascript for cats</a>
<li><a href="http://macwright.org/presentations/wherecampboston/">WhereCamp Boston</a>
<li><a href="http://macwright.org/presentations/foss4g/1.html">foss4g</a></li>
<li><a href="http://isaacjg.github.io/intro_to_python/python_presentation/python_presentation.html#0">python</a></li>
</ul>
</div>
<div class='content'>
<h2>Plugins and Riffs</h2>
<p>
Don't like typing HTML? You can use <a href='http://macwright.org/biggie'>biggie</a>
if you want and type Markdown instead. <a href='https://github.com/harperreed/bigpy'>bigpy</a> does
it in Python.
</p>
<p>
Don't want to spend time designing stuff? <a href='https://github.com/tmcw/big-themes'>big-themes</a>
has some precooked styles.
</p>
<p>
Want something else? Check out <a href='https://github.com/jed/weenote'>Weenote</a>,
<a href='http://github.com/mbostock/stack'>stack</a>, and <a href='https://github.com/schacon/showoff'>showoff</a>.
There sure are options nowadays.
</p>
</div>
<div class='content'>
<h2>Nerd Stuff</h2>
<p>
Big is 1.1KB and 46 lines long at last count. It's written in vanilla JavaScript
with no frameworks and no hijinks. It supports touch and permalinks
to individual slide pages. It's licensed PD and is ready for you to hack
it into something beautiful or monstrous.
</p>
<p>
Big is awesome because awesome folks have helped out, and you can too:
<a href='https://github.com/tmcw/big'>fork big on GitHub!</a>
</p>
</div>
<script type="text/javascript">
var _gauges = _gauges || [];
(function() {
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '4e36eb1ef5a1f53d6f000001');
t.src = '//secure.gaug.es/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
</script>