spuit 0.1.2 → 0.2.1

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 (111) hide show
  1. checksums.yaml +4 -4
  2. data/.npmignore +1 -2
  3. data/Makefile +12 -0
  4. data/README.md +2 -1
  5. data/lib/spuit/version.rb +1 -1
  6. data/package.json +2 -25
  7. data/scss/components/_button.scss +28 -27
  8. data/scss/components/_group.scss +50 -0
  9. data/scss/components/_switch.scss +40 -24
  10. data/scss/components/_triangle.scss +4 -4
  11. data/scss/elements/{_custom-checkbox.scss → _custom-radio.scss} +31 -22
  12. data/scss/elements/_fieldset.scss +21 -49
  13. data/scss/elements/_input.scss +26 -11
  14. data/scss/elements/_radio.scss +39 -0
  15. data/scss/elements/_select.scss +7 -3
  16. data/scss/elements/_table.scss +4 -11
  17. data/scss/includes/_spacers.scss +1 -1
  18. data/scss/modules/_reset.scss +32 -0
  19. data/scss/spuit.scss +5 -1
  20. data/scss/variables/_defaults.scss +1 -0
  21. data/scss/variables/_fonts.scss +45 -0
  22. data/scss/variables/_media-queries.scss +2 -2
  23. data/site/.gitignore +117 -0
  24. data/site/README.md +12 -0
  25. data/site/archetypes/default.md +6 -0
  26. data/site/config.toml +24 -0
  27. data/site/content/posts/components.html +445 -0
  28. data/site/content/posts/example.md +66 -0
  29. data/site/content/posts/layouts.md +11 -0
  30. data/site/content/posts/layouts/2col.html +27 -0
  31. data/site/content/posts/layouts/holygrail.html +40 -0
  32. data/site/content/posts/layouts/stickyfooter.html +23 -0
  33. data/site/content/search.adoc +5 -0
  34. data/site/themes/spuit/.gitignore +68 -0
  35. data/site/themes/spuit/LICENSE.md +20 -0
  36. data/site/themes/spuit/README.md +66 -0
  37. data/site/themes/spuit/archetypes/default.md +7 -0
  38. data/{assets/javascripts/spuit → site/themes/spuit/assets/javascripts/_}/Common.js +0 -0
  39. data/{assets/javascripts/spuit → site/themes/spuit/assets/javascripts/_}/extend.js +0 -0
  40. data/site/themes/spuit/assets/javascripts/classes/HugoSearch.js +115 -0
  41. data/site/themes/spuit/assets/javascripts/classes/onof.js +107 -0
  42. data/site/themes/spuit/assets/javascripts/scripts.js +26 -0
  43. data/site/themes/spuit/assets/stylesheets/styles.scss +790 -0
  44. data/site/themes/spuit/assets/stylesheets/styles/components/_card.scss +160 -0
  45. data/site/themes/spuit/assets/stylesheets/styles/components/_syntax.scss +59 -0
  46. data/site/themes/spuit/assets/stylesheets/styles/config/_mixins.scss +8 -0
  47. data/site/themes/spuit/assets/stylesheets/styles/config/_variables.scss +6 -0
  48. data/site/themes/spuit/design/badge.sketch +0 -0
  49. data/site/themes/spuit/layouts/404.html +9 -0
  50. data/site/themes/spuit/layouts/_default/baseof.html +27 -0
  51. data/site/themes/spuit/layouts/_default/list.html +22 -0
  52. data/site/themes/spuit/layouts/_default/rss.xml +26 -0
  53. data/site/themes/spuit/layouts/_default/single.html +14 -0
  54. data/site/themes/spuit/layouts/_default/temp.html +5 -0
  55. data/site/themes/spuit/layouts/index.html +2 -0
  56. data/site/themes/spuit/layouts/json/single.html +28 -0
  57. data/site/themes/spuit/layouts/partials/foot.html +26 -0
  58. data/site/themes/spuit/layouts/partials/footer.html +5 -0
  59. data/site/themes/spuit/layouts/partials/head.html +52 -0
  60. data/site/themes/spuit/layouts/partials/header.html +4 -0
  61. data/site/themes/spuit/layouts/partials/parts/breadcrumbs.html +36 -0
  62. data/site/themes/spuit/layouts/partials/parts/info.html +19 -0
  63. data/site/themes/spuit/layouts/partials/parts/nextback.html +9 -0
  64. data/site/themes/spuit/layouts/partials/parts/pagenator.html +31 -0
  65. data/site/themes/spuit/layouts/partials/parts/pager.html +23 -0
  66. data/site/themes/spuit/layouts/partials/sidebar.html +52 -0
  67. data/site/themes/spuit/layouts/partials/widgets/archive.html +14 -0
  68. data/site/themes/spuit/layouts/partials/widgets/categories.html +12 -0
  69. data/site/themes/spuit/layouts/partials/widgets/recents.html +14 -0
  70. data/site/themes/spuit/layouts/partials/widgets/related.html +13 -0
  71. data/site/themes/spuit/layouts/partials/widgets/search-modal.html +19 -0
  72. data/site/themes/spuit/layouts/partials/widgets/search.html +10 -0
  73. data/site/themes/spuit/layouts/partials/widgets/tags.html +12 -0
  74. data/site/themes/spuit/layouts/shortcodes/blockquote.html +70 -0
  75. data/site/themes/spuit/layouts/shortcodes/card-amazon.html +28 -0
  76. data/site/themes/spuit/layouts/shortcodes/card-site.html +22 -0
  77. data/site/themes/spuit/layouts/shortcodes/card-store.html +28 -0
  78. data/site/themes/spuit/layouts/shortcodes/card-youtube.html +27 -0
  79. data/site/themes/spuit/layouts/shortcodes/previews.html +18 -0
  80. data/site/themes/spuit/package-lock.json +7959 -0
  81. data/site/themes/spuit/package.json +46 -0
  82. data/{dist → site/themes/spuit/static}/favicon.ico +0 -0
  83. data/site/themes/spuit/static/fonts/FontAwesome.otf +0 -0
  84. data/site/themes/spuit/static/fonts/fontawesome-webfont.eot +0 -0
  85. data/site/themes/spuit/static/fonts/fontawesome-webfont.svg +2671 -0
  86. data/site/themes/spuit/static/fonts/fontawesome-webfont.ttf +0 -0
  87. data/site/themes/spuit/static/fonts/fontawesome-webfont.woff +0 -0
  88. data/site/themes/spuit/static/fonts/fontawesome-webfont.woff2 +0 -0
  89. data/site/themes/spuit/static/images/appstore-badge.png +0 -0
  90. data/site/themes/spuit/static/images/appstore-badge_en.png +0 -0
  91. data/{dist → site/themes/spuit/static/images}/favicon.png +0 -0
  92. data/site/themes/spuit/static/images/google-play-badge.png +0 -0
  93. data/site/themes/spuit/static/images/google-play-badge_en.png +0 -0
  94. data/site/themes/spuit/static/javascripts/scripts.js +120 -0
  95. data/site/themes/spuit/static/stylesheets/styles.css +9763 -0
  96. data/site/themes/spuit/theme.toml +9 -0
  97. data/site/themes/spuit/webpack.config.js +10 -0
  98. data/site/themes/spuit/webpack/css.webpack.config.js +42 -0
  99. data/site/themes/spuit/webpack/js.webpack.config.js +21 -0
  100. data/site/themes/spuit/yarn.lock +6815 -0
  101. data/yarn.lock +337 -4942
  102. metadata +84 -16
  103. data/assets/html/index.ejs +0 -331
  104. data/assets/javascripts/scripts.js +0 -4
  105. data/assets/stylesheets/styles.scss +0 -191
  106. data/assets/stylesheets/styles/config/_mixins.scss +0 -26
  107. data/assets/stylesheets/styles/config/_variables.scss +0 -4
  108. data/dist/index.html +0 -1
  109. data/dist/javascripts/scripts.js +0 -1
  110. data/dist/stylesheets/styles.css +0 -3
  111. data/scss/_/_form.sass +0 -44
