structrdfal 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +133 -0
  4. data/_includes/blogList.html +82 -0
  5. data/_includes/blogList.html~1 +100 -0
  6. data/_includes/blogList.html~2 +85 -0
  7. data/_includes/catag-old.html +15 -0
  8. data/_includes/catag.html +16 -0
  9. data/_includes/footer.html +18 -0
  10. data/_includes/nav.html +14 -0
  11. data/_layouts/aboutPage.html +5 -0
  12. data/_layouts/autopage_category.html +11 -0
  13. data/_layouts/autopage_tags.html +12 -0
  14. data/_layouts/bloghome.html +10 -0
  15. data/_layouts/contactPage.html +5 -0
  16. data/_layouts/default.html +131 -0
  17. data/_layouts/event.html +145 -0
  18. data/_layouts/page.html +4 -0
  19. data/_layouts/post.html +34 -0
  20. data/_layouts/sitehome.html +62 -0
  21. data/_sass/_variables.scss +36 -0
  22. data/_sass/_vertical-rhythm.scss +61 -0
  23. data/assets/.colophon/html5-boilerplate_v7.0.1/404.html +60 -0
  24. data/assets/.colophon/html5-boilerplate_v7.0.1/LICENSE.txt +19 -0
  25. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/TOC.md +34 -0
  26. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/css.md +54 -0
  27. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/extend.md +640 -0
  28. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/faq.md +42 -0
  29. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/html.md +198 -0
  30. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/js.md +36 -0
  31. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/misc.md +173 -0
  32. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/usage.md +130 -0
  33. data/assets/.colophon/html5-boilerplate_v7.0.1/index.html +41 -0
  34. data/assets/.colophon/normalize-scss/README.md +158 -0
  35. data/assets/.editorconfig +13 -0
  36. data/assets/.htaccess +1224 -0
  37. data/assets/404.html +6 -0
  38. data/assets/browserconfig.xml +12 -0
  39. data/assets/contactform.html +23 -0
  40. data/assets/eventform.html +110 -0
  41. data/assets/favicon.ico +0 -0
  42. data/assets/humans.txt +16 -0
  43. data/assets/icon.png +0 -0
  44. data/assets/robots.txt +5 -0
  45. data/assets/scripts/.DS_Store +0 -0
  46. data/assets/scripts/main.js +0 -0
  47. data/assets/scripts/plugins.js +24 -0
  48. data/assets/scripts/vendor/jquery-3.3.1.min.js +2 -0
  49. data/assets/scripts/vendor/modernizr-3.6.0.min.js +3 -0
  50. data/assets/site.webmanifest +12 -0
  51. data/assets/styles/HTML5BP-main.css +290 -0
  52. data/assets/styles/form.css +81 -0
  53. data/assets/styles/normalize.css +349 -0
  54. data/assets/styles/structRDFaL.css +177 -0
  55. data/assets/tile-wide.png +0 -0
  56. data/assets/tile.png +0 -0
  57. metadata +156 -0
