Skip to content

Commit 21e4625

Browse files
committed
Reset all styling.
1 parent 089a7de commit 21e4625

File tree

6 files changed

+77
-415
lines changed

6 files changed

+77
-415
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_site

app.css

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
/* http://meyerweb.com/eric/tools/css/reset/
2+
* v2.0 | 20110126
3+
* License: none (public domain)
4+
* */
5+
6+
html, body, div, span, applet, object, iframe,
7+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
8+
a, abbr, acronym, address, big, cite, code,
9+
del, dfn, em, img, ins, kbd, q, s, samp,
10+
small, strike, strong, sub, sup, tt, var,
11+
b, u, i, center,
12+
dl, dt, dd, ol, ul, li,
13+
fieldset, form, label, legend,
14+
table, caption, tbody, tfoot, thead, tr, th, td,
15+
article, aside, canvas, details, embed,
16+
figure, figcaption, footer, header, hgroup,
17+
menu, nav, output, ruby, section, summary,
18+
time, mark, audio, video {
19+
margin: 0;
20+
padding: 0;
21+
border: 0;
22+
font-size: 100%;
23+
font: inherit;
24+
vertical-align: baseline;
25+
26+
}
27+
/* HTML5 display-role reset for older browsers */
28+
article, aside, details, figcaption, figure,
29+
footer, header, hgroup, menu, nav, section {
30+
display: block;
31+
32+
}
33+
body {
34+
line-height: 1;
35+
36+
}
37+
ol, ul {
38+
list-style: none;
39+
40+
}
41+
blockquote, q {
42+
quotes: none;
43+
44+
}
45+
blockquote:before, blockquote:after,
46+
q:before, q:after {
47+
content: '';
48+
content: none;
49+
50+
}
51+
table {
52+
border-collapse: collapse;
53+
border-spacing: 0;
54+
55+
}

index.html

+21-27
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,40 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta http-equiv="X-UA-Compatible" content="chrome=1">
6-
<title>Hackathon Hackers by HackathonHackers</title>
5+
<title>Hackathon Hackers | Make Awesome Things</title>
76

8-
<link rel="stylesheet" href="stylesheets/styles.css">
9-
<link rel="stylesheet" href="stylesheets/github-light.css">
7+
<link rel="stylesheet" href="/app.css">
108
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
119
<!--[if lt IE 9]>
1210
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
1311
<![endif]-->
1412
</head>
13+
1514
<body>
16-
<div class="wrapper">
17-
<header>
15+
<div class="page-container">
16+
<header class="page-header">
1817
<h1>Hackathon Hackers</h1>
19-
<p>Make Awesome Things</p>
20-
18+
<h2>Make Awesome Things</h2>
19+
</header>
2120

22-
<p class="view"><a href="https://github.com/HackathonHackers">View My GitHub Profile</a></p>
21+
<main>
22+
<p>In the meantime, check out the <a href="http://hh.gd">Hackathon Hackers Facebook Group</a>.</p>
23+
</main>
2324

24-
</header>
25-
<section>
26-
<h3>
27-
<a id="coming-very-very-soon" class="anchor" href="#coming-very-very-soon" aria-hidden="true"><span class="octicon octicon-link"></span></a>Coming very, very soon...</h3>
28-
<p>In the meantime, check out the <a href="http://hh.gd">Hackathon Hackers Facebook Group</a>.</p>
29-
</section>
3025
<footer>
31-
<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small> &mdash; Thanks to <a href="https://twitter.com/teddy">@teddy</a> for the awesome domain name.</p>
26+
<p>Released under <a href="https://creativecommons.org/licenses/by/4.0/">CC-BY-4.0</a> &middot; Thanks to <a href="https://twitter.com/teddy">@teddy</a> for the awesome domain name.</p>
3227
</footer>
3328
</div>
34-
<script src="javascripts/scale.fix.js"></script>
35-
<script type="text/javascript">
36-
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
37-
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
38-
</script>
39-
<script type="text/javascript">
40-
try {
41-
var pageTracker = _gat._getTracker("UA-66243923-1");
42-
pageTracker._trackPageview();
43-
} catch(err) {}
44-
</script>
4529

30+
<script>
31+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
32+
(i[r].q=i[r].q||[]).push(arguments)
33+
},i[r].l=1*new Date();a=s.createElement(o),
34+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
35+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
36+
37+
ga('create', 'UA-66243923-1', 'auto');
38+
ga('send', 'pageview');
39+
</script>
4640
</body>
4741
</html>

javascripts/scale.fix.js

-17
This file was deleted.

stylesheets/github-light.css

-116
This file was deleted.

0 commit comments

Comments
 (0)