prettydocs-jekyll 0.1.4 → 0.1.5

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 (39) hide show
  1. checksums.yaml +5 -5
  2. data/_data/default/faqs.yml +24 -1
  3. data/_data/default/timeline.yml +2 -8
  4. data/_includes/_partials/social-buttons.html +4 -4
  5. data/_includes/_partials/toc.html +10 -9
  6. data/_includes/_sections/blog_post.html +2 -2
  7. data/_includes/_sections/cards.html +1 -1
  8. data/_includes/_sections/contact.html +3 -3
  9. data/_includes/_sections/faqs.html +1 -1
  10. data/_includes/_sections/timeline.html +38 -35
  11. data/_includes/_theme/footer.html +1 -1
  12. data/_includes/_theme/head.html +9 -4
  13. data/_includes/_theme/header.html +7 -3
  14. data/_includes/_theme/js.html +21 -6
  15. data/_layouts/default.html +1 -3
  16. data/_layouts/faqs.html +19 -5
  17. data/_layouts/page.html +17 -13
  18. data/_layouts/post.html +40 -2
  19. data/_sass/prettydocs-jekyll.scss +1 -18
  20. data/_sass/vendor/_prettydocs.scss +47 -0
  21. data/_sass/vendor/prettydocs/_base.scss +343 -0
  22. data/_sass/{partials → vendor/prettydocs}/_doc.scss +250 -24
  23. data/_sass/{partials/_contact.scss → vendor/prettydocs/_extra.scss} +2 -4
  24. data/_sass/{partials/_cards.scss → vendor/prettydocs/_landing.scss} +101 -6
  25. data/_sass/vendor/prettydocs/_mixins.scss +175 -0
  26. data/_sass/vendor/prettydocs/config.codekit3 +2439 -0
  27. data/assets/js/main.js +12 -28
  28. metadata +18 -26
  29. data/_sass/globals/_base.scss +0 -44
  30. data/_sass/globals/_mixins.scss +0 -175
  31. data/_sass/partials/_base.scss +0 -109
  32. data/_sass/partials/_buttons.scss +0 -97
  33. data/_sass/partials/_footer.scss +0 -8
  34. data/_sass/partials/_header.scss +0 -91
  35. data/_sass/partials/_helper.scss +0 -42
  36. data/_sass/partials/_landing.scss +0 -61
  37. data/_sass/partials/_post.scss +0 -32
  38. data/_sass/partials/_resources.scss +0 -10
  39. data/_sass/partials/_toc.scss +0 -163
data/assets/js/main.js CHANGED
@@ -1,45 +1,29 @@
1
1
  $(document).ready(function() {
2
-
3
- /* ===== Affix Sidebar ===== */
4
- /* Ref: http://getbootstrap.com/javascript/#affix-examples */
5
2
 
6
-
7
- $('#toc-menu').affix({
8
- offset: {
9
- top: ($('#header').outerHeight(true) + $('#doc-header').outerHeight(true)) + 45,
10
- bottom: ($('#footer').outerHeight(true) + $('#promo-block').outerHeight(true)) + 75
11
- }
12
- });
13
-
14
- /* Hack related to: https://github.com/twbs/bootstrap/issues/10236 */
15
- $(window).on('load resize', function() {
16
- $(window).trigger('scroll');
17
- });
3
+ /* ===== Stickyfill ===== */
4
+ /* Ref: https://github.com/wilddeer/stickyfill */
5
+ // Add browser support to position: sticky
6
+ var elements = $('.sticky');
7
+ Stickyfill.add(elements);
18
8
 
19
9
  /* Activate scrollspy menu */
20
- $('body').scrollspy({target: '#toc-nav', offset: 100});
21
-
10
+ $('body').scrollspy({target: '#doc-menu', offset: 100});
11
+
22
12
  /* Smooth scrolling */
23
13
  $('a.scrollto').on('click', function(e){
24
14
  //store hash
25
- var target = this.hash;
15
+ var target = this.hash;
26
16
  e.preventDefault();
27
17
  $('body').scrollTo(target, 800, {offset: 0, 'axis':'y'});
28
-
18
+
29
19
  });
30
-
31
-
32
- /* ======= jQuery Responsive equal heights plugin ======= */
33
- /* Ref: https://github.com/liabru/jquery-match-height */
34
-
35
- $('.cards-wrapper .item-inner').matchHeight();
36
- $('#showcase .card').matchHeight();
37
-
20
+
38
21
  /* Bootstrap lightbox */
39
22
  /* Ref: http://ashleydw.github.io/lightbox/ */
40
23
 
41
24
  $(document).delegate('*[data-toggle="lightbox"]', 'click', function(e) {
42
25
  e.preventDefault();
43
26
  $(this).ekkoLightbox();
44
- });
27
+ });
28
+
45
29
  });
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prettydocs-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexandru Coman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-28 00:00:00.000000000 Z
11
+ date: 2019-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -16,56 +16,56 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.3'
19
+ version: '4.0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '3.3'
26
+ version: '4.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.12'
33
+ version: 2.0.2
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.12'
40
+ version: 2.0.2
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: jekyll-paginate
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '1.0'
47
+ version: '1.1'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '1.0'
54
+ version: '1.1'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: jekyll-sitemap
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '1.1'
61
+ version: 1.3.1
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '1.1'
68
+ version: 1.3.1
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: liquid-md5
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -122,23 +122,16 @@ files:
122
122
  - _layouts/page.html
