Skip to content

Commit 8bdba2b

Browse files
Initial Commit after Development. Ready to push up to github hosting.
0 parents  commit 8bdba2b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+5490
-0
lines changed

404.html

+157
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Page Not Found :(</title>
6+
<style>
7+
::-moz-selection {
8+
background: #b3d4fc;
9+
text-shadow: none;
10+
}
11+
12+
::selection {
13+
background: #b3d4fc;
14+
text-shadow: none;
15+
}
16+
17+
html {
18+
padding: 30px 10px;
19+
font-size: 20px;
20+
line-height: 1.4;
21+
color: #737373;
22+
background: #f0f0f0;
23+
-webkit-text-size-adjust: 100%;
24+
-ms-text-size-adjust: 100%;
25+
}
26+
27+
html,
28+
input {
29+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
30+
}
31+
32+
body {
33+
max-width: 500px;
34+
_width: 500px;
35+
padding: 30px 20px 50px;
36+
border: 1px solid #b3b3b3;
37+
border-radius: 4px;
38+
margin: 0 auto;
39+
box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff;
40+
background: #fcfcfc;
41+
}
42+
43+
h1 {
44+
margin: 0 10px;
45+
font-size: 50px;
46+
text-align: center;
47+
}
48+
49+
h1 span {
50+
color: #bbb;
51+
}
52+
53+
h3 {
54+
margin: 1.5em 0 0.5em;
55+
}
56+
57+
p {
58+
margin: 1em 0;
59+
}
60+
61+
ul {
62+
padding: 0 0 0 40px;
63+
margin: 1em 0;
64+
}
65+
66+
.container {
67+
max-width: 380px;
68+
_width: 380px;
69+
margin: 0 auto;
70+
}
71+
72+
/* google search */
73+
74+
#goog-fixurl ul {
75+
list-style: none;
76+
padding: 0;
77+
margin: 0;
78+
}
79+
80+
#goog-fixurl form {
81+
margin: 0;
82+
}
83+
84+
#goog-wm-qt,
85+
#goog-wm-sb {
86+
border: 1px solid #bbb;
87+
font-size: 16px;
88+
line-height: normal;
89+
vertical-align: top;
90+
color: #444;
91+
border-radius: 2px;
92+
}
93+
94+
#goog-wm-qt {
95+
width: 220px;
96+
height: 20px;
97+
padding: 5px;
98+
margin: 5px 10px 0 0;
99+
box-shadow: inset 0 1px 1px #ccc;
100+
}
101+
102+
#goog-wm-sb {
103+
display: inline-block;
104+
height: 32px;
105+
padding: 0 10px;
106+
margin: 5px 0 0;
107+
white-space: nowrap;
108+
cursor: pointer;
109+
background-color: #f5f5f5;
110+
background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1);
111+
background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1);
112+
background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1);
113+
background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1);
114+
-webkit-appearance: none;
115+
-moz-appearance: none;
116+
appearance: none;
117+
*overflow: visible;
118+
*display: inline;
119+
*zoom: 1;
120+
}
121+
122+
#goog-wm-sb:hover,
123+
#goog-wm-sb:focus {
124+
border-color: #aaa;
125+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
126+
background-color: #f8f8f8;
127+
}
128+
129+
#goog-wm-qt:hover,
130+
#goog-wm-qt:focus {
131+
border-color: #105cb6;
132+
outline: 0;
133+
color: #222;
134+
}
135+
136+
input::-moz-focus-inner {
137+
padding: 0;
138+
border: 0;
139+
}
140+
</style>
141+
</head>
142+
<body>
143+
<div class="container">
144+
<h1>Not found <span>:(</span></h1>
145+
<p>Sorry, but the page you were trying to view does not exist.</p>
146+
<p>It looks like this was the result of either:</p>
147+
<ul>
148+
<li>a mistyped address</li>
149+
<li>an out-of-date link</li>
150+
</ul>
151+
<script>
152+
var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2),GOOG_FIXURL_SITE = location.host;
153+
</script>
154+
<script src="//linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
155+
</div>
156+
</body>
157+
</html>

CHANGELOG.md

