Skip to content

Commit 5bf7916

Browse files
committed
stripped 3.0.1
1 parent 080026e commit 5bf7916

File tree

3 files changed

+6
-226
lines changed

3 files changed

+6
-226
lines changed

css/style.css

Lines changed: 6 additions & 196 deletions
Original file line numberDiff line numberDiff line change
@@ -1,290 +1,100 @@
1-
/*
2-
* HTML5 Boilerplate
3-
*
4-
* What follows is the result of much research on cross-browser styling.
5-
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
6-
* Kroc Camen, and the H5BP dev community and team.
7-
*
8-
* Detailed information about this CSS: h5bp.com/css
9-
*
10-
* ==|== normalize ==========================================================
11-
*/
12-
13-
14-
/* =============================================================================
15-
HTML5 display definitions
16-
========================================================================== */
1+
/* HTML5 Boilerplate */
172

183
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
194
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
205
audio:not([controls]) { display: none; }
216
[hidden] { display: none; }
227

23-
24-
/* =============================================================================
25-
Base
26-
========================================================================== */
27-
28-
/*
29-
* 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
30-
* 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
31-
*/
32-
338
html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
34-
359
html, button, input, select, textarea { font-family: sans-serif; color: #222; }
36-
3710
body { margin: 0; font-size: 1em; line-height: 1.4; }
3811

39-
/*
40-
* Remove text-shadow in selection highlight: h5bp.com/i
41-
* These selection declarations have to be separate
42-
* Also: hot pink! (or customize the background color to match your design)
43-
*/
44-
4512
::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; }
4613
::selection { background: #fe57a1; color: #fff; text-shadow: none; }
4714

48-
49-
/* =============================================================================
50-
Links
51-
========================================================================== */
52-
5315
a { color: #00e; }
5416
a:visited { color: #551a8b; }
5517
a:hover { color: #06e; }
5618
a:focus { outline: thin dotted; }
57-
58-
/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
5919
a:hover, a:active { outline: 0; }
60-
61-
62-
/* =============================================================================
63-
Typography
64-
========================================================================== */
65-
6620
abbr[title] { border-bottom: 1px dotted; }
67-
6821
b, strong { font-weight: bold; }
69-
7022
blockquote { margin: 1em 40px; }
71-
7223
dfn { font-style: italic; }
73-
7424
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
75-
7625
ins { background: #ff9; color: #000; text-decoration: none; }
77-
7826
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
79-
80-
/* Redeclare monospace font family: h5bp.com/j */
8127
pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
82-
83-
/* Improve readability of pre-formatted text in all browsers */
8428
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
8529

8630
q { quotes: none; }
8731
q:before, q:after { content: ""; content: none; }
88-
8932
small { font-size: 85%; }
90-
91-
/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
9233
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
9334
sup { top: -0.5em; }
9435
sub { bottom: -0.25em; }
9536

96-
97-
/* =============================================================================
98-
Lists
99-
========================================================================== */
100-
10137
ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
10238
dd { margin: 0 0 0 40px; }
10339
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
10440

105-
106-
/* =============================================================================
107-
Embedded content
108-
========================================================================== */
109-
110-
/*
111-
* 1. Improve image quality when scaled in IE7: h5bp.com/d
112-
* 2. Remove the gap between images and borders on image containers: h5bp.com/i/440
113-
*/
114-
11541
img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
116-
117-
/*
118-
* Correct overflow not hidden in IE9
119-
*/
120-
12142
svg:not(:root) { overflow: hidden; }
122-
123-
124-
/* =============================================================================
125-
Figures
126-
========================================================================== */
127-
12843
figure { margin: 0; }
12944

130-
131-
/* =============================================================================
132-
Forms
133-
========================================================================== */
134-
13545
form { margin: 0; }
13646
fieldset { border: 0; margin: 0; padding: 0; }
13747

138-
/* Indicate that 'label' will shift focus to the associated form element */
13948
label { cursor: pointer; }
140-
141-
/*
142-
* 1. Correct color not inheriting in IE6/7/8/9
143-
* 2. Correct alignment displayed oddly in IE6/7
144-
*/
145-
14649
legend { border: 0; *margin-left: -7px; padding: 0; white-space: normal; }
147-
148-
/*
149-
* 1. Correct font-size not inheriting in all browsers
150-
* 2. Remove margins in FF3/4 S5 Chrome
151-
* 3. Define consistent vertical alignment display in all browsers
152-
*/
153-
15450
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
155-
156-
/*
157-
* 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
158-
*/
159-
16051
button, input { line-height: normal; }
161-
162-
/*
163-
* 1. Display hand cursor for clickable form elements
164-
* 2. Allow styling of clickable form elements in iOS
165-
* 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
166-
*/
167-
16852
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }
169-
170-
/*
171-
* Re-set default cursor for disabled elements
172-
*/
173-
17453
button[disabled], input[disabled] { cursor: default; }
175-
176-
/*
177-
* Consistent box sizing and appearance
178-
*/
179-
18054
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; }
18155
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
18256
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
183-
184-
/*
185-
* Remove inner padding and border in FF3/4: h5bp.com/l
186-
*/
187-
18857
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
189-
190-
/*
191-
* 1. Remove default vertical scrollbar in IE6/7/8/9
192-
* 2. Allow only vertical resizing
193-
*/
194-
19558
textarea { overflow: auto; vertical-align: top; resize: vertical; }
196-
197-
/* Colors for form validity */
19859
input:valid, textarea:valid { }
19960
input:invalid, textarea:invalid { background-color: #f0dddd; }
20061

201-
202-
/* =============================================================================
203-
Tables
204-
========================================================================== */
205-
20662
table { border-collapse: collapse; border-spacing: 0; }
20763
td { vertical-align: top; }
20864

209-
210-
/* =============================================================================
211-
Chrome Frame Prompt
212-
========================================================================== */
213-
21465
.chromeframe { margin: 0.2em 0; background: #ccc; color: black; padding: 0.2em 0; }
21566

21667

217-
/* ==|== primary styles =====================================================
218-
Author:
219-
========================================================================== */
220-
221-
222-
22368

22469

22570

22671

22772

22873

22974

230-
231-
232-
233-
234-
235-
236-
/* ==|== media queries ======================================================
237-
EXAMPLE Media Query for Responsive Design.
238-
This example overrides the primary ('mobile first') styles
239-
Modify as content requires.
240-
========================================================================== */
241-
24275
@media only screen and (min-width: 35em) {
243-
/* Style adjustments for viewports that meet the condition */
244-
}
245-
246-
76+
24777

248-
/* ==|== non-semantic helper classes ========================================
249-
Please define your styles before this section.
250-
========================================================================== */
78+
}
25179

252-
/* For image replacement */
25380
.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; *line-height: 0; }
25481
.ir br { display: none; }
255-
256-
/* Hide from both screenreaders and browsers: h5bp.com/u */
25782
.hidden { display: none !important; visibility: hidden; }
258-
259-
/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
26083
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
261-
262-
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
26384
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
264-
265-
/* Hide visually and from screenreaders, but maintain layout */
26685
.invisible { visibility: hidden; }
267-
268-
/* Contain floats: h5bp.com/q */
26986
.clearfix:before, .clearfix:after { content: ""; display: table; }
27087
.clearfix:after { clear: both; }
27188
.clearfix { *zoom: 1; }
27289

273-
274-
275-
/* ==|== print styles =======================================================
276-
Print styles.
277-
Inlined to avoid required HTTP connection: h5bp.com/r
278-
========================================================================== */
279-
28090
@media print {
281-
* { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
91+
* { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; }
28292
a, a:visited { text-decoration: underline; }
28393
a[href]:after { content: " (" attr(href) ")"; }
28494
abbr[title]:after { content: " (" attr(title) ")"; }
285-
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */
95+
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
28696
pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
287-
thead { display: table-header-group; } /* h5bp.com/t */
97+
thead { display: table-header-group; }
28898
tr, img { page-break-inside: avoid; }
28999
img { max-width: 100% !important; }
290100
@page { margin: 0.5cm; }

index.html

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,20 @@
11
<!doctype html>
2-
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
32
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
43
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
54
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
6-
<!-- Consider adding a manifest.appcache: h5bp.com/d/Offline -->
75
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
86
<head>
97
<meta charset="utf-8">
10-
11-
<!-- Use the .htaccess and remove these lines to avoid edge case issues.
12-
More info: h5bp.com/i/378 -->
138
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
14-
159
<title></title>
1610
<meta name="description" content="">
1711

18-
<!-- Mobile viewport optimized: h5bp.com/viewport -->
1912
<meta name="viewport" content="width=device-width">
20-
21-
<!-- Place favicon.ico and apple-touch-icon.png in the root directory: mathiasbynens.be/notes/touch-icons -->
22-
2313
<link rel="stylesheet" href="css/style.css">
2414

25-
<!-- More ideas for your <head> here: h5bp.com/d/head-Tips -->
26-
27-
<!-- All JavaScript at the bottom, except this Modernizr build.
28-
Modernizr enables HTML5 elements & feature detects for optimal performance.
29-
Create your own custom Modernizr build: www.modernizr.com/download/ -->
3015
<script src="js/libs/modernizr-2.5.2.min.js"></script>
3116
</head>
3217
<body>
33-
<!-- Prompt IE 6 users to install Chrome Frame. Remove this if you support IE 6.
34-
chromium.org/developers/how-tos/chrome-frame-getting-started -->
3518
<!--[if lt IE 7]><p class=chromeframe>Your browser is <em>ancient!</em> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p><![endif]-->
3619
<header>
3720

@@ -44,19 +27,12 @@
4427
</footer>
4528

4629

47-
<!-- JavaScript at the bottom for fast page loading -->
48-
49-
<!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline -->
5030
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
5131
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.1.min.js"><\/script>')</script>
5232

53-
<!-- scripts concatenated and minified via build script -->
5433
<script src="js/plugins.js"></script>
5534
<script src="js/script.js"></script>
56-
<!-- end scripts -->
5735

58-
<!-- Asynchronous Google Analytics snippet. Change UA-XXXXX-X to be your site's ID.
59-
mathiasbynens.be/notes/async-analytics-snippet -->
6036
<script>
6137
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
6238
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];

js/plugins.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
// usage: log('inside coolFunc', this, arguments);
2-
// paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
31
window.log = function f(){ log.history = log.history || []; log.history.push(arguments); if(this.console) { var args = arguments, newarr; args.callee = args.callee.caller; newarr = [].slice.call(args); if (typeof console.log === 'object') log.apply.call(console.log, console, newarr); else console.log.apply(console, newarr);}};
4-
5-
// make it safe to use console.log always
62
(function(a){function b(){}for(var c="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,log,markTimeline,profile,profileEnd,time,timeEnd,trace,warn".split(","),d;!!(d=c.pop());){a[d]=a[d]||b;}})
73
(function(){try{console.log();return window.console;}catch(a){return (window.console={});}}());
84

95

10-
// place any jQuery/helper plugins in here, instead of separate, slower script files.
11-

0 commit comments

Comments
 (0)