Skip to content

Commit 8c2d510

Browse files
author
jllord
committed
merging
2 parents 6cb1ff4 + a8a78f1 commit 8c2d510

22 files changed

+2732
-0
lines changed

barchart.svg

Lines changed: 1 addition & 0 deletions
Loading

css/ie.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
/* IE (all versions) */
3+
/* ----------------------------------------- */

css/layout.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
/* LAYOUT */
3+
/* ----------------------------------------- */
4+
5+
/* These rather presentational classes are generated by WordPress, so it's useful to have some styles for them. Edit as you see fit. More info: http://codex.wordpress.org/CSS */
6+
.aligncenter { display:block; margin:0 auto }
7+
.alignleft { float:left }
8+
.alignright { float:right }
9+
.wp-caption { border:1px solid #666; text-align:center; background:#ccc; padding:10px; margin:10px }
10+
11+
/* You might find the following useful */
12+
/* div, ul, li { position:relative } This will save you having to declare each div / ul / li's position as 'relative' and allows you to absolutely position elements inside them */
13+
br.clear { clear:both; display:block; height:1px; margin:-1px 0 0 0 } /* Use this br class to clear your floated columns */
14+
li#theme-switcher { background:#fff; border:10px solid red; padding:20px; position:fixed; top:0; right:0 } /* Use this if you have the Theme Switcher Reloaded plugin (http://themebot.com/webmaster-tools/1-wordpress-theme-switcher-reloaded) installed and want to make it nice and obvious */

css/reset.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
/* RESET */
3+
/* ----------------------------------------- */
4+
5+
/* Global reset */
6+
/* Based upon 'reset.css' in the Yahoo! User Interface Library: http://developer.yahoo.com/yui */
7+
*, html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, label, fieldset, input, p, blockquote, th, td { margin:0; padding:0 }
8+
table { border-collapse:collapse; border-spacing:0 }
9+
fieldset, img { border:0 }
10+
address, caption, cite, code, dfn, em, strong, th, var { font-style:normal; font-weight:normal }
11+
ol, ul, li { list-style:none }
12+
caption, th { text-align:left }
13+
h1, h2, h3, h4, h5, h6 { font-size:100%; font-weight:normal }
14+
q:before, q:after { content:''}
15+
16+
/* Global reset-RESET */
17+
/* The below restores some sensible defaults */
18+
strong { font-weight:bold }
19+
em { font-style:italic }
20+
a img { border:none } /* Gets rid of IE's blue borders */

css/style

Whitespace-only changes.

css/style.css

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
body {font-family: Meriweather, Baskerville, serif;}
2+
#wrapper {margin: auto; width: 900px;}
3+
h1 {font-size: 40px; font-weight: 900;}
4+
h6 {font-size: 20px; font-weight: 700; margin: 0px;}
5+
p {font-size: 18px; font-weight: 300; margin-bottom: 20px;}
6+
#nav {float: right; font-size: 30px;}
7+
8+
9+
/* HTML5 Boilerplate */
10+
11+
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
12+
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
13+
audio:not([controls]) { display: none; }
14+
[hidden] { display: none; }
15+
16+
html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
17+
html, button, input, select, textarea { font-family: sans-serif; color: #222; }
18+
body { margin: 0; font-size: 1em; line-height: 1.4; }
19+
20+
::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; }
21+
::selection { background: #fe57a1; color: #fff; text-shadow: none; }
22+
23+
a { color: #00e; }
24+
a:visited { color: #551a8b; }
25+
a:hover { color: #06e; }
26+
a:focus { outline: thin dotted; }
27+
a:hover, a:active { outline: 0; }
28+
abbr[title] { border-bottom: 1px dotted; }
29+
b, strong { font-weight: bold; }
30+
blockquote { margin: 1em 40px; }
31+
dfn { font-style: italic; }
32+
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
33+
ins { background: #ff9; color: #000; text-decoration: none; }
34+
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
35+
pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
36+
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
37+
38+
q { quotes: none; }
39+
q:before, q:after { content: ""; content: none; }
40+
small { font-size: 85%; }
41+
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
42+
sup { top: -0.5em; }
43+
sub { bottom: -0.25em; }
44+
45+
ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
46+
dd { margin: 0 0 0 40px; }
47+
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
48+
49+
img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
50+
svg:not(:root) { overflow: hidden; }
51+
figure { margin: 0; }
52+
53+
form { margin: 0; }
54+
fieldset { border: 0; margin: 0; padding: 0; }
55+
56+
label { cursor: pointer; }
57+
legend { border: 0; *margin-left: -7px; padding: 0; white-space: normal; }
58+
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
59+
button, input { line-height: normal; }
60+
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }
61+
button[disabled], input[disabled] { cursor: default; }
62+
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; }
63+
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
64+
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
65+
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
66+
textarea { overflow: auto; vertical-align: top; resize: vertical; }
67+
input:valid, textarea:valid { }
68+
input:invalid, textarea:invalid { background-color: #f0dddd; }
69+
70+
table { border-collapse: collapse; border-spacing: 0; }
71+
td { vertical-align: top; }
72+
73+
.chromeframe { margin: 0.2em 0; background: #ccc; color: black; padding: 0.2em 0; }
74+
75+
76+
77+
78+
79+
80+
81+
82+
83+
@media only screen and (min-width: 35em) {
84+
85+
86+
}
87+
88+
.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; }
89+
.ir br { display: none; }
90+
.hidden { display: none !important; visibility: hidden; }
91+
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
92+
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
93+
.invisible { visibility: hidden; }
94+
.clearfix:before, .clearfix:after { content: ""; display: table; }
95+
.clearfix:after { clear: both; }
96+
.clearfix { *zoom: 1; }
97+
98+
@media print {
99+
* { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; }
100+
a, a:visited { text-decoration: underline; }
101+
a[href]:after { content: " (" attr(href) ")"; }
102+
abbr[title]:after { content: " (" attr(title) ")"; }
103+
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
104+
pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
105+
thead { display: table-header-group; }
106+
tr, img { page-break-inside: avoid; }
107+
img { max-width: 100% !important; }
108+
@page { margin: 0.5cm; }
109+
p, h2, h3 { orphans: 3; widows: 3; }
110+
h2, h3 { page-break-after: avoid; }
111+
}

css/typography.css

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
2+
/* TYPOGRAPHY */
3+
/* ----------------------------------------- */
4+
5+
h1, h2, h3, h4, h5, h6 { font-weight:bold } /* This helps to identify headings at the initial build stage, so I thought it'd be useful to have it */
6+
.alert { background:red; color:white } /* 'alert' has a basic style, since it's useful to have it standing out for testing purposes.
7+
8+
9+
10+
/* Font stack options
11+
12+
The following represents a list of font stacks, as recommended by Nathan Ford in
13+
http://unitinteractive.com/blog/2008/06/26/better-css-font-stacks/
14+
15+
I've added inverted commas around the relevant family names to ensure compatibility.
16+
p = balanced for paragraphs or body copy
17+
t = balanced for headlines or titles
18+
19+
- - - -
20+
21+
Arial, "Helvetica Neue", Helvetica, sans-serif - p, t
22+
23+
Baskerville, "Times New Roman", Times, serif - p
24+
Baskerville, "Times, Times New Roman", serif - t
25+
26+
Cambria, Georgia, Times, "Times New Roman", serif - p, t
27+
"Century Gothic", "Apple Gothic", sans-serif - p, t
28+
29+
Consolas, "Lucida Console", Monaco, monospace - p, t
30+
31+
"Copperplate Light", "Copperplate Gothic Light", serif - p, t
32+
33+
"Courier New", Courier, monospace - p, t
34+
35+
"Franklin Gothic Medium", "Arial Narrow Bold", Arial, sans-serif - p, t
36+
37+
Futura, "Century Gothic", "Apple Gothic", sans-serif - p, t
38+
39+
Garamond, "Hoefler Text", "Times New Roman", Times, serif - p
40+
Garamond, "Hoefler Text", Palatino, "Palatino Linotype", serif - t
41+
42+
Geneva, "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif - p
43+
Geneva, Verdana, "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", sans-serif - t
44+
45+
Georgia, Palatino, "Palatino Linotype", Times, "Times New Roman", serif - p
46+
Georgia, Times, "Times New Roman", serif - t
47+
48+
GillSans, Calibri, Trebuchet, sans-serif - p
49+
GillSans, Trebuchet, Calibri, sans-serif - t
50+
51+
"Helvetica Neue", Arial, Helvetica, sans-serif - p
52+
Helvetica, "Helvetica Neue", Arial, sans-serif - t
53+
54+
Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif - p, t
55+
56+
"Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", sans-serif - p, t
57+
58+
Palatino, "Palatino Linotype", Georgia, Times, "Times New Roman", serif - p
59+
Palatino, "Palatino Linotype", "Hoefler Text", Times, "Times New Roman", serif - t
60+
61+
Tahoma, Geneva, Verdana - p
62+
Tahoma, Verdana, Geneva - t
63+
64+
Times, "Times New Roman", Georgia, serif - p, t
65+
66+
Trebuchet, "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif - p
67+
Trebuchet, Tahoma, Arial, sans-serif - t
68+
69+
Verdana, Geneva, Tahoma, sans-serif - p
70+
Verdana, Tahoma, Geneva, sans-serif - t
71+
72+
*/

diagram.png

22.2 KB
Loading

g.bar-min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

g.pie-min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)