123
123
  - _layouts/post.html
124
124
  - _layouts/shower.html
125
- - _sass/globals/_base.scss
126
- - _sass/globals/_mixins.scss
127
- - _sass/partials/_base.scss
128
- - _sass/partials/_buttons.scss
129
- - _sass/partials/_cards.scss
130
- - _sass/partials/_contact.scss
131
- - _sass/partials/_doc.scss
132
- - _sass/partials/_footer.scss
133
- - _sass/partials/_header.scss
134
- - _sass/partials/_helper.scss
135
- - _sass/partials/_landing.scss
136
- - _sass/partials/_post.scss
137
- - _sass/partials/_resources.scss
138
- - _sass/partials/_toc.scss
139
125
  - _sass/prettydocs-jekyll.scss
126
+ - _sass/vendor/_prettydocs.scss
140
127
  - _sass/vendor/_shower.scss
141
128
  - _sass/vendor/_timeline.scss
129
+ - _sass/vendor/prettydocs/_base.scss
130
+ - _sass/vendor/prettydocs/_doc.scss
131
+ - _sass/vendor/prettydocs/_extra.scss
132
+ - _sass/vendor/prettydocs/_landing.scss
133
+ - _sass/vendor/prettydocs/_mixins.scss
134
+ - _sass/vendor/prettydocs/config.codekit3
142
135
  - _sass/vendor/shower/defaults.scss
143
136
  - _sass/vendor/shower/reset.scss
144
137
  - _sass/vendor/shower/screen.scss
@@ -186,8 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
186
179
  - !ruby/object:Gem::Version
187
180
  version: '0'
188
181
  requirements: []
189
- rubyforge_project:
190
- rubygems_version: 2.6.14
182
+ rubygems_version: 3.0.1
191
183
  signing_key:
192
184
  specification_version: 4
193
185
  summary: PrettyDocs-Jekyll is a free project documentation theme designed for developers
