ssg-guideline 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +45 -0
  4. data/_layouts/default.html +1 -0
  5. data/_layouts/page.html +5 -0
  6. data/_layouts/post.html +5 -0
  7. data/_sass/bootstrap/_alert.scss +55 -0
  8. data/_sass/bootstrap/_badge.scss +77 -0
  9. data/_sass/bootstrap/_breadcrumb.scss +38 -0
  10. data/_sass/bootstrap/_button-group.scss +202 -0
  11. data/_sass/bootstrap/_buttons.scss +170 -0
  12. data/_sass/bootstrap/_card.scss +276 -0
  13. data/_sass/bootstrap/_carousel.scss +178 -0
  14. data/_sass/bootstrap/_close.scss +31 -0
  15. data/_sass/bootstrap/_code.scss +64 -0
  16. data/_sass/bootstrap/_custom-forms.scss +263 -0
  17. data/_sass/bootstrap/_custom.scss +4 -0
  18. data/_sass/bootstrap/_dropdown.scss +161 -0
  19. data/_sass/bootstrap/_forms.scss +388 -0
  20. data/_sass/bootstrap/_grid.scss +52 -0
  21. data/_sass/bootstrap/_images.scss +43 -0
  22. data/_sass/bootstrap/_input-group.scss +178 -0
  23. data/_sass/bootstrap/_jumbotron.scss +20 -0
  24. data/_sass/bootstrap/_list-group.scss +141 -0
  25. data/_sass/bootstrap/_media.scss +8 -0
  26. data/_sass/bootstrap/_mixins.scss +57 -0
  27. data/_sass/bootstrap/_modal.scss +142 -0
  28. data/_sass/bootstrap/_nav.scss +119 -0
  29. data/_sass/bootstrap/_navbar.scss +268 -0
  30. data/_sass/bootstrap/_normalize.scss +461 -0
  31. data/_sass/bootstrap/_pagination.scss +67 -0
  32. data/_sass/bootstrap/_popover.scss +171 -0
  33. data/_sass/bootstrap/_print.scss +119 -0
  34. data/_sass/bootstrap/_progress.scss +32 -0
  35. data/_sass/bootstrap/_reboot.scss +389 -0
  36. data/_sass/bootstrap/_responsive-embed.scss +52 -0
  37. data/_sass/bootstrap/_tables.scss +153 -0
  38. data/_sass/bootstrap/_tooltip.scss +90 -0
  39. data/_sass/bootstrap/_transitions.scss +34 -0
  40. data/_sass/bootstrap/_type.scss +143 -0
  41. data/_sass/bootstrap/_utilities.scss +13 -0
  42. data/_sass/bootstrap/_variables.scss +961 -0
  43. data/_sass/bootstrap/bootstrap-grid.scss +43 -0
  44. data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
  45. data/_sass/bootstrap/bootstrap.scss +54 -0
  46. data/_sass/extra/_syntax-highlighting.scss +71 -0
  47. data/_sass/main.scss +48 -0
  48. metadata +132 -0
