jekyll-theme-newtype 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +66 -0
  4. data/_includes/footer.html +4 -0
  5. data/_includes/head.html +22 -0
  6. data/_includes/header.html +31 -0
  7. data/_includes/navbar.html +9 -0
  8. data/_includes/post_preview.html +10 -0
  9. data/_includes/sidebar.html +1 -0
  10. data/_layouts/category_index.html +11 -0
  11. data/_layouts/default.html +29 -0
  12. data/_layouts/home.html +7 -0
  13. data/_layouts/page.html +5 -0
  14. data/_layouts/post.html +5 -0
  15. data/_layouts/slides.html +50 -0
  16. data/_sass/newtype.scss +32 -0
  17. data/_sass/skeleton/base/_base-styles.scss +37 -0
  18. data/_sass/skeleton/base/_functions.scss +17 -0
  19. data/_sass/skeleton/base/_normalize.scss +428 -0
  20. data/_sass/skeleton/base/_typography.scss +29 -0
  21. data/_sass/skeleton/base/_utils.scss +20 -0
  22. data/_sass/skeleton/base/_variables.scss +32 -0
  23. data/_sass/skeleton/modules/_buttons.scss +147 -0
  24. data/_sass/skeleton/modules/_code.scss +18 -0
  25. data/_sass/skeleton/modules/_forms.scss +88 -0
  26. data/_sass/skeleton/modules/_grid.scss +116 -0
  27. data/_sass/skeleton/modules/_lists.scss +32 -0
  28. data/_sass/skeleton/modules/_media-queries.scss +22 -0
  29. data/_sass/skeleton/modules/_spacing.scss +26 -0
  30. data/_sass/skeleton/modules/_tables.scss +19 -0
  31. data/_sass/skeleton/normalize.scss +427 -0
  32. data/_sass/skeleton/skeleton.scss +418 -0
  33. data/_sass/syntax.scss +60 -0
  34. data/assets/bullet.svg +13 -0
  35. data/assets/revealjs/.gitignore +13 -0
  36. data/assets/revealjs/.travis.yml +7 -0
  37. data/assets/revealjs/CONTRIBUTING.md +23 -0
  38. data/assets/revealjs/Gruntfile.js +192 -0
  39. data/assets/revealjs/LICENSE +19 -0
  40. data/assets/revealjs/README.md +1238 -0
  41. data/assets/revealjs/bower.json +27 -0
  42. data/assets/revealjs/css/print/paper.css +203 -0
  43. data/assets/revealjs/css/print/pdf.css +178 -0
  44. data/assets/revealjs/css/reveal.css +1555 -0
  45. data/assets/revealjs/css/reveal.scss +1717 -0
  46. data/assets/revealjs/css/theme/README.md +21 -0
  47. data/assets/revealjs/css/theme/beige.css +268 -0
  48. data/assets/revealjs/css/theme/black.css +264 -0
  49. data/assets/revealjs/css/theme/blood.css +287 -0
  50. data/assets/revealjs/css/theme/league.css +270 -0
  51. data/assets/revealjs/css/theme/moon.css +268 -0
  52. data/assets/revealjs/css/theme/night.css +262 -0
  53. data/assets/revealjs/css/theme/serif.css +264 -0
  54. data/assets/revealjs/css/theme/simple.css +267 -0
  55. data/assets/revealjs/css/theme/sky.css +271 -0
  56. data/assets/revealjs/css/theme/solarized.css +268 -0
  57. data/assets/revealjs/css/theme/source/beige.scss +39 -0
  58. data/assets/revealjs/css/theme/source/black.scss +49 -0
  59. data/assets/revealjs/css/theme/source/blood.scss +78 -0
  60. data/assets/revealjs/css/theme/source/league.scss +34 -0
  61. data/assets/revealjs/css/theme/source/moon.scss +57 -0
  62. data/assets/revealjs/css/theme/source/night.scss +34 -0
  63. data/assets/revealjs/css/theme/source/serif.scss +35 -0
  64. data/assets/revealjs/css/theme/source/simple.scss +43 -0
  65. data/assets/revealjs/css/theme/source/sky.scss +46 -0
  66. data/assets/revealjs/css/theme/source/solarized.scss +63 -0
  67. data/assets/revealjs/css/theme/source/white.scss +49 -0
  68. data/assets/revealjs/css/theme/template/mixins.scss +29 -0
  69. data/assets/revealjs/css/theme/template/settings.scss +43 -0
  70. data/assets/revealjs/css/theme/template/theme.scss +316 -0
  71. data/assets/revealjs/css/theme/white.css +264 -0
  72. data/assets/revealjs/demo.html +410 -0
  73. data/assets/revealjs/index.html +49 -0
  74. data/assets/revealjs/js/reveal.js +5239 -0
  75. data/assets/revealjs/lib/css/zenburn.css +80 -0
  76. data/assets/revealjs/lib/font/league-gothic/LICENSE +2 -0
  77. data/assets/revealjs/lib/font/league-gothic/league-gothic.css +10 -0
  78. data/assets/revealjs/lib/font/league-gothic/league-gothic.eot +0 -0
  79. data/assets/revealjs/lib/font/league-gothic/league-gothic.ttf +0 -0
  80. data/assets/revealjs/lib/font/league-gothic/league-gothic.woff +0 -0
  81. data/assets/revealjs/lib/font/source-sans-pro/LICENSE +45 -0
  82. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  83. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
  84. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  85. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  86. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
  87. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  88. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  89. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
  90. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  91. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
  92. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
  93. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
  94. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro.css +39 -0
  95. data/assets/revealjs/lib/js/classList.js +2 -0
  96. data/assets/revealjs/lib/js/head.min.js +9 -0
  97. data/assets/revealjs/lib/js/html5shiv.js +7 -0
  98. data/assets/revealjs/package.json +43 -0
  99. data/assets/revealjs/plugin/highlight/highlight.js +77 -0
  100. data/assets/revealjs/plugin/markdown/markdown.js +412 -0
  101. data/assets/revealjs/plugin/markdown/marked.js +6 -0
  102. data/assets/revealjs/plugin/math/math.js +67 -0
  103. data/assets/revealjs/plugin/multiplex/client.js +13 -0
  104. data/assets/revealjs/plugin/multiplex/index.js +64 -0
  105. data/assets/revealjs/plugin/multiplex/master.js +34 -0
  106. data/assets/revealjs/plugin/multiplex/package.json +19 -0
  107. data/assets/revealjs/plugin/notes/notes.html +759 -0
  108. data/assets/revealjs/plugin/notes/notes.js +155 -0
  109. data/assets/revealjs/plugin/notes-server/client.js +65 -0
  110. data/assets/revealjs/plugin/notes-server/index.js +69 -0
  111. data/assets/revealjs/plugin/notes-server/notes.html +585 -0
  112. data/assets/revealjs/plugin/print-pdf/print-pdf.js +69 -0
  113. data/assets/revealjs/plugin/search/search.js +206 -0
  114. data/assets/revealjs/plugin/zoom-js/zoom.js +272 -0
  115. data/assets/revealjs/test/examples/assets/image1.png +0 -0
  116. data/assets/revealjs/test/examples/assets/image2.png +0 -0
  117. data/assets/revealjs/test/examples/barebones.html +41 -0
  118. data/assets/revealjs/test/examples/embedded-media.html +49 -0
  119. data/assets/revealjs/test/examples/math.html +185 -0
  120. data/assets/revealjs/test/examples/slide-backgrounds.html +144 -0
  121. data/assets/revealjs/test/examples/slide-transitions.html +101 -0
  122. data/assets/revealjs/test/qunit-1.12.0.css +244 -0
  123. data/assets/revealjs/test/qunit-1.12.0.js +2212 -0
  124. data/assets/revealjs/test/test-markdown-element-attributes.html +134 -0
  125. data/assets/revealjs/test/test-markdown-element-attributes.js +46 -0
  126. data/assets/revealjs/test/test-markdown-external.html +36 -0
  127. data/assets/revealjs/test/test-markdown-external.js +24 -0
  128. data/assets/revealjs/test/test-markdown-options.html +41 -0
  129. data/assets/revealjs/test/test-markdown-options.js +26 -0
  130. data/assets/revealjs/test/test-markdown-slide-attributes.html +128 -0
  131. data/assets/revealjs/test/test-markdown-slide-attributes.js +47 -0
  132. data/assets/revealjs/test/test-markdown.html +52 -0
  133. data/assets/revealjs/test/test-markdown.js +15 -0
  134. data/assets/revealjs/test/test-pdf.html +83 -0
  135. data/assets/revealjs/test/test-pdf.js +15 -0
  136. data/assets/revealjs/test/test.html +86 -0
  137. data/assets/revealjs/test/test.js +597 -0
  138. data/assets/social-github.svg +14 -0
  139. data/assets/social-twitter.png +0 -0
  140. data/assets/social-twitter.svg +12 -0
  141. data/assets/style.scss +4 -0
  142. metadata +226 -0
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "reveal.js",
3
+ "version": "3.6.0",
4
+ "main": [
5
+ "js/reveal.js",
6
+ "css/reveal.css"
7
+ ],
8
+ "homepage": "http://revealjs.com",
9
+ "license": "MIT",
10
+ "description": "The HTML Presentation Framework",
11
+ "authors": [
12
+ "Hakim El Hattab <hakim.elhattab@gmail.com>"
13
+ ],
14
+ "dependencies": {
15
+ "headjs": "~1.0.3"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git://github.com/hakimel/reveal.js.git"
20
+ },
21
+ "ignore": [
22
+ "**/.*",
23
+ "node_modules",
24
+ "bower_components",
25
+ "test"
26
+ ]
27
+ }
@@ -0,0 +1,203 @@
1
+ /* Default Print Stylesheet Template
2
+ by Rob Glazebrook of CSSnewbie.com
3
+ Last Updated: June 4, 2008
4
+
5
+ Feel free (nay, compelled) to edit, append, and
6
+ manipulate this file as you see fit. */
7
+
8
+
9
+ @media print {
10
+
11
+ /* SECTION 1: Set default width, margin, float, and
12
+ background. This prevents elements from extending
13
+ beyond the edge of the printed page, and prevents
14
+ unnecessary background images from printing */
15
+ html {
16
+ background: #fff;
17
+ width: auto;
18
+ height: auto;
19
+ overflow: visible;
20
+ }
21
+ body {
22
+ background: #fff;
23
+ font-size: 20pt;
24
+ width: auto;
25
+ height: auto;
26
+ border: 0;
27
+ margin: 0 5%;
28
+ padding: 0;
29
+ overflow: visible;
30
+ float: none !important;
31
+ }
32
+
33
+ /* SECTION 2: Remove any elements not needed in print.
34
+ This would include navigation, ads, sidebars, etc. */
35
+ .nestedarrow,
36
+ .controls,
37
+ .fork-reveal,
38
+ .share-reveal,
39
+ .state-background,
40
+ .reveal .progress,
41
+ .reveal .backgrounds,
42
+ .reveal .slide-number {
43
+ display: none !important;
44
+ }
45
+
46
+ /* SECTION 3: Set body font face, size, and color.
47
+ Consider using a serif font for readability. */
48
+ body, p, td, li, div {
49
+ font-size: 20pt!important;
50
+ font-family: Georgia, "Times New Roman", Times, serif !important;
51
+ color: #000;
52
+ }
53
+
54
+ /* SECTION 4: Set heading font face, sizes, and color.
55
+ Differentiate your headings from your body text.
56
+ Perhaps use a large sans-serif for distinction. */
57
+ h1,h2,h3,h4,h5,h6 {
58
+ color: #000!important;
59
+ height: auto;
60
+ line-height: normal;
61
+ font-family: Georgia, "Times New Roman", Times, serif !important;
62
+ text-shadow: 0 0 0 #000 !important;
63
+ text-align: left;
64
+ letter-spacing: normal;
65
+ }
66
+ /* Need to reduce the size of the fonts for printing */
67
+ h1 { font-size: 28pt !important; }
68
+ h2 { font-size: 24pt !important; }
69
+ h3 { font-size: 22pt !important; }
70
+ h4 { font-size: 22pt !important; font-variant: small-caps; }
71
+ h5 { font-size: 21pt !important; }
72
+ h6 { font-size: 20pt !important; font-style: italic; }
73
+
74
+ /* SECTION 5: Make hyperlinks more usable.
75
+ Ensure links are underlined, and consider appending
76
+ the URL to the end of the link for usability. */
77
+ a:link,
78
+ a:visited {
79
+ color: #000 !important;
80
+ font-weight: bold;
81
+ text-decoration: underline;
82
+ }
83
+ /*
84
+ .reveal a:link:after,
85
+ .reveal a:visited:after {
86
+ content: " (" attr(href) ") ";
87
+ color: #222 !important;
88
+ font-size: 90%;
89
+ }
90
+ */
91
+
92
+
93
+ /* SECTION 6: more reveal.js specific additions by @skypanther */
94
+ ul, ol, div, p {
95
+ visibility: visible;
96
+ position: static;
97
+ width: auto;
98
+ height: auto;
99
+ display: block;
100
+ overflow: visible;
101
+ margin: 0;
102
+ text-align: left !important;
103
+ }
104
+ .reveal pre,
105
+ .reveal table {
106
+ margin-left: 0;
107
+ margin-right: 0;
108
+ }
109
+ .reveal pre code {
110
+ padding: 20px;
111
+ border: 1px solid #ddd;
112
+ }
113
+ .reveal blockquote {
114
+ margin: 20px 0;
115
+ }
116
+ .reveal .slides {
117
+ position: static !important;
118
+ width: auto !important;
119
+ height: auto !important;
120
+
121
+ left: 0 !important;
122
+ top: 0 !important;
123
+ margin-left: 0 !important;
124
+ margin-top: 0 !important;
125
+ padding: 0 !important;
126
+ zoom: 1 !important;
127
+
128
+ overflow: visible !important;
129
+ display: block !important;
130
+
131
+ text-align: left !important;
132
+ -webkit-perspective: none;
133
+ -moz-perspective: none;
134
+ -ms-perspective: none;
135
+ perspective: none;
136
+
137
+ -webkit-perspective-origin: 50% 50%;
138
+ -moz-perspective-origin: 50% 50%;
139
+ -ms-perspective-origin: 50% 50%;
140
+ perspective-origin: 50% 50%;
141
+ }
142
+ .reveal .slides section {
143
+ visibility: visible !important;
144
+ position: static !important;
145
+ width: auto !important;
146
+ height: auto !important;
147
+ display: block !important;
148
+ overflow: visible !important;
149
+
150
+ left: 0 !important;
151
+ top: 0 !important;
152
+ margin-left: 0 !important;
153
+ margin-top: 0 !important;
154
+ padding: 60px 20px !important;
155
+ z-index: auto !important;
156
+
157
+ opacity: 1 !important;
158
+
159
+ page-break-after: always !important;
160
+
161
+ -webkit-transform-style: flat !important;
162
+ -moz-transform-style: flat !important;
163
+ -ms-transform-style: flat !important;
164
+ transform-style: flat !important;
165
+
166
+ -webkit-transform: none !important;
167
+ -moz-transform: none !important;
168
+ -ms-transform: none !important;
169
+ transform: none !important;
170
+
171
+ -webkit-transition: none !important;
172
+ -moz-transition: none !important;
173
+ -ms-transition: none !important;
174
+ transition: none !important;
175
+ }
176
+ .reveal .slides section.stack {
177
+ padding: 0 !important;
178
+ }
179
+ .reveal section:last-of-type {
180
+ page-break-after: avoid !important;
181
+ }
182
+ .reveal section .fragment {
183
+ opacity: 1 !important;
184
+ visibility: visible !important;
185
+
186
+ -webkit-transform: none !important;
187
+ -moz-transform: none !important;
188
+ -ms-transform: none !important;
189
+ transform: none !important;
190
+ }
191
+ .reveal section img {
192
+ display: block;
193
+ margin: 15px 0px;
194
+ background: rgba(255,255,255,1);
195
+ border: 1px solid #666;
196
+ box-shadow: none;
197
+ }
198
+
199
+ .reveal section small {
200
+ font-size: 0.8em;
201
+ }
202
+
203
+ }
@@ -0,0 +1,178 @@
1
+ /**
2
+ * This stylesheet is used to print reveal.js
3
+ * presentations to PDF.
4
+ *
5
+ * https://github.com/hakimel/reveal.js#pdf-export
6
+ */
7
+
8
+ * {
9
+ -webkit-print-color-adjust: exact;
10
+ }
11
+
12
+ body {
13
+ margin: 0 auto !important;
14
+ border: 0;
15
+ padding: 0;
16
+ float: none !important;
17
+ overflow: visible;
18
+ }
19
+
20
+ html {
21
+ width: 100%;
22
+ height: 100%;
23
+ overflow: visible;
24
+ }
25
+
26
+ /* Remove any elements not needed in print. */
27
+ .nestedarrow,
28
+ .reveal .controls,
29
+ .reveal .progress,
30
+ .reveal .playback,
31
+ .reveal.overview,
32
+ .fork-reveal,
33
+ .share-reveal,
34
+ .state-background {
35
+ display: none !important;
36
+ }
37
+
38
+ h1, h2, h3, h4, h5, h6 {
39
+ text-shadow: 0 0 0 #000 !important;
40
+ }
41
+
42
+ .reveal pre code {
43
+ overflow: hidden !important;
44
+ font-family: Courier, 'Courier New', monospace !important;
45
+ }
46
+
47
+ ul, ol, div, p {
48
+ visibility: visible;
49
+ position: static;
50
+ width: auto;
51
+ height: auto;
52
+ display: block;
53
+ overflow: visible;
54
+ margin: auto;
55
+ }
56
+ .reveal {
57
+ width: auto !important;
58
+ height: auto !important;
59
+ overflow: hidden !important;
60
+ }
61
+ .reveal .slides {
62
+ position: static;
63
+ width: 100% !important;
64
+ height: auto !important;
65
+ zoom: 1 !important;
66
+
67
+ left: auto;
68
+ top: auto;
69
+ margin: 0 !important;
70
+ padding: 0 !important;
71
+
72
+ overflow: visible;
73
+ display: block;
74
+
75
+ -webkit-perspective: none;
76
+ -moz-perspective: none;
77
+ -ms-perspective: none;
78
+ perspective: none;
79
+
80
+ -webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */
81
+ -moz-perspective-origin: 50% 50%;
82
+ -ms-perspective-origin: 50% 50%;
83
+ perspective-origin: 50% 50%;
84
+ }
85
+
86
+ .reveal .slides .pdf-page {
87
+ position: relative;
88
+ overflow: hidden;
89
+ z-index: 1;
90
+
91
+ page-break-after: always;
92
+ }
93
+
94
+ .reveal .slides section {
95
+ visibility: visible !important;
96
+ display: block !important;
97
+ position: absolute !important;
98
+
99
+ margin: 0 !important;
100
+ padding: 0 !important;
101
+ box-sizing: border-box !important;
102
+ min-height: 1px;
103
+
104
+ opacity: 1 !important;
105
+
106
+ -webkit-transform-style: flat !important;
107
+ -moz-transform-style: flat !important;
108
+ -ms-transform-style: flat !important;
109
+ transform-style: flat !important;
110
+
111
+ -webkit-transform: none !important;
112
+ -moz-transform: none !important;
113
+ -ms-transform: none !important;
114
+ transform: none !important;
115
+ }
116
+
117
+ .reveal section.stack {
118
+ position: relative !important;
119
+ margin: 0 !important;
120
+ padding: 0 !important;
121
+ page-break-after: avoid !important;
122
+ height: auto !important;
123
+ min-height: auto !important;
124
+ }
125
+
126
+ .reveal img {
127
+ box-shadow: none;
128
+ }
129
+
130
+ .reveal .roll {
131
+ overflow: visible;
132
+ line-height: 1em;
133
+ }
134
+
135
+ /* Slide backgrounds are placed inside of their slide when exporting to PDF */
136
+ .reveal .slide-background {
137
+ display: block !important;
138
+ position: absolute;
139
+ top: 0;
140
+ left: 0;
141
+ width: 100%;
142
+ height: 100%;
143
+ z-index: auto !important;
144
+ }
145
+
146
+ /* Display slide speaker notes when 'showNotes' is enabled */
147
+ .reveal.show-notes {
148
+ max-width: none;
149
+ max-height: none;
150
+ }
151
+ .reveal .speaker-notes-pdf {
152
+ display: block;
153
+ width: 100%;
154
+ height: auto;
155
+ max-height: none;
156
+ top: auto;
157
+ right: auto;
158
+ bottom: auto;
159
+ left: auto;
160
+ z-index: 100;
161
+ }
162
+
163
+ /* Layout option which makes notes appear on a separate page */
164
+ .reveal .speaker-notes-pdf[data-layout="separate-page"] {
165
+ position: relative;
166
+ color: inherit;
167
+ background-color: transparent;
168
+ padding: 20px;
169
+ page-break-after: always;
170
+ border: 0;
171
+ }
172
+
173
+ /* Display slide numbers when 'slideNumber' is enabled */
174
+ .reveal .slide-number-pdf {
175
+ display: block;
176
+ position: absolute;
177
+ font-size: 14px;
178
+ }