@@ -0,0 +1,158 @@
1
+ # normalize-scss
2
+
3
+ ## Latest versions
4
+
5
+ For use with… | normalize-scss version
6
+ -----------------------------|-----------------------
7
+ Sass 3.4 or libSass | [8.0.0](https://github.com/JohnAlbin/normalize-scss/releases/tag/8.0.0)<br> combining normalize.css v7.0.0 with v1.1.3
8
+ Compass or Bower | [7.0.0](https://github.com/JohnAlbin/normalize-scss/releases/tag/7.0.0)<br> combining normalize.css v7.0.0 with v1.1.3 (last version with Compass and Bower support)
9
+ Ruby Sass 3.3 | [3.0.3](https://github.com/JohnAlbin/normalize-scss/releases/tag/3.0.3)<br> combining normalize.css v3.0.3 with v1.1.3
10
+ Ruby Sass 3.2 | [2.2.0+normalize.2.1.3](https://github.com/JohnAlbin/normalize-scss/releases/tag/2.2.0%2Bnormalize.2.1.3)<br> combining normalize.css v2.1.3 with v1.1.3
11
+
12
+ ## The Sass port of normalize.css
13
+
14
+ __This project is the Sass version of Normalize.css__, a collection of HTML element and attribute rulesets to normalize styles across all browsers. This port aims to use a light dusting of Sass to make Normalize even easier to integrate with your website. To learn about why Normalize.css is so amazing, skip to the "normalize.css" section below.
15
+
16
+ This Sass port currently adds:
17
+
18
+ * Vertical rhythm mixins: Allowing you to alter the font-size, line-height and margins in Normalize’s output without hacking the library.
19
+ * Optional Eyeglass support.
20
+ * Several ready-to-fork versions that integrate typography Sass modules like Typey, or style guides built with KSS.
21
+
22
+ # normalize.css v5
23
+
24
+ > A modern alternative to CSS resets
25
+
26
+ Normalize.css is a customisable CSS file that makes browsers render all elements more consistently and in line with modern standards.
27
+
28
+ The project relies on researching the differences between default browser styles in order to precisely target only the styles that need or benefit from normalizing.
29
+
30
+ [View the test file](http://necolas.github.io/normalize.css/latest/test.html)
31
+
32
+ ## What does it do?
33
+
34
+ * Preserves useful defaults, unlike many CSS resets.
35
+ * Normalizes styles for a wide range of elements.
36
+ * Corrects bugs and common browser inconsistencies.
37
+ * Improves usability with subtle modifications.
38
+ * Explains what code does using detailed comments.
39
+
40
+ ## Install
41
+
42
+ Install using one of the following methods:
43
+
44
+ * Download directly from the [project page](https://github.com/JohnAlbin/normalize-scss/releases).
45
+ * Install with [npm](http://npmjs.org/): `npm install --save normalize-scss`
46
+ * Install with [Ruby Gem](https://rubygems.org/gems/normalize-scss): `gem install normalize-scss`<br>
47
+ and, optionally, add `require "normalize-scss"` to your config.rb file. Note: if you want to alter the _normalize.scss file after installation (see "how to use it" below), you can use the `gem list --details normalize-scss` command to show you where the normalize-scss files were installed.
48
+
49
+ ## How to use it
50
+
51
+ There is a fantastic introduction to the project and brief instructions how to use it in the [About normalize.css article](http://nicolasgallagher.com/about-normalize-css/).
52
+
53
+ You can use the Sass port of Normalize in one of several methods, following the "About normalize.css" article's suggestions:
54
+
55
+ __Approach 1:__ Download and use normalize-scss as a starting point for your own project's base Sass, customising the values to match the design's requirements. (The best approach, _IMO_.)
56
+ 1. Copy the normalize-scss files to your sass directory so that you can alter it as you include it in your project. To aid with this method, normalize-scss includes several ready-made "fork" versions:
57
+ * [fork-versions/default](fork-versions/default) - Fork for libSass or Ruby Sass
58
+ * [fork-versions/typey](fork-versions/typey) - Fork with Typey
59
+ * [fork-versions/typey-chroma-kss](fork-versions/typey-chroma-kss) - Fork with Typey, Chroma and KSS
60
+
61
+ __Approach 2:__ Install and include normalize-scss untouched and then build upon it, overriding the defaults later in your Sass when necessary. Just import normalize-scss like any normal Sass module by:
62
+ 1. Set variables to override the default normalize-scss variables.
63
+ 2. (Optionally) add an additional `[path to]/normalize-scss/sass` import path for your Sass compiler, e.g. [node-sass' `includePaths`](https://github.com/sass/node-sass#includepaths) option or [Ruby Sass' `--load-path`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#import) option.
64
+ 3. Import with `@import "normalize";` or with `@import "[path to]/normalize-scss/sass/normalize";` (if you skipped step 2.)
65
+ 4. Output the CSS rules with `@include normalize();`
66
+
67
+ Alternatively, you can import normalize-scss immediately into your main Sass file without needing to use the `normalize()` mixin by:
68
+
69
+ 1. (Optionally) set variables to override the default normalize-scss variables.
70
+ 2. (Optionally) add an additional `[path to]/normalize-scss/sass` import path for your Sass compiler, e.g. [node-sass' `includePaths`](https://github.com/sass/node-sass#includepaths) option or [Ruby Sass' `--load-path`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#import) option.
71
+ 3. Import with `@import "normalize/import-now";` or with `@import "[path to]/normalize-scss/sass/normalize/import-now";` (if you skipped step 2.)
72
+
73
+ Note: if you use [wiredep](https://github.com/taptapship/wiredep), normalize-scss's bower.json points at the normalize/import-now Sass partial. If you don't wish to immediately output the CSS, you will need to override the Sass partial that wiredep grabs from normalize-scss.
74
+
75
+ ## Browser support
76
+
77
+ * Chrome (last four)
78
+ * Edge (version 25 and later)
79
+ * Firefox (last four)
80
+ * Firefox ESR
81
+ * Internet Explorer 9+
82
+ * Opera (last four)
83
+ * Safari (last four)
84
+
85
+
86
+ ## Extended details and known issues
87
+
88
+ Additional detail and explanation of the esoteric parts of normalize.css.
89
+
90
+ #### `pre, code, kbd, samp`
91
+
92
+ The `font-family: monospace, monospace` hack fixes the inheritance and scaling
93
+ of font-size for preformatted text. The duplication of `monospace` is
94
+ intentional. [Source](https://en.wikipedia.org/wiki/User:Davidgothberg/Test59).
95
+
96
+ #### `sub, sup`
97
+
98
+ Normally, using `sub` or `sup` affects the line-box height of text in all
99
+ browsers. [Source](https://gist.github.com/413930).
100
+
101
+ #### `svg:not(:root)`
102
+
103
+ Adding `overflow: hidden` fixes IE9's SVG rendering. Earlier versions of IE
104
+ don't support SVG, so we can safely use the `:not()` and `:root` selectors that
105
+ modern browsers use in the default UA stylesheets to apply this style.
106
+ [Source](https://lists.w3.org/Archives/Public/public-svg-wg/2008JulSep/0339.html).
107
+
108
+ #### `select`
109
+
110
+ By default, Chrome on OS X and Safari on OS X allow very limited styling of
111
+ `select`, unless a border property is set. The default font weight on `optgroup`
112
+ elements cannot safely be changed in Chrome on OSX and Safari on OS X.
113
+
114
+ #### `[type="checkbox"]`
115
+
116
+ It is recommended that you do not style checkbox and radio inputs as Firefox's
117
+ implementation does not respect box-sizing, padding, or width.
118
+
119
+ #### `[type="number"]`
120
+
121
+ Certain font size values applied to number inputs cause the cursor style of the
122
+ decrement button to change from `default` to `text`.
123
+
124
+ #### `[type="search"]`
125
+
126
+ The search input is not fully stylable by default. In Chrome and Safari on
127
+ OSX/iOS you can't control `font`, `padding`, `border`, or `background`. In
128
+ Chrome and Safari on Windows you can't control `border` properly. It will apply
129
+ `border-width` but will only show a border color (which cannot be controlled)
130
+ for the outer 1px of that border. Applying `-webkit-appearance: textfield`
131
+ addresses these issues without removing the benefits of search inputs (e.g.
132
+ showing past searches). Safari (but not Chrome) will clip the cancel button on
133
+ when it has padding (and `textfield` appearance).
134
+
135
+ ## Contributing
136
+
137
+ Please read Normalize.css' [contributing guidelines](https://github.com/necolas/normalize.css/blob/master/CONTRIBUTING.md).
138
+
139
+ Updates to most CSS rules should be reported to the upstream [Normalize.css project](http://necolas.github.com/normalize.css/). Updates to the Sass should be reported in the [Normalize-scss project](https://github.com/JohnAlbin/normalize-scss/).
140
+
141
+ ## Acknowledgements
142
+
143
+ Normalize.css is a project by [Nicolas Gallagher](https://github.com/necolas),
144
+ co-created with [Jonathan Neal](https://github.com/jonathantneal).
145
+
146
+ This Sass port is a project by [John Albin Wilkins](http://john.albin.net).
147
+
148
+ ## Other ports of Normalize.css
149
+
150
+ For the record, there are several other Sass ports as well. Including:
151
+
152
+ * https://github.com/waynegraham/compass-normalize-plugin
153
+ * https://github.com/ksmandersen/compass-normalize
154
+ * https://github.com/hail2u/normalize.scss
155
+ * https://github.com/kristerkari/normalize.scss
156
+ * https://github.com/krisbulman/normalize-libsass
157
+
158
+ [![Build Status](https://travis-ci.org/JohnAlbin/normalize-scss.png?branch=master)](https://travis-ci.org/JohnAlbin/normalize-scss)
@@ -0,0 +1,13 @@
1
+ # editorconfig.org
2
+
3
+ root = true
4
+
5
+ [*]
6
+ charset = utf-8
7
+ indent_size = 2
8
+ indent_style = space
9
+ insert_final_newline = true
10
+ trim_trailing_whitespace = true
11
+
12
+ [*.md]
13
+ trim_trailing_whitespace = false