-
Notifications
You must be signed in to change notification settings - Fork 0
/
project-2048.html
232 lines (202 loc) · 5.09 KB
/
project-2048.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content=" FILL ME IN ">
<meta name="author" content=" FILL ME IN ">
<title>Cameron Pittman: Portfolio</title>
<!-- Hmm, what is the impact of web fonts on speed? Measure it... -->
<!-- <link href="//fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet"> -->
<!--<link href="css/style.css" rel="stylesheet">
<link href="css/print.css" rel="stylesheet">-->
<style>
@media print {
* {
background: transparent !important;
color: black !important;
text-shadow: none !important;
filter: none !important;
-ms-filter: none !important;
}
a,
a:visited {
color: #444 !important;
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
@page {
margin: 0.5cm;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
}
html {
font-size: 100%;
overflow-y: scroll;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: none;
}
body {
margin: 0;
font-size: 14px;
line-height: 1.61;
font-weight: 400;
}
body,
button,
input,
select,
textarea {
font-family: 'Open Sans', sans-serif;
color: #333;
}
a {
color: #12C;
}
a:visited {
color: #61C;
}
a:focus {
outline: thin dotted;
}
a:hover,
a:active {
color: #c00;
outline: 0;
}
b,
strong {
font-weight: bold;
}
pre,
code {
font-family: monospace, monospace;
font-size: 1em;
}
ul,
ol {
margin: 1em 0;
padding: 0 0 0 20px;
}
img {
border: 0;
max-width: 100%;
}
body {
background: #fff;
}
header,
footer,
.container {
max-width: 45em;
margin: 0 auto;
}
header {
padding: 0 0.5em;
color: #C90B0B;
}
header img {
border-radius: 40px;
float: left;
}
header p {
font-size: 1.5em;
font-weight: bold;
padding-left: 4em;
}
header p span {
font-size: 0.8em;
font-weight: normal;
}
.hero {
padding: 2em;
background-color: #f8f8f8;
font-size: 1.2em;
border-bottom: 1px solid #ccc;
border-top: 1px solid #ccc;
}
.content {
padding: 1em 1em;
}
.content li {
list-style-type: none;
font-size: 1.1em;
}
li img {
float: left;
padding-right: 1em;
}
li p {
font-size: 0.9em;
font-style: italic;
}
footer {
padding: 0 0.5em;
border-top: 1px solid #ccc;
}
footer span {
float: right;
font-style: italic;
}
/* Smartphones (portrait) */
@media only screen and (max-width: 480px) {
body {
font-size: 12px;
}
header p {
padding-left: 4.5em;
}
}
@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:local('Open Sans'), local('OpenSans'), url(http://fonts.gstatic.com/s/opensans/v10/K88pR3goAWT7BTt32Z01m5Bw1xU1rKptJj_0jans920.woff2) format('woff2');unicode-range:U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;}
</style>
<script>
(function (w, g) {
w['GoogleAnalyticsObject'] = g;
w[g] = w[g] || function () {
(w[g].q = w[g].q || []).push(arguments)
};
w[g].l = 1 * new Date();
})(window, 'ga');
// Optional TODO: replace with your Google Analytics profile ID.
ga('create', 'UA-XXXX-Y');
ga('send', 'pageview');
</script>
<script src="//www.google-analytics.com/analytics.js" async></script>
<script src="js/perfmatters.js" async max-age=86400 ></script>
</head>
<body>
<header>
<a href="/"><img src="img/compressedImage/profilepic.jpg"></a>
<p>Cameron Pittman
<br><span>Course Developer</span></p>
</header>
<div class="container">
<div class="hero"> <strong>2048 is awesome!</strong> I loved making my own 2048 with Andy and Sarah. Below, I'm showing off a screenshot from the Udacity version of 2048. </div>
<div class="content"> <img class="img-responsive" src="img/compressedImage/2048.png">
<p>Bacon ipsum dolor sit amet et pork belly porchetta excepteur dolor, laborum laboris magna labore dolore in fugiat beef ribs. Fugiat leberkas nulla do kevin dolore. Flank hamburger dolor swine prosciutto sirloin pig jerky sunt consequat pariatur. Mollit meatloaf nostrud laboris shoulder excepteur velit officia meatball nisi turkey. Nulla jowl spare ribs, et drumstick magna frankfurter.</p>
<p>Venison spare ribs dolor tri-tip duis turkey. Ut chicken proident ribeye est flank, sed frankfurter. Kielbasa exercitation ullamco leberkas. Landjaeger turkey culpa, tail short loin consectetur salami venison in corned beef eiusmod qui ad leberkas. Tri-tip adipisicing frankfurter ut sirloin rump consectetur. Chuck sint filet mignon labore eiusmod nulla. Venison shankle pork, consectetur nisi bacon spare ribs anim meatball sausage ball tip labore aute reprehenderit adipisicing.</p>
</div>
<footer>
<p>© Web Performance 2014 <span id="crp-stats"></span></p>
</footer>
</body>
</html>