@@ -1,44 +0,0 @@
1
- // Variables
2
- $color-primary: #40babd;
3
- $color-green: #75c181;
4
- $color-red: #f77b6b;
5
- $color-blue: #58bbee;
6
- $color-orange: #F88C30;
7
- $color-pink: #EA5395;
8
- $color-purple: #8A40A7;
9
-
10
- $text-color: #494d55;
11
- $text-color-secondary: lighten($text-color, 10%);
12
- $text-grey: lighten($text-color-secondary, 25%);
13
-
14
- $grey: lighten($text-color-secondary, 25%);
15
- $light-grey: #c3c3c3;
16
- $dark-grey: #666;
17
- $black: #000;
18
- $smoky-white: #f5f5f5;
19
- $smoky-grey: #f9f9fb;
20
- $divider: #f0f0f0;
21
-
22
- $new: #60A823;
23
- $error: #E65348;
24
- $facebook: #3b5998;
25
- $twitter: #55acee;
26
- $google: #dd4b39;
27
- $github: #444;
28
-
29
- $primary: #1a7bd3;
30
- $primary-hover: #3266d5;
31
- $dark: #0b141f;
32
- $light: #EEE;
33
- $timeline-border: #036;
34
- $console: #6a7490;
35
-
36
- $regular: 300;
37
- $bold: 500;
38
-
39
- $social-buttons-color: $primary;
40
-
41
- $base-transition: all .3s;
42
- $base-cubic-transition: all .3s cubic-bezier(0.175, 0.885, 0.320, 1.275);
43
- $long-transition: all .5s;
44
- $long-cubic-transition: all .5s cubic-bezier(0.175, 0.885, 0.320, 1.275);
@@ -1,175 +0,0 @@
1
- // Mixins
2
- @mixin text-shadow($string: 0 1px 3px rgba(0, 0, 0, 0.25)) {
3
- text-shadow: $string;
4
- }
5
-
6
- @mixin box-shadow($string) {
7
- -webkit-box-shadow: $string;
8
- -moz-box-shadow: $string;
9
- box-shadow: $string;
10
- }
11
-
12
- @mixin drop-shadow($x: 0, $y: 1px, $blur: 2px, $spread: 0, $alpha: 0.25) {
13
- -webkit-box-shadow: $x $y $blur $spread rgba(0, 0, 0, $alpha);
14
- -moz-box-shadow: $x $y $blur $spread rgba(0, 0, 0, $alpha);
15
- box-shadow: $x $y $blur $spread rgba(0, 0, 0, $alpha);
16
- }
17
-
18
- @mixin inner-shadow($x: 0, $y: 1px, $blur: 2px, $spread: 0, $alpha: 0.25) {
19
- -webkit-box-shadow: inset $x $y $blur $spread rgba(0, 0, 0, $alpha);
20
- -moz-box-shadow: inset $x $y $blur $spread rgba(0, 0, 0, $alpha);
21
- box-shadow: inset $x $y $blur $spread rgba(0, 0, 0, $alpha);
22
- }
23
-
24
- @mixin box-sizing($type: border-box) {
25
- -webkit-box-sizing: $type;
26
- -moz-box-sizing: $type;
27
- box-sizing: $type;
28
- }
29
-
30
- @mixin border-radius($radius: 5px) {
31
- -webkit-border-radius: $radius;
32
- -moz-border-radius: $radius;
33
- -ms-border-radius: $radius;
34
- -o-border-radius: $radius;
35
- border-radius: $radius;
36
-
37
- -moz-background-clip: padding;
38
- -webkit-background-clip: padding-box;
39
- background-clip: padding-box;
40
- }
41
-
42
- @mixin border-radiuses($topright: 0, $bottomright: 0, $bottomleft: 0, $topleft: 0) {
43
- -webkit-border-top-right-radius: $topright;
44
- -webkit-border-bottom-right-radius: $bottomright;
45
- -webkit-border-bottom-left-radius: $bottomleft;
46
- -webkit-border-top-left-radius: $topleft;
47
-
48
- -moz-border-radius-topright: $topright;
49
- -moz-border-radius-bottomright: $bottomright;
50
- -moz-border-radius-bottomleft: $bottomleft;
51
- -moz-border-radius-topleft: $topleft;
52
-
53
- border-top-right-radius: $topright;
54
- border-bottom-right-radius: $bottomright;
55
- border-bottom-left-radius: $bottomleft;
56
- border-top-left-radius: $topleft;
57
-
58
- -moz-background-clip: padding;
59
- -webkit-background-clip: padding-box;
60
- background-clip: padding-box;
61
- }
62
-
63
- @mixin opacity($opacity: 0.5) {
64
- -webkit-opacity: $opacity;
65
- -moz-opacity: $opacity;
66
- opacity: $opacity;
67
- }
68
-
69
- @mixin gradient($startColor: #eee, $endColor: white) {
70
- background-color: $startColor;
71
- background: -webkit-gradient(linear, left top, left bottom, from($startColor), to($endColor));
72
- background: -webkit-linear-gradient(top, $startColor, $endColor);
73
- background: -moz-linear-gradient(top, $startColor, $endColor);
74
- background: -ms-linear-gradient(top, $startColor, $endColor);
75
- background: -o-linear-gradient(top, $startColor, $endColor);
76
- }
77
-
78
- @mixin horizontal-gradient($startColor: #eee, $endColor: white) {
79
- background-color: $startColor;
80
- background-image: -webkit-gradient(linear, left top, right top, from($startColor), to($endColor));
81
- background-image: -webkit-linear-gradient(left, $startColor, $endColor);
82
- background-image: -moz-linear-gradient(left, $startColor, $endColor);
83
- background-image: -ms-linear-gradient(left, $startColor, $endColor);
84
- background-image: -o-linear-gradient(left, $startColor, $endColor);
85
- }
86
-
87
- @mixin animation($name, $duration: 300ms, $delay: 0, $ease: ease) {
88
- -webkit-animation: $name $duration $delay $ease;
89
- -moz-animation: $name $duration $delay $ease;
90
- -ms-animation: $name $duration $delay $ease;
91
- }
92
-
93
- @mixin transition($transition) {
94
- -webkit-transition: $transition;
95
- -moz-transition: $transition;
96
- -ms-transition: $transition;
97
- -o-transition: $transition;
98
- }
99
- @mixin transform($string) {
100
- -webkit-transform: $string;
101
- -moz-transform: $string;
102
- -ms-transform: $string;
103
- -o-transform: $string;
104
- }
105
- @mixin scale($factor) {
106
- -webkit-transform: scale($factor);
107
- -moz-transform: scale($factor);
108
- -ms-transform: scale($factor);
109
- -o-transform: scale($factor);
110
- }
111
- @mixin rotate($deg) {
112
- -webkit-transform: rotate($deg);
113
- -moz-transform: rotate($deg);
114
- -ms-transform: rotate($deg);
115
- -o-transform: rotate($deg);
116
- }
117
- @mixin skew($deg, $deg2) {
118
- -webkit-transform: skew($deg, $deg2);
119
- -moz-transform: skew($deg, $deg2);
120
- -ms-transform: skew($deg, $deg2);
121
- -o-transform: skew($deg, $deg2);
122
- }
123
- @mixin translate($x, $y:0) {
124
- -webkit-transform: translate($x, $y);
125
- -moz-transform: translate($x, $y);
126
- -ms-transform: translate($x, $y);
127
- -o-transform: translate($x, $y);
128
- }
129
- @mixin translate3d($x, $y: 0, $z: 0) {
130
- -webkit-transform: translate3d($x, $y, $z);
131
- -moz-transform: translate3d($x, $y, $z);
132
- -ms-transform: translate3d($x, $y, $z);
133
- -o-transform: translate3d($x, $y, $z);
134
- }
135
- @mixin perspective($value: 1000) {
136
- -webkit-perspective: $value;
137
- -moz-perspective: $value;
138
- -ms-perspective: $value;
139
- perspective: $value;
140
- }
141
- @mixin transform-origin($x:center, $y:center) {
142
- -webkit-transform-origin: $x $y;
143
- -moz-transform-origin: $x $y;
144
- -ms-transform-origin: $x $y;
145
- -o-transform-origin: $x $y;
146
- }
147
-
148
- @mixin truncate($max-width: 250px) {
149
- max-width: $max-width;
150
- white-space: nowrap;
151
- overflow: hidden;
152
- text-overflow: ellipsis;
153
- }
154
-
155
- @mixin background-size($string: contain) {
156
- -webkit-background-size: $string;
157
- -moz-background-size: $string;
158
- -o-background-size: $string;
159
- background-size: $string;
160
- }
161
-
162
- @mixin placeholder($color: #999) {
163
- &::-webkit-input-placeholder { /* WebKit browsers */
164
- color: $color;
165
- }
166
- &:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
167
- color: $color;
168
- }
169
- &::-moz-placeholder { /* Mozilla Firefox 19+ */
170
- color: $color;
171
- }
172
- &:-ms-input-placeholder { /* Internet Explorer 10+ */
173
- color: $color;
174
- }
175
- }
@@ -1,109 +0,0 @@
1
- body {
2
- font-family: 'Open Sans', arial, sans-serif;
3
- background-color: #f9f9fb;
4
- color: $text-color;
5
- font-size: 14px;
6
- -webkit-font-smoothing: antialiased;
7
- -moz-osx-font-smoothing: grayscale;
8
- }
9
-
10
- html, body {
11
- height: 100%;
12
- }
13
-
14
- .page-wrapper {
15
- min-height: 100%;
16
- /* equal to footer height */
17
- margin-bottom: -75px;
18
- &:after {
19
- content: "";
20
- display: block;
21
- height: 75px;
22
- }
23
- }
24
-
25
- .footer {
26
- height: 75px;
27
- }
28
-
29
- p {
30
- line-height: 1.5;
31
- }
32
-
33
- a {
34
- color: darken($color-primary, 5%);
35
- @include transition (all 0.4s ease-in-out);
36
- &:hover {
37
- text-decoration: underline;
38
- color: darken($color-primary, 10%);
39
- }
40
- &:focus {
41
- text-decoration: none;
42
- }
43
- }
44
-
45
-
46
- code {
47
- background: #222;
48
- color: #fff;
49
- font-size: 14px;
50
- font-weight: bold;
51
- font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
52
- padding:2px 8px;
53
- padding-top: 4px;
54
- display: inline-block;
55
- }
56
-
57
-
58
-
59
- .form-control {
60
- @include box-shadow(none);
61
- height: 40px;
62
- border-color: $divider;
63
- @include placeholder(lighten($grey, 5%));
64
- &:focus {
65
- border-color: darken($divider, 5%);
66
- @include box-shadow(none);
67
- }
68
- }
69
-
70
- input[type="text"],
71
- input[type="email"],
72
- input[type="password"],
73
- input[type="submit"],
74
- input[type="button"],
75
- textarea,
76
- select {
77
- appearance: none; /* for mobile safari */
78
- -webkit-appearance: none;
79
- }
80
-
81
- #topcontrol {
82
- background: $color-primary;
83
- color: #fff;
84
- text-align: center;
85
- display: inline-block;
86
- width: 35px;
87
- height: 35px;
88
- border: none;
89
- @include border-radius(4px);
90
- @include transition (all 0.4s ease-in-out);
91
- z-index: 30;
92
- &:hover {
93
- background: lighten($color-primary, 5%);
94
- }
95
- .fa {
96
- position: relative;
97
- top: 3px;
98
- font-size: 25px;
99
- }
100
- }
101
-
102
- .video-container iframe {
103
- max-width: 100%;
104
- }
105
-
106
- .vertical-align {
107
- display: flex;
108
- align-items: center;
109
- }