@@ -1,63 +1,35 @@
1
- @mixin fieldset-base($legend-width: 100px, $gutter: 20px) {
2
- @include clearfix;
3
- position: relative;
4
- padding-left: $legend-width + $gutter;
5
- padding-bottom: 0.5rem;
6
-
7
- @include breakpoint-down(sm) {
8
- padding-left: 0;
9
- padding-bottom: 1rem;
10
- }
11
-
12
- > legend {
13
- width: $legend-width;
14
- margin-left: -($legend-width + $gutter);
15
- display: inline-block;
16
- vertical-align: middle;
17
- float: left;
1
+ @mixin fieldset-horizontal {
2
+ display: flex;
3
+ justify-content: flex-start;
4
+ align-items: flex-start;
18
5
 
19
- @include breakpoint-down(sm) {
20
- display: block;
21
- float: none;
22
- width: auto;
23
- margin-left: 0;
6
+ > * {
7
+ &:first-child {
8
+ flex: 0 0 30%;
9
+ }
10
+ &:not(:first-child) {
11
+ flex: 1 1 auto;
24
12
  }
25
13
  }
26
14
 
27
- &.has-padding {
28
- > legend {
29
- padding-top: 0.5rem;
30
- @include breakpoint-down(sm) {
31
- padding-top: 0;
15
+ &.has-input {
16
+ > * {
17
+ &:first-child {
18
+ margin-top: 0.6rem;
32
19
  }
33
20
  }
34
21
  }
35
22
  }
36
23
 
37
- //not <fieldset/>
38
- @mixin fieldset-flex($legend-width: 30%, $gutter: 20px) {
24
+ @mixin fieldset-vertical {
39
25
  display: flex;
40
- justify-content: space-between;
41
- align-items: center;
42
- min-width: 0;
43
- padding: 0;
44
- margin: 0 0 10px;
45
- border: 0;
46
-
47
- &:last-child {
48
- margin-bottom: 0;
49
- }
26
+ flex-wrap: wrap;
50
27
 
51
- label, legend {
52
- margin-bottom: 0;
53
- }
28
+ > * {
29
+ flex-basis: 100%;
54
30
 
55
- > legend {
56
- width: $legend-width;
57
- padding-right: $gutter;
58
- }
59
-
60
- > *:not(legend) {
61
- flex: 1;
31
+ &:first-child {
32
+ margin-bottom: 0.5rem;
33
+ }
62
34
  }
63
35
  }
@@ -1,35 +1,50 @@
1
- @mixin input-base($w: auto, $p: 10px 10px) {
1
+ @mixin input-base($w: auto, $p: 0.4rem 0.5rem) {
2
2
  @include reset-form;
3
+
3
4
  font-size: inherit;
4
5
  display: inline-block;
5
6
  width: $w;
6
7
  padding: $p;
7
8
  box-sizing: border-box;
8
9
  line-height: 1;
10
+
9
11
  &::placeholder {
10
12
  font-size: inherit;
11
13
  }
14
+ }
15
+
16
+ @mixin input-normal($w: auto, $p: 0.4rem 0.5rem, $r: 2px, $c: rgba(#529ef6, 0.5)) {
17
+ @include input-base($w, $p);
18
+
19
+ border-radius: $r;
20
+ border: 1px solid #ddd;
21
+
22
+ &::placeholder {
23
+ color: #ddd;
24
+ }
25
+
26
+ &:hover {
27
+ border-color: $c;
28
+ }
29
+
12
30
  &:focus {
13
- outline: 0;
31
+ border: 1px solid $c;
32
+ outline: 5px solid rgba($c, 0.2);
14
33
  }
15
34
  }
16
35
 
17
- @mixin input-normal($w: auto, $p: 10px 10px) {
18
- @include reset-form;
36
+ @mixin file-normal($w: auto, $p: 0.4rem 0.5rem, $r: 2px, $c: rgba(#529ef6, 0.5)) {
19
37
  @include input-base($w, $p);
20
38
 
21
- $color-border: #ddd;
22
- $color-border-key: rgba(#529ef6, 0.5);
23
- $color-bg-select: #fffff2;
24
-
25
- border: 1px solid $color-border;
39
+ border-radius: $r;
40
+ border: 1px solid #ddd;
26
41
 
27
42
  &::placeholder {
28
43
  color: #ddd;
29
44
  }
30
45
 
31
46
  &:focus {
32
- border: 1px solid $color-border-key;
33
- background: $color-bg-select;
47
+ border: 1px solid $c;
48
+ outline: 3px solid rgba($c, 0.2);
34
49
  }
35
50
  }
@@ -0,0 +1,39 @@
1
+ @mixin radio-normal {
2
+ display: flex;
3
+ align-items: center;
4
+
5
+ > input[type="radio"],
6
+ > input[type="checkbox"] {
7
+ cursor: pointer;
8
+ display: inline-block;
9
+ margin: 0;
10
+ transform: translateY(-0.05rem);
11
+
12
+ &:active {
13
+ + label {
14
+ outline: $outline-active;
15
+ }
16
+ }
17
+ }
18
+
19
+ > label {
20
+ cursor: pointer;
21
+ margin: 0 0 0 0.2rem;
22
+
23
+ > input[type="radio"],
24
+ > input[type="checkbox"] {
25
+ cursor: pointer;
26
+ display: inline-block;
27
+ margin: 0 0.2rem 0 -0.2rem;
28
+ transform: translateY(-0.05rem);
29
+ }
30
+
31
+ &:active {
32
+ outline: $outline-active;
33
+ }
34
+ }
35
+ }
36
+
37
+ @mixin checkbox-normal {
38
+ @include radio-nomal;
39
+ }
@@ -1,5 +1,5 @@
1
- @mixin select-base($w: 200px, $h: 40px) {
2
- $icon-select: 'DQo8c3ZnIHdpZHRoPSI2cHgiIGhlaWdodD0iMTBweCIgdmlld0JveD0iMTQ3IDIyNSA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNDIgKDM2NzgxKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4NCiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4NCiAgICA8ZGVmcz48L2RlZnM+DQogICAgPHBhdGggZD0iTTE1MCwyMjUgTDE1MywyMjkgTDE0NywyMjkgTDE1MCwyMjUgWiBNMTUwLDIzNSBMMTQ3LDIzMSBMMTUzLDIzMSBMMTUwLDIzNSBaIiBpZD0iQ29tYmluZWQtU2hhcGUiIHN0cm9rZT0ibm9uZSIgZmlsbD0iIzAwMDAwMCIgZmlsbC1ydWxlPSJldmVub2RkIj48L3BhdGg+DQo8L3N2Zz4=';
1
+ @mixin select-normal($w: 200px, $h: 40px) {
2
+ $icon-select: "DQo8c3ZnIHdpZHRoPSI2cHgiIGhlaWdodD0iMTBweCIgdmlld0JveD0iMTQ3IDIyNSA2IDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNDIgKDM2NzgxKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4NCiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4NCiAgICA8ZGVmcz48L2RlZnM+DQogICAgPHBhdGggZD0iTTE1MCwyMjUgTDE1MywyMjkgTDE0NywyMjkgTDE1MCwyMjUgWiBNMTUwLDIzNSBMMTQ3LDIzMSBMMTUzLDIzMSBMMTUwLDIzNSBaIiBpZD0iQ29tYmluZWQtU2hhcGUiIHN0cm9rZT0ibm9uZSIgZmlsbD0iIzAwMDAwMCIgZmlsbC1ydWxlPSJldmVub2RkIj48L3BhdGg+DQo8L3N2Zz4=";
3
3
 
4
4
  padding: 0;
5
5
  margin: 0;
@@ -8,11 +8,15 @@
8
8
  border-radius: 3px;
9
9
  overflow: hidden;
10
10
  background-color: #fff;
11
- background-image: url('data:image/svg+xml;base64,#{$icon-select}');
11
+ background-image: url("data:image/svg+xml;base64,#{$icon-select}");
12
12
  background-repeat: no-repeat;
13
13
  background-position: right 12px top 15px;
14
14
  background-size: 6px 10px;
15
15
 
16
+ &:focus {
17
+ outline: $outline-active;
18
+ }
19
+
16
20
  select {
17
21
  padding: 5px 12px;
18
22
  width: 130%;
@@ -1,4 +1,4 @@
1
- @mixin table-base($p: 5px 10px) {
1
+ @mixin table-base($p: 0.5rem 1rem) {
2
2
  width: 100%;
3
3
  border-collapse: collapse;
4
4
  margin-bottom: 0;
@@ -13,9 +13,7 @@
13
13
  }
14
14
  }
15
15
 
16
- // .table--normal
17
- // +table-normal
18
- @mixin table-normal($p: 5px 10px, $border-top: 2px solid #eee, $border: 1px solid #eee) {
16
+ @mixin table-normal($p: 0.5rem 1rem, $border-top: 2px solid #eee, $border: 1px solid #eee) {
19
17
  @include table-base($p);
20
18
  border-top: $border;
21
19
 
@@ -23,7 +21,6 @@
23
21
  tr {
24
22
  th,
25
23
  td {
26
- font-size: 0.8rem;
27
24
  border: $border;
28
25
  border-bottom: $border-top;
29
26
  }
@@ -51,9 +48,7 @@
51
48
  }
52
49
  }
53
50
 
54
- // .table--line
55
- // +table-line
56
- @mixin table-line($border-top: 2px solid #eee, $border: 1px solid #eee) {
51
+ @mixin table-line($p: 0.5rem 1rem, $border-top: 2px solid #eee, $border: 1px solid #eee) {
57
52
  @include table-base;
58
53
 
59
54
  thead {
@@ -80,9 +75,7 @@
80
75
  }
81
76
  }
82
77
 
83
- // .table--stripe
84
- // +table-stripe
85
- @mixin table-stripe($color-thead: #fff, $color-even: #eee, $color-odd: #f8f8f8) {
78
+ @mixin table-stripe($p: 0.5rem 1rem, $color-thead: #fff, $color-even: #fff, $color-odd: #f8f8f8) {
86
79
  @include table-base;
87
80
 
88
81
  thead {
@@ -35,7 +35,7 @@ from: https://github.com/twbs/bootstrap/blob/v4-dev/scss/utilities/_spacing.scss
35
35
  )
36
36
  ) !default;
37
37
 
38
- @each $breakpoint in map-keys($media-breakpoints) {
38
+ @each $breakpoint in map-keys($grid-breakpoints) {
39
39
  @include breakpoint-up($breakpoint) {
40
40
 
41
41
  @each $prop, $abbrev in (margin: m, padding: p) {
@@ -1,3 +1,35 @@
1
+ @mixin reset-button($c: transparent) {
2
+ box-sizing: border-box;
3
+ box-shadow: none;
4
+ appearance: none;
5
+ display: inline-block;
6
+ border-radius: 0;
7
+ background-color: $c;
8
+ background-image: linear-gradient(to top, $c, $c);
9
+ position: relative;
10
+ cursor: pointer;
11
+ text-align: center;
12
+ font-weight: normal;
13
+ margin: 0;
14
+ padding: 0;
15
+ border: none;
16
+ outline: none;
17
+ &:link,
18
+ &:visited,
19
+ &:hover,
20
+ &:active,
21
+ &:active {
22
+ text-decoration: none;
23
+ }
24
+ &:focus {
25
+ outline: none;
26
+ }
27
+ &:disabled {
28
+ cursor: default;
29
+ pointer-events: none;
30
+ }
31
+ }
32
+
1
33
  @mixin reset-form() {
2
34
  margin: 0;
3
35
  padding: 0;
@@ -6,6 +6,7 @@
6
6
  @import 'variables/media-queries';
7
7
  @import 'variables/colors';
8
8
  @import 'variables/svgs';
9
+ @import 'variables/defaults';
9
10
 
10
11
  // module mixins
11
12
  @import 'modules/clearfix';
@@ -37,8 +38,11 @@
37
38
  // shortcut components, element
38
39
  @import 'components/button';
39
40
  @import 'components/switch';
41
+ @import 'components/group';
42
+
40
43
  @import 'elements/table';
41
44
  @import 'elements/input';
42
45
  @import 'elements/fieldset';
43
- @import 'elements/custom-checkbox';
46
+ @import 'elements/radio';
47
+ @import 'elements/custom-radio';
44
48
  @import 'elements/select';
@@ -1,3 +1,4 @@
1
1
  $gradient: linear-gradient(to right bottom, #000 0%, lighten(#000, 10%) 100%) !default;
2
2
  $shadow: 0px 5px 10px rgba(0, 0, 0, 0.1) !default;
3
3
  $transition: all 0.2s ease-out !default;
4
+ $outline-active: 3px solid rgba(#529ef6, 0.2) !default;
@@ -1,6 +1,51 @@
1
+ // family
1
2
  $font-sans: -apple-system,BlinkMacSystemFont,Helvetica Neue,Hiragino Kaku Gothic Pro,ヒラギノ角ゴ ProN W3,Arial,メイリオ,Meiryo,Osaka,sans-serif !default;
2
3
  $font-serif: 'ヒラギノ明朝 Pro W6', 'Hiragino Mincho Pro', 'HGS明朝E', 'MS P明朝', serif !default;
3
4
 
4
5
  $font-yu: YuGothic, '游ゴシック',$font-sans !default;
5
6
  $font-yumin: YuMincho, '游明朝',$font-serif !default;
6
7
  $font-code: Consolas, 'Courier New', Courier, monospace !default;
8
+
9
+ // hms
10
+ // from: https://standard.shiftbrain.com/blog/harmonic-modular-scale-tools
11
+ $font-size-7: calc(1rem * 8);//128
12
+ $font-size-6: calc(1rem * 8 / 2);//64
13
+ $font-size-5: calc(1rem * 8 / 3);//42.666
14
+ $font-size-4: calc(1rem * 8 / 4);//32px
15
+ $font-size-3: calc(1rem * 8 / 5);//25.6px
16
+ $font-size-2: calc(1rem * 8 / 6);//21.333px
17
+ $font-size-1: calc(1rem * 8 / 7);//18.286px
18
+ $font-size-0: 1rem;//16px
19
+ $font-size-m1: calc(1rem * 8 / 9);//14.222px
20
+ $font-size-m2: calc(1rem * 8 / 10);//12.8px
21
+ $font-size-m3: calc(1rem * 8 / 11);//11.636px
22
+ $font-size-m4: calc(1rem * 8 / 12);//10.667px
23
+
24
+ $line-height-3: calc(1em * 70 / 32);//28px
25
+ $line-height-2: calc(1em * 60 / 32);//24px
26
+ $line-height-1: calc(1em * 50 / 32);//20px
27
+ $line-height-0: calc(1em * 40 / 32);//16px
28
+ $line-height-m1: calc(1em * 30 / 32);//12px
29
+
30
+ $font-sizes: (
31
+ 0: $font-size-0,
32
+ 1: $font-size-1,
33
+ 2: $font-size-2,
34
+ 3: $font-size-3,
35
+ 4: $font-size-4,
36
+ 5: $font-size-5,
37
+ 6: $font-size-6,
38
+ 7: $font-size-7,
39
+ -1: $font-size-m1,
40
+ -2: $font-size-m2,
41
+ -3: $font-size-m3,
42
+ -4: $font-size-m4
43
+ );
44
+
45
+ $line-heights: (
46
+ 0: $line-height-0,
47
+ 1: $line-height-1,
48
+ 2: $line-height-2,
49
+ 3: $line-height-3,
50
+ -1: $line-height-m1
51
+ );
@@ -1,4 +1,4 @@
1
- $grid-breakpoints: (
1
+ $grid-breakpoints-em: (
2
2
  xs: 0,
3
3
  sm: 34em,
4
4
  md: 48em,
@@ -6,7 +6,7 @@ $grid-breakpoints: (
6
6
  xl: 75em
7
7
  ) !default;
8
8
 
9
- $grid-breakpoints-px: (
9
+ $grid-breakpoints: (
10
10
  xs: 0,
11
11
  sm: 576px,
12
12
  md: 768px,
@@ -0,0 +1,117 @@
1
+
2
+ # Created by https://www.gitignore.io/api/hugo,node,windows,osx
3
+
4
+ ### Hugo ###
5
+ hugo.exe
6
+ /public/
7
+ ### Node ###
8
+ # Logs
9
+ logs
10
+ *.log
11
+ npm-debug.log*
12
+ yarn-debug.log*
13
+ yarn-error.log*
14
+
15
+ # Runtime data
16
+ pids
17
+ *.pid
18
+ *.seed
19
+ *.pid.lock
20
+
21
+ # Directory for instrumented libs generated by jscoverage/JSCover
22
+ lib-cov
23
+
24
+ # Coverage directory used by tools like istanbul
25
+ coverage
26
+
27
+ # nyc test coverage
28
+ .nyc_output
29
+
30
+ # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
31
+ .grunt
32
+
33
+ # Bower dependency directory (https://bower.io/)
34
+ bower_components
35
+
36
+ # node-waf configuration
37
+ .lock-wscript
38
+
39
+ # Compiled binary addons (http://nodejs.org/api/addons.html)
40
+ build/Release
41
+
42
+ # Dependency directories
43
+ node_modules/
44
+ jspm_packages/
45
+
46
+ # Typescript v1 declaration files
47
+ typings/
48
+
49
+ # Optional npm cache directory
50
+ .npm
51
+
52
+ # Optional eslint cache
53
+ .eslintcache
54
+
55
+ # Optional REPL history
56
+ .node_repl_history
57
+
58
+ # Output of 'npm pack'
59
+ *.tgz
60
+
61
+ # Yarn Integrity file
62
+ .yarn-integrity
63
+
64
+ # dotenv environment variables file
65
+ .env
66
+
67
+
68
+ ### OSX ###
69
+ *.DS_Store
70
+ .AppleDouble
71
+ .LSOverride
72
+
73
+ # Icon must end with two \r
74
+ Icon
75
+
76
+ # Thumbnails
77
+ ._*
78
+
79
+ # Files that might appear in the root of a volume
80
+ .DocumentRevisions-V100
81
+ .fseventsd
82
+ .Spotlight-V100
83
+ .TemporaryItems
84
+ .Trashes
85
+ .VolumeIcon.icns
86
+ .com.apple.timemachine.donotpresent
87
+
88
+ # Directories potentially created on remote AFP share
89
+ .AppleDB
90
+ .AppleDesktop
91
+ Network Trash Folder
92
+ Temporary Items
93
+ .apdisk
94
+
95
+ ### Windows ###
96
+ # Windows thumbnail cache files
97
+ Thumbs.db
98
+ ehthumbs.db
99
+ ehthumbs_vista.db
100
+
101
+ # Folder config file
102
+ Desktop.ini
103
+
104
+ # Recycle Bin used on file shares
105
+ $RECYCLE.BIN/
106
+
107
+ # Windows Installer files
108
+ *.cab
109
+ *.msi
110
+ *.msm
111
+ *.msp
112
+
113
+ # Windows shortcuts
114
+ *.lnk
115
+
116
+
117
+ # End of https://www.gitignore.io/api/hugo,node,windows,osx