@@ -0,0 +1,43 @@
1
+ // Bootstrap Grid only
2
+ //
3
+ // Includes relevant variables and mixins for the flexbox grid
4
+ // system, as well as the generated predefined classes (e.g., `.col-sm-4`).
5
+
6
+ //
7
+ // Box sizing, responsive, and more
8
+ //
9
+
10
+ @at-root {
11
+ @-ms-viewport { width: device-width; }
12
+ }
13
+
14
+ html {
15
+ box-sizing: border-box;
16
+ -ms-overflow-style: scrollbar;
17
+ }
18
+
19
+ *,
20
+ *::before,
21
+ *::after {
22
+ box-sizing: inherit;
23
+ }
24
+
25
+
26
+ //
27
+ // Variables
28
+ //
29
+
30
+ @import "variables";
31
+
32
+ //
33
+ // Grid mixins
34
+ //
35
+
36
+ @import "mixins/clearfix";
37
+ @import "mixins/breakpoints";
38
+ @import "mixins/grid-framework";
39
+ @import "mixins/grid";
40
+
41
+ @import "custom";
42
+
43
+ @import "grid";
@@ -0,0 +1,10 @@
1
+ // Bootstrap Reboot only
2
+ //
3
+ // Includes only Normalize and our custom Reboot reset.
4
+
5
+ @import "variables";
6
+ @import "mixins";
7
+ @import "custom";
8
+
9
+ @import "normalize";
10
+ @import "reboot";
@@ -0,0 +1,54 @@
1
+ /*!
2
+ * Bootstrap v4.0.0-alpha.6 (https://getbootstrap.com)
3
+ * Copyright 2011-2017 The Bootstrap Authors
4
+ * Copyright 2011-2017 Twitter, Inc.
5
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
+ */
7
+
8
+ // Core variables and mixins
9
+ @import "variables";
10
+ @import "mixins";
11
+ @import "custom";
12
+
13
+ // Reset and dependencies
14
+ @import "normalize";
15
+ @import "print";
16
+
17
+ // Core CSS
18
+ @import "reboot";
19
+ @import "type";
20
+ @import "images";
21
+ @import "code";
22
+ @import "grid";
23
+ @import "tables";
24
+ @import "forms";
25
+ @import "buttons";
26
+
27
+ // Components
28
+ @import "transitions";
29
+ @import "dropdown";
30
+ @import "button-group";
31
+ @import "input-group";
32
+ @import "custom-forms";
33
+ @import "nav";
34
+ @import "navbar";
35
+ @import "card";
36
+ @import "breadcrumb";
37
+ @import "pagination";
38
+ @import "badge";
39
+ @import "jumbotron";
40
+ @import "alert";
41
+ @import "progress";
42
+ @import "media";
43
+ @import "list-group";
44
+ @import "responsive-embed";
45
+ @import "close";
46
+
47
+ // Components w/ JavaScript
48
+ @import "modal";
49
+ @import "tooltip";
50
+ @import "popover";
51
+ @import "carousel";
52
+
53
+ // Utility classes
54
+ @import "utilities";
@@ -0,0 +1,71 @@
1
+ /**
2
+ * Syntax highlighting styles
3
+ */
4
+ .highlight {
5
+ background: #fff;
6
+ @extend %vertical-rhythm;
7
+
8
+ .highlighter-rouge & {
9
+ background: #eef;
10
+ }
11
+
12
+ .c { color: #998; font-style: italic } // Comment
13
+ .err { color: #a61717; background-color: #e3d2d2 } // Error
14
+ .k { font-weight: bold } // Keyword
15
+ .o { font-weight: bold } // Operator
16
+ .cm { color: #998; font-style: italic } // Comment.Multiline
17
+ .cp { color: #999; font-weight: bold } // Comment.Preproc
18
+ .c1 { color: #998; font-style: italic } // Comment.Single
19
+ .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
20
+ .gd { color: #000; background-color: #fdd } // Generic.Deleted
21
+ .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
22
+ .ge { font-style: italic } // Generic.Emph
23
+ .gr { color: #a00 } // Generic.Error
24
+ .gh { color: #999 } // Generic.Heading
25
+ .gi { color: #000; background-color: #dfd } // Generic.Inserted
26
+ .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
27
+ .go { color: #888 } // Generic.Output
28
+ .gp { color: #555 } // Generic.Prompt
29
+ .gs { font-weight: bold } // Generic.Strong
30
+ .gu { color: #aaa } // Generic.Subheading
31
+ .gt { color: #a00 } // Generic.Traceback
32
+ .kc { font-weight: bold } // Keyword.Constant
33
+ .kd { font-weight: bold } // Keyword.Declaration
34
+ .kp { font-weight: bold } // Keyword.Pseudo
35
+ .kr { font-weight: bold } // Keyword.Reserved
36
+ .kt { color: #458; font-weight: bold } // Keyword.Type
37
+ .m { color: #099 } // Literal.Number
38
+ .s { color: #d14 } // Literal.String
39
+ .na { color: #008080 } // Name.Attribute
40
+ .nb { color: #0086B3 } // Name.Builtin
41
+ .nc { color: #458; font-weight: bold } // Name.Class
42
+ .no { color: #008080 } // Name.Constant
43
+ .ni { color: #800080 } // Name.Entity
44
+ .ne { color: #900; font-weight: bold } // Name.Exception
45
+ .nf { color: #900; font-weight: bold } // Name.Function
46
+ .nn { color: #555 } // Name.Namespace
47
+ .nt { color: #000080 } // Name.Tag
48
+ .nv { color: #008080 } // Name.Variable
49
+ .ow { font-weight: bold } // Operator.Word
50
+ .w { color: #bbb } // Text.Whitespace
51
+ .mf { color: #099 } // Literal.Number.Float
52
+ .mh { color: #099 } // Literal.Number.Hex
53
+ .mi { color: #099 } // Literal.Number.Integer
54
+ .mo { color: #099 } // Literal.Number.Oct
55
+ .sb { color: #d14 } // Literal.String.Backtick
56
+ .sc { color: #d14 } // Literal.String.Char
57
+ .sd { color: #d14 } // Literal.String.Doc
58
+ .s2 { color: #d14 } // Literal.String.Double
59
+ .se { color: #d14 } // Literal.String.Escape
60
+ .sh { color: #d14 } // Literal.String.Heredoc
61
+ .si { color: #d14 } // Literal.String.Interpol
62
+ .sx { color: #d14 } // Literal.String.Other
63
+ .sr { color: #009926 } // Literal.String.Regex
64
+ .s1 { color: #d14 } // Literal.String.Single
65
+ .ss { color: #990073 } // Literal.String.Symbol
66
+ .bp { color: #999 } // Name.Builtin.Pseudo
67
+ .vc { color: #008080 } // Name.Variable.Class
68
+ .vg { color: #008080 } // Name.Variable.Global
69
+ .vi { color: #008080 } // Name.Variable.Instance
70
+ .il { color: #099 } // Literal.Number.Integer.Long
71
+ }
data/_sass/main.scss ADDED
@@ -0,0 +1,48 @@
1
+ @charset "utf-8";
2
+
3
+ // Define defaults for each variable.
4
+
5
+ $base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
6
+ $base-font-size: 16px !default;
7
+ $base-font-weight: 400 !default;
8
+ $small-font-size: $base-font-size * 0.875 !default;
9
+ $base-line-height: 1.5 !default;
10
+
11
+ $spacing-unit: 30px !default;
12
+
13
+ $text-color: #111 !default;
14
+ $background-color: #fdfdfd !default;
15
+ $brand-color: #0099ff !default;
16
+
17
+ $grey-color: #828282 !default;
18
+ $grey-color-light: lighten($grey-color, 40%) !default;
19
+ $grey-color-dark: darken($grey-color, 25%) !default;
20
+
21
+ // Width of the content area
22
+ $content-width: 1170px !default;
23
+
24
+ $on-palm: 600px !default;
25
+ $on-laptop: 800px !default;
26
+
27
+ // Use media queries like this:
28
+ // @include media-query($on-palm) {
29
+ // .wrapper {
30
+ // padding-right: $spacing-unit / 2;
31
+ // padding-left: $spacing-unit / 2;
32
+ // }
33
+ // }
34
+ @mixin media-query($device) {
35
+ @media screen and (max-width: $device) {
36
+ @content;
37
+ }
38
+ }
39
+
40
+ @mixin relative-font-size($ratio) {
41
+ font-size: $base-font-size * $ratio;
42
+ }
43
+
44
+ // Import partials.
45
+ @import
46
+ "bootstrap/bootstrap.scss",
47
+ "extra/syntax-highlighting"
48
+ ;
metadata ADDED
@@ -0,0 +1,132 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ssg-guideline
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - SCOTT Sports
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-06-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.4'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.4'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.12'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description:
56
+ email:
57
+ - online.marketing@scott-sports.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.txt
63
+ - README.md
64
+ - _layouts/default.html
65
+ - _layouts/page.html
66
+ - _layouts/post.html
67
+ - _sass/bootstrap/_alert.scss
68
+ - _sass/bootstrap/_badge.scss
69
+ - _sass/bootstrap/_breadcrumb.scss
70
+ - _sass/bootstrap/_button-group.scss
71
+ - _sass/bootstrap/_buttons.scss
72
+ - _sass/bootstrap/_card.scss
73
+ - _sass/bootstrap/_carousel.scss
74
+ - _sass/bootstrap/_close.scss
75
+ - _sass/bootstrap/_code.scss
76
+ - _sass/bootstrap/_custom-forms.scss
77
+ - _sass/bootstrap/_custom.scss
78
+ - _sass/bootstrap/_dropdown.scss
79
+ - _sass/bootstrap/_forms.scss
80
+ - _sass/bootstrap/_grid.scss
81
+ - _sass/bootstrap/_images.scss
82
+ - _sass/bootstrap/_input-group.scss
83
+ - _sass/bootstrap/_jumbotron.scss
84
+ - _sass/bootstrap/_list-group.scss
85
+ - _sass/bootstrap/_media.scss
86
+ - _sass/bootstrap/_mixins.scss
87
+ - _sass/bootstrap/_modal.scss
88
+ - _sass/bootstrap/_nav.scss
89
+ - _sass/bootstrap/_navbar.scss
90
+ - _sass/bootstrap/_normalize.scss
91
+ - _sass/bootstrap/_pagination.scss
92
+ - _sass/bootstrap/_popover.scss
93
+ - _sass/bootstrap/_print.scss
94
+ - _sass/bootstrap/_progress.scss
95
+ - _sass/bootstrap/_reboot.scss
96
+ - _sass/bootstrap/_responsive-embed.scss
97
+ - _sass/bootstrap/_tables.scss
98
+ - _sass/bootstrap/_tooltip.scss
99
+ - _sass/bootstrap/_transitions.scss
100
+ - _sass/bootstrap/_type.scss
101
+ - _sass/bootstrap/_utilities.scss
102
+ - _sass/bootstrap/_variables.scss
103
+ - _sass/bootstrap/bootstrap-grid.scss
104
+ - _sass/bootstrap/bootstrap-reboot.scss
105
+ - _sass/bootstrap/bootstrap.scss
106
+ - _sass/extra/_syntax-highlighting.scss
107
+ - _sass/main.scss
108
+ homepage: http://www.scott-sports.com
109
+ licenses:
110
+ - MIT
111
+ metadata: {}
112
+ post_install_message:
113
+ rdoc_options: []
114
+ require_paths:
115
+ - lib
116
+ required_ruby_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ required_rubygems_version: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ requirements: []
127
+ rubyforge_project:
128
+ rubygems_version: 2.6.11
129
+ signing_key:
130
+ specification_version: 4
131
+ summary: SCOTT Sports Group theme to have a consistent base accross all brands
132
+ test_files: []