├── .gitignore
├── js
├── profiling
│ ├── charts.swf
│ ├── config.js
│ └── yahoo-profiling.css
├── script.js
├── plugins.js
├── modernizr-1.5.min.js
├── dd_belatedpng.js
└── jquery-1.4.2.min.js
├── robots.txt
├── css
├── handheld.css
└── style.css
├── crossdomain.xml
├── 404.html
├── README.markdown
├── test
├── qunit
│ ├── testsuite.css
│ └── testrunner.js
├── index.html
└── tests.js
├── index.html
├── .htaccess
└── demo
└── elements-demo.html
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
3 | .sass-cache
4 |
--------------------------------------------------------------------------------
/js/profiling/charts.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/subtleGradient/html5-boilerplate/master/js/profiling/charts.swf
--------------------------------------------------------------------------------
/robots.txt:
--------------------------------------------------------------------------------
1 | # www.robotstxt.org/
2 | # www.google.com/support/webmasters/bin/answer.py?hl=en&answer=156449
3 |
4 | User-agent: *
5 |
6 |
--------------------------------------------------------------------------------
/js/script.js:
--------------------------------------------------------------------------------
1 | /* Author:
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 |
--------------------------------------------------------------------------------
/css/handheld.css:
--------------------------------------------------------------------------------
1 |
2 | * {
3 | float: none; /* Screens are not big enough to account for floats */
4 | font-size: 80%; /* Slightly reducing font size to reduce need to scroll */
5 | background: #fff; /* As much contrast as possible */
6 | color: #000;
7 | }
--------------------------------------------------------------------------------
/crossdomain.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
:(
19 |