+133
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
### HEAD
2+
3+
### 4.3.0 (September 10, 2013)
4+
5+
* Use one apple-touch-icon instead of six ([#1367](https://github.com/h5bp/html5-boilerplate/issues/1367)).
6+
* Move font-related declarations from `body` to `html` ([#1411](https://github.com/h5bp/html5-boilerplate/issues/1411)).
7+
* Update to Apache Server Configs 1.1.0.
8+
* Add `initial-scale=1` to the viewport `meta` ([#1398](https://github.com/h5bp/html5-boilerplate/pull/1398)).
9+
* Vertical centering for audio-, canvas- and video-tags ([#1326](https://github.com/h5bp/html5-boilerplate/issues/1326)).
10+
* Remove Google Chrome Frame related code ([#1379](https://github.com/h5bp/html5-boilerplate/pull/1379), [#1396](https://github.com/h5bp/html5-boilerplate/pull/1396)).
11+
* Update to Google Universal Analytics ([#1347](https://github.com/h5bp/html5-boilerplate/issues/1347)).
12+
* Update to jQuery 1.10.2.
13+
* Update to Normalize.css 1.1.3.
14+
15+
### 4.2.0 (April 8, 2013)
16+
17+
* Remove Google Analytics protocol check ([#1319](https://github.com/h5bp/html5-boilerplate/pull/1319)).
18+
* Update to Normalize.css 1.1.1.
19+
* Update Apache configurations to include the latest changes in the canonical
20+
[`.htaccess`](https://github.com/h5bp/server-configs-apache) file.
21+
* Use a protocol relative URL for the 404 template script.
22+
* Update to jQuery 1.9.1.
23+
24+
### 4.1.0 (January 21, 2013)
25+
26+
* Update to Normalize.css 1.1.0.
27+
* Update to jQuery 1.9.0.
28+
29+
### 4.0.3 (January 12, 2013)
30+
31+
* Use 32x32 favicon.ico ([#1286](https://github.com/h5bp/html5-boilerplate/pull/1286)).
32+
* Remove named function expression in plugins.js ([#1280](https://github.com/h5bp/html5-boilerplate/pull/1280)).
33+
* Adjust CSS image-replacement code ([#1239](https://github.com/h5bp/html5-boilerplate/issues/1239)).
34+
* Update HiDPI example media query ([#1127](https://github.com/h5bp/html5-boilerplate/issues/1127)).
35+
36+
### 4.0.2 (December 9, 2012)
37+
38+
* Update placeholder icons.
39+
* Update to Normalize.css 1.0.2.
40+
* Update to jQuery 1.8.3.
41+
42+
### 4.0.1 (October 20, 2012)
43+
44+
* Further improvements to `console` method stubbing ([#1206](https://github.com/h5bp/html5-boilerplate/issues/1206), [#1229](https://github.com/h5bp/html5-boilerplate/pull/1229)).
45+
* Update to jQuery 1.8.2.
46+
* Update to Modernizr 2.6.2.
47+
* Minor additions to the documentation.
48+
49+
### 4.0.0 (August 28, 2012)
50+
51+
* Improve the Apache compression configuration ([#1012](https://github.com/h5bp/html5-boilerplate/issues/1012), [#1173](https://github.com/h5bp/html5-boilerplate/issues/1173)).
52+
* Add a HiDPI example media query ([#1127](https://github.com/h5bp/html5-boilerplate/issues/1127)).
53+
* Add bundled docs ([#1154](https://github.com/h5bp/html5-boilerplate/issues/1154)).
54+
* Add MIT license ([#1139](https://github.com/h5bp/html5-boilerplate/issues/1139)).
55+
* Update to Normalize.css 1.0.1.
56+
* Separate Normalize.css from the rest of the CSS ([#1160](https://github.com/h5bp/html5-boilerplate/issues/1160)).
57+
* Improve `console.log` protection ([#1107](https://github.com/h5bp/html5-boilerplate/issues/1107)).
58+
* Replace hot pink text selection color with a neutral color.
59+
* Change image replacement technique ([#1149](https://github.com/h5bp/html5-boilerplate/issues/1149)).
60+
* Code format and consistency changes ([#1112](https://github.com/h5bp/html5-boilerplate/issues/1112)).
61+
* Rename CSS file and rename JS files and subdirectories.
62+
* Update to jQuery 1.8 ([#1161](https://github.com/h5bp/html5-boilerplate/issues/1161)).
63+
* Update to Modernizr 2.6.1 ([#1086](https://github.com/h5bp/html5-boilerplate/issues/1086)).
64+
* Remove uncompressed jQuery ([#1153](https://github.com/h5bp/html5-boilerplate/issues/1153)).
65+
* Remove superfluous inline comments ([#1150](https://github.com/h5bp/html5-boilerplate/issues/1150)).
66+
67+
### 3.0.2 (February 19, 2012)
68+
69+
* Update to Modernizr 2.5.3.
70+
71+
### 3.0.1 (February 08, 2012).
72+
73+
* Update to Modernizr 2.5.2 (includes html5shiv 3.3).
74+
75+
### 3.0.0 (February 06, 2012)
76+
77+
* Improvements to `.htaccess`.
78+
* Improve 404 design.
79+
* Simplify JS folder structure.
80+
* Change `html` IE class names changed to target ranges rather than specific versions of IE.
81+
* Update CSS to include latest normalize.css changes and better typographic defaults ([#825](https://github.com/h5bp/html5-boilerplate/issues/825)).
82+
* Update to Modernizr 2.5 (includes yepnope 1.5 and html5shiv 3.2).
83+
* Update to jQuery 1.7.1.
84+
* Revert to async snippet for the Google Analytics script.
85+
* Remove the ant build script ([#826](https://github.com/h5bp/html5-boilerplate/issues/826)).
86+
* Remove Respond.js ([#816](https://github.com/h5bp/html5-boilerplate/issues/816)).
87+
* Remove the `demo/` directory ([#808](https://github.com/h5bp/html5-boilerplate/issues/808)).
88+
* Remove the `test/` directory ([#808](https://github.com/h5bp/html5-boilerplate/issues/808)).
89+
* Remove Google Chrome Frame script for IE6 users; replace with links to Chrome Frame and options for alternative browsers.
90+
* Remove `initial-scale=1` from the viewport `meta` ([#824](https://github.com/h5bp/html5-boilerplate/issues/824)).
91+
* Remove `defer` from all scripts to avoid legacy IE bugs.
92+
* Remove explicit Site Speed tracking for Google Analytics. It's now enabled by default.
93+
94+
### 2.0.0 (August 10, 2011)
95+
96+
* Change starting CSS to be based on normalize.css instead of reset.css ([#500](https://github.com/h5bp/html5-boilerplate/issues/500)).
97+
* Add Respond.js media query polyfill.
98+
* Add Google Chrome Frame script prompt for IE6 users.
99+
* Simplify the `html` conditional comments for modern browsers and add an `oldie` class.
100+
* Update clearfix to use "micro clearfix".
101+
* Add placeholder CSS MQs for mobile-first approach.
102+
* Add `textarea { resize: vertical; }` to only allow vertical resizing.
103+
* Add `img { max-width: 100%; }` to the print styles; prevents images being truncated.
104+
* Add Site Speed tracking for Google Analytics.
105+
* Update to jQuery 1.6.2 (and use minified by default).
106+
* Update to Modernizr 2.0 Complete, Production minified (includes yepnope, html5shiv, and Respond.js).
107+
* Use `Modernizr.load()` to load the Google Analytics script.
108+
* Much faster build process.
109+
* Add build script options for CSSLint, JSLint, JSHint tools.
110+
* Build script now compresses all images in subfolders.
111+
* Build script now versions files by SHA hash.
112+
* Many `.htaccess` improvements including: disable directory browsing, improved support for all versions of Apache, more robust and extensive HTTP compression rules.
113+
* Remove `handheld.css` as it has very poor device support.
114+
* Remove touch-icon `link` elements from the HTML and include improved touch-icon support.
115+
* Remove the cache-busting query paramaters from files references in the HTML.
116+
* Remove IE6 PNGFix.
117+
118+
### 1.0.0 (March 21, 2011)
119+
120+
* Rewrite build script to make it more customizable and flexible.
121+
* Add a humans.txt.
122+
* Numerous `.htaccess` improvements (including inline documentation).
123+
* Move the alternative server configurations to the H5BP server configs repo.
124+
* Use a protocol-relative url to reference jQuery and prevent mixed content warnings.
125+
* Optimize the Google Analytics snippet.
126+
* Use Eric Meyer's recent CSS reset update and the HTML5 Doctor reset.
127+
* More robust `sub`/`sup` CSS styles.
128+
* Add keyboard `.focusable` helper class that extends `.visuallyhidden`.
129+
* Print styles no longer print hash or JavaScript links.
130+
* Add a print reset for IE's proprietary filters.
131+
* Remove IE9-specific conditional class on the `html` element.
132+
* Remove margins from lists within `nav` elements.
133+
* Remove YUI profiling.

0 commit comments

Comments
 (0)