diff options
author | Joris | 2016-11-27 18:38:58 +0100 |
---|---|---|
committer | Joris | 2016-12-20 23:05:43 +0100 |
commit | b780f6f660cc5b2ff2b1ca3884871002823256a1 (patch) | |
tree | c530166206743be1925688f8b3319c630208a695 /src/main/resources | |
parent | 0aab7be2cf2cf73c62b305450902cdc3fe77cd4a (diff) |
Init
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/index-dev.html | 13 | ||||
-rw-r--r-- | src/main/resources/index-prod.html | 13 | ||||
-rw-r--r-- | src/main/resources/reset.css | 51 |
3 files changed, 77 insertions, 0 deletions
diff --git a/src/main/resources/index-dev.html b/src/main/resources/index-dev.html new file mode 100644 index 0000000..f9b17e7 --- /dev/null +++ b/src/main/resources/index-dev.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> + +<html lang="en"> + <head> + <meta charset="UTF-8"> + <title>reading</title> + <link rel="stylesheet" href="reset.css"> + <script src="../reading-fastopt.js"></script> + </head> + + <body onload="reading.Main().main()"> + </body> +</html> diff --git a/src/main/resources/index-prod.html b/src/main/resources/index-prod.html new file mode 100644 index 0000000..93ae2f0 --- /dev/null +++ b/src/main/resources/index-prod.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> + +<html lang="en"> + <head> + <meta charset="UTF-8"> + <title>reading</title> + <link rel="stylesheet" href="reset.css"> + <script src="../reading-opt.js"></script> + </head> + + <body onload="reading.Main().main()"> + </body> +</html> diff --git a/src/main/resources/reset.css b/src/main/resources/reset.css new file mode 100644 index 0000000..636e49f --- /dev/null +++ b/src/main/resources/reset.css @@ -0,0 +1,51 @@ +/* http://meyerweb.com/eric/tools/css/reset/ + * v2.0 | 20110126 + * License: none (public domain) + */ + +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} +body { + line-height: 1; +} +ol, ul { + list-style: none; +} +blockquote, q { + quotes: none; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} +a { + text-decoration: none; +} |