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,88 @@
1
+ // Forms
2
+ //––––––––––––––––––––––––––––––––––––––––––––––––––
3
+
4
+ input[type='email'],
5
+ input[type='number'],
6
+ input[type='search'],
7
+ input[type='text'],
8
+ input[type='tel'],
9
+ input[type='url'],
10
+ input[type='password'],
11
+ textarea,
12
+ select {
13
+ height: 38px;
14
+ padding: 6px 10px; // The 6px vertically centers text on FF, ignored by Webkit
15
+ background-color: #fff;
16
+ border: 1px solid lighten($border-color, 8.8%);
17
+ border-radius: $global-radius;
18
+ box-shadow: none;
19
+ box-sizing: border-box;
20
+ }
21
+
22
+ // Removes awkward default styles on some inputs for iOS
23
+ input {
24
+ &[type="email"],
25
+ &[type="number"],
26
+ &[type="search"],
27
+ &[type="text"],
28
+ &[type="tel"],
29
+ &[type="url"],
30
+ &[type="password"] {
31
+ -webkit-appearance: none;
32
+ -moz-appearance: none;
33
+ appearance: none;
34
+ }
35
+ }
36
+
37
+ textarea {
38
+ -webkit-appearance: none;
39
+ -moz-appearance: none;
40
+ appearance: none;
41
+ min-height: 65px;
42
+ padding-top: 6px;
43
+ padding-bottom: 6px;
44
+ }
45
+
46
+ input {
47
+ &[type="email"]:focus,
48
+ &[type="number"]:focus,
49
+ &[type="search"]:focus,
50
+ &[type="text"]:focus,
51
+ &[type="tel"]:focus,
52
+ &[type="url"]:focus,
53
+ &[type="password"]:focus {
54
+ border: 1px solid $primary-color;
55
+ outline: 0;
56
+ }
57
+ }
58
+
59
+ textarea:focus,
60
+ select:focus {
61
+ border: 1px solid $primary-color;
62
+ outline: 0;
63
+ }
64
+
65
+ label,
66
+ legend {
67
+ display: block;
68
+ margin-bottom: .5rem;
69
+ font-weight: 600;
70
+ }
71
+
72
+ fieldset {
73
+ padding: 0;
74
+ border-width: 0;
75
+ }
76
+
77
+ input {
78
+ &[type="checkbox"],
79
+ &[type="radio"] {
80
+ display: inline;
81
+ }
82
+ }
83
+
84
+ label > .label-body {
85
+ display: inline-block;
86
+ margin-left: .5rem;
87
+ font-weight: normal;
88
+ }
@@ -0,0 +1,116 @@
1
+ /*
2
+ * Skeleton V2.0.4
3
+ * Copyright 2014, Dave Gamache
4
+ * www.getskeleton.com
5
+ * Free to use under the MIT license.
6
+ * http://www.opensource.org/licenses/mit-license.php
7
+ * 12/9/2014
8
+ * Sass Version by Seth Coelen https://github.com/whatsnewsaes
9
+ */
10
+
11
+ .container {
12
+ position: relative;
13
+ width: 100%;
14
+ max-width: $container-width;
15
+ margin: 0 auto;
16
+ padding: 0 20px;
17
+ box-sizing: border-box;
18
+ }
19
+
20
+ .column,
21
+ .columns {
22
+ width: 100%;
23
+ float: left;
24
+ box-sizing: border-box;
25
+ }
26
+
27
+ // For devices larger than 400px
28
+ @media (#{$bp-larger-than-mobile}) {
29
+ .container {
30
+ width: $container-width-larger-than-mobile;
31
+ padding: 0;
32
+ }
33
+ }
34
+
35
+ // For devices larger than 550px
36
+ @media (#{$bp-larger-than-phablet}) {
37
+ .container {
38
+ width: $container-width-larger-than-phablet;
39
+ }
40
+ .column,
41
+ .columns {
42
+ margin-left: $column-margin;
43
+ }
44
+ .column:first-child,
45
+ .columns:first-child {
46
+ margin-left: 0;
47
+ }
48
+
49
+ .one.column,
50
+ .one.columns { width: grid-column-width(1); }
51
+ .two.columns { width: grid-column-width(2); }
52
+ .three.columns { width: grid-column-width(3); }
53
+ .four.columns { width: grid-column-width(4); }
54
+ .five.columns { width: grid-column-width(5); }
55
+ .six.columns { width: grid-column-width(6); }
56
+ .seven.columns { width: grid-column-width(7); }
57
+ .eight.columns { width: grid-column-width(8); }
58
+ .nine.columns { width: grid-column-width(9); }
59
+ .ten.columns { width: grid-column-width(10); }
60
+ .eleven.columns { width: grid-column-width(11); }
61
+ .twelve.columns { width: 100%; margin-left: 0; }
62
+
63
+ .one-third.column { width: grid-column-width(4); }
64
+ .two-thirds.column { width: grid-column-width(8); }
65
+
66
+ .one-half.column { width: grid-column-width(6); }
67
+
68
+
69
+ // Offsets
70
+ .offset-by-one.column,
71
+ .offset-by-one.columns { margin-left: grid-offset-length(1); }
72
+ .offset-by-two.column,
73
+ .offset-by-two.columns { margin-left: grid-offset-length(2); }
74
+ .offset-by-three.column,
75
+ .offset-by-three.columns { margin-left: grid-offset-length(3); }
76
+ .offset-by-four.column,
77
+ .offset-by-four.columns { margin-left: grid-offset-length(4); }
78
+ .offset-by-five.column,
79
+ .offset-by-five.columns { margin-left: grid-offset-length(5); }
80
+ .offset-by-six.column,
81
+ .offset-by-six.columns { margin-left: grid-offset-length(6); }
82
+ .offset-by-seven.column,
83
+ .offset-by-seven.columns { margin-left: grid-offset-length(7); }
84
+ .offset-by-eight.column,
85
+ .offset-by-eight.columns { margin-left: grid-offset-length(8); }
86
+ .offset-by-nine.column,
87
+ .offset-by-nine.columns { margin-left: grid-offset-length(9); }
88
+ .offset-by-ten.column,
89
+ .offset-by-ten.columns { margin-left: grid-offset-length(10); }
90
+ .offset-by-eleven.column,
91
+ .offset-by-eleven.columns { margin-left: grid-offset-length(11); }
92
+
93
+
94
+ .offset-by-one-third.column,
95
+ .offset-by-one-third.columns { margin-left: grid-offset-length(4); }
96
+ .offset-by-two-thirds.column,
97
+ .offset-by-two-thirds.columns { margin-left: grid-offset-length(8); }
98
+
99
+ .offset-by-one-half.column,
100
+ .offset-by-one-half.column { margin-left: grid-offset-length(6); }
101
+
102
+
103
+ }
104
+
105
+ // Clearing
106
+ //––––––––––––––––––––––––––––––––––––––––––––––––––
107
+
108
+ // Self Clearing Goodness
109
+
110
+ .container:after,
111
+ .row:after,
112
+ .u-cf {
113
+ content: "";
114
+ display: table;
115
+ clear: both;
116
+ }
@@ -0,0 +1,32 @@
1
+ // Lists
2
+ //––––––––––––––––––––––––––––––––––––––––––––––––––
3
+
4
+ ul {
5
+ list-style: circle inside;
6
+ }
7
+
8
+ ol {
9
+ list-style: decimal inside;
10
+ padding-left: 0;
11
+ margin-top: 0;
12
+ }
13
+
14
+ ul {
15
+ padding-left: 0;
16
+ margin-top: 0;
17
+ ul, ol {
18
+ margin: 1.5rem 0 1.5rem 3rem;
19
+ font-size: 90%;
20
+ }
21
+ }
22
+
23
+ ol {
24
+ ol, ul {
25
+ margin: 1.5rem 0 1.5rem 3rem;
26
+ font-size: 90%;
27
+ }
28
+ }
29
+
30
+ li {
31
+ margin-bottom: 1rem;
32
+ }
@@ -0,0 +1,22 @@
1
+ // Media Queries
2
+ //––––––––––––––––––––––––––––––––––––––––––––––––––
3
+
4
+ // Note: The best way to structure the use of media queries is to create the queries
5
+ // near the relevant code. For example, if you wanted to change the styles for buttons
6
+ // on small devices, paste the mobile query code up in the buttons section and style it
7
+ // there.
8
+
9
+ // Larger than mobile
10
+ @media (#{$bp-larger-than-mobile}) {}
11
+
12
+ // Larger than phablet (also point when grid becomes active)
13
+ @media (#{$bp-larger-than-phablet}) {}
14
+
15
+ // Larger than tablet
16
+ @media (#{$bp-larger-than-tablet}) {}
17
+
18
+ // Larger than desktop
19
+ @media (#{$bp-larger-than-desktop}) {}
20
+
21
+ // Larger than Desktop HD
22
+ @media (#{$bp-larger-than-desktophd}) {}
@@ -0,0 +1,26 @@
1
+ // Spacing
2
+ //––––––––––––––––––––––––––––––––––––––––––––––––––
3
+
4
+ button,
5
+ .button {
6
+ margin-bottom: 1rem;
7
+ }
8
+
9
+ input,
10
+ textarea,
11
+ select,
12
+ fieldset {
13
+ margin-bottom: 1.5rem;
14
+ }
15
+
16
+ pre,
17
+ blockquote,
18
+ dl,
19
+ figure,
20
+ table,
21
+ p,
22
+ ul,
23
+ ol,
24
+ form {
25
+ margin-bottom: 2.5rem;
26
+ }
@@ -0,0 +1,19 @@
1
+ // Tables
2
+ //––––––––––––––––––––––––––––––––––––––––––––––––––
3
+
4
+ th,
5
+ td {
6
+ padding: 12px 15px;
7
+ text-align: left;
8
+ border-bottom: 1px solid $light-grey;
9
+ }
10
+
11
+ th:first-child,
12
+ td:first-child {
13
+ padding-left: 0;
14
+ }
15
+
16
+ th:last-child,
17
+ td:last-child {
18
+ padding-right: 0;
19
+ }