jekyll-theme-stellar 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 (71) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +63 -0
  3. data/README.md +132 -0
  4. data/_home_sections/1_introduction.md +21 -0
  5. data/_home_sections/2_first.md +32 -0
  6. data/_home_sections/3_second.md +40 -0
  7. data/_home_sections/4_get_started.md +18 -0
  8. data/_includes/footer.html +54 -0
  9. data/_includes/head.html +7 -0
  10. data/_includes/header.html +9 -0
  11. data/_includes/navigation.html +8 -0
  12. data/_includes/scripts.html +8 -0
  13. data/_layouts/default.html +34 -0
  14. data/_layouts/page.html +32 -0
  15. data/_layouts/post.html +5 -0
  16. data/_sass/base/_page.scss +51 -0
  17. data/_sass/base/_reset.scss +76 -0
  18. data/_sass/base/_typography.scss +216 -0
  19. data/_sass/components/_actions.scss +101 -0
  20. data/_sass/components/_box.scss +34 -0
  21. data/_sass/components/_button.scss +109 -0
  22. data/_sass/components/_features.scss +60 -0
  23. data/_sass/components/_form.scss +220 -0
  24. data/_sass/components/_icon.scss +130 -0
  25. data/_sass/components/_icons.scss +22 -0
  26. data/_sass/components/_image.scss +60 -0
  27. data/_sass/components/_list.scss +94 -0
  28. data/_sass/components/_row.scss +31 -0
  29. data/_sass/components/_section.scss +104 -0
  30. data/_sass/components/_spotlight.scss +93 -0
  31. data/_sass/components/_statistics.scss +108 -0
  32. data/_sass/components/_table.scss +114 -0
  33. data/_sass/layout/_footer.scss +60 -0
  34. data/_sass/layout/_header.scss +116 -0
  35. data/_sass/layout/_main.scss +99 -0
  36. data/_sass/layout/_nav.scss +96 -0
  37. data/_sass/layout/_wrapper.scss +21 -0
  38. data/_sass/libs/_breakpoints.scss +223 -0
  39. data/_sass/libs/_functions.scss +90 -0
  40. data/_sass/libs/_html-grid.scss +149 -0
  41. data/_sass/libs/_mixins.scss +63 -0
  42. data/_sass/libs/_vars.scss +60 -0
  43. data/_sass/libs/_vendor.scss +376 -0
  44. data/_sass/main.scss +70 -0
  45. data/_sass/noscript.scss +28 -0
  46. data/assets/css/font-awesome.min.css +4 -0
  47. data/assets/css/images/overlay.png +0 -0
  48. data/assets/css/main.css +3764 -0
  49. data/assets/css/noscript.css +18 -0
  50. data/assets/fonts/FontAwesome.otf +0 -0
  51. data/assets/fonts/fontawesome-webfont.eot +0 -0
  52. data/assets/fonts/fontawesome-webfont.svg +2671 -0
  53. data/assets/fonts/fontawesome-webfont.ttf +0 -0
  54. data/assets/fonts/fontawesome-webfont.woff +0 -0
  55. data/assets/fonts/fontawesome-webfont.woff2 +0 -0
  56. data/assets/images/logo.svg +16 -0
  57. data/assets/images/pic01.jpg +0 -0
  58. data/assets/images/pic02.jpg +0 -0
  59. data/assets/images/pic03.jpg +0 -0
  60. data/assets/images/pic04.jpg +0 -0
  61. data/assets/images/pic05.jpg +0 -0
  62. data/assets/images/pic06.jpg +0 -0
  63. data/assets/images/screenshot.jpg +0 -0
  64. data/assets/js/breakpoints.min.js +2 -0
  65. data/assets/js/browser.min.js +2 -0
  66. data/assets/js/jquery.min.js +2 -0
  67. data/assets/js/jquery.scrollex.min.js +2 -0
  68. data/assets/js/jquery.scrolly.min.js +2 -0
  69. data/assets/js/main.js +123 -0
  70. data/assets/js/util.js +587 -0
  71. metadata +155 -0
@@ -0,0 +1,22 @@
1
+ ///
2
+ /// Stellar by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Icons */
8
+
9
+ ul.icons {
10
+ cursor: default;
11
+ list-style: none;
12
+ padding-left: 0;
13
+
14
+ li {
15
+ display: inline-block;
16
+ padding: 0 0.65em 0 0;
17
+
18
+ &:last-child {
19
+ padding-right: 0 !important;
20
+ }
21
+ }
22
+ }
@@ -0,0 +1,60 @@
1
+ ///
2
+ /// Stellar by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Image */
8
+
9
+ .image {
10
+ border-radius: _size(border-radius);
11
+ border: 0;
12
+ display: inline-block;
13
+ position: relative;
14
+
15
+ img {
16
+ border-radius: _size(border-radius);
17
+ display: block;
18
+ }
19
+
20
+ &.left,
21
+ &.right {
22
+ max-width: 40%;
23
+
24
+ img {
25
+ width: 100%;
26
+ }
27
+ }
28
+
29
+ &.left {
30
+ float: left;
31
+ margin: 0 1.5em 1em 0;
32
+ top: 0.25em;
33
+ }
34
+
35
+ &.right {
36
+ float: right;
37
+ margin: 0 0 1em 1.5em;
38
+ top: 0.25em;
39
+ }
40
+
41
+ &.fit {
42
+ display: block;
43
+ margin: 0 0 _size(element-margin) 0;
44
+ width: 100%;
45
+
46
+ img {
47
+ width: 100%;
48
+ }
49
+ }
50
+
51
+ &.main {
52
+ display: block;
53
+ margin: 0 0 (_size(element-margin) * 1.5) 0;
54
+ width: 100%;
55
+
56
+ img {
57
+ width: 100%;
58
+ }
59
+ }
60
+ }
@@ -0,0 +1,94 @@
1
+ ///
2
+ /// Stellar by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* List */
8
+
9
+ ol {
10
+ list-style: decimal;
11
+ margin: 0 0 _size(element-margin) 0;
12
+ padding-left: 1.25em;
13
+
14
+ li {
15
+ padding-left: 0.25em;
16
+ }
17
+ }
18
+
19
+ ul {
20
+ list-style: disc;
21
+ margin: 0 0 _size(element-margin) 0;
22
+ padding-left: 1em;
23
+
24
+ li {
25
+ padding-left: 0.5em;
26
+ }
27
+
28
+ &.alt {
29
+ list-style: none;
30
+ padding-left: 0;
31
+
32
+ li {
33
+ border-top: solid 1px;
34
+ padding: 0.5em 0;
35
+
36
+ &:first-child {
37
+ border-top: 0;
38
+ padding-top: 0;
39
+ }
40
+ }
41
+ }
42
+ }
43
+
44
+ dl {
45
+ margin: 0 0 _size(element-margin) 0;
46
+
47
+ dt {
48
+ display: block;
49
+ font-weight: _font(weight-bold);
50
+ margin: 0 0 (_size(element-margin) * 0.5) 0;
51
+ }
52
+
53
+ dd {
54
+ margin-left: _size(element-margin);
55
+ }
56
+
57
+ &.alt {
58
+ dt {
59
+ display: block;
60
+ width: 3em;
61
+ margin: 0;
62
+ clear: left;
63
+ float: left;
64
+ }
65
+
66
+ dd {
67
+ margin: 0 0 0.85em 5.5em;
68
+ }
69
+
70
+ &:after {
71
+ content: '';
72
+ display: block;
73
+ clear: both;
74
+ }
75
+ }
76
+ }
77
+
78
+ @mixin color-list($p: null) {
79
+ ul {
80
+ &.alt {
81
+ li {
82
+ border-top-color: _palette($p, border);
83
+ }
84
+ }
85
+ }
86
+
87
+ dl {
88
+ dt {
89
+ color: _palette($p, fg-bold);
90
+ }
91
+ }
92
+ }
93
+
94
+ @include color-list;
@@ -0,0 +1,31 @@
1
+ ///
2
+ /// Stellar by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Row */
8
+
9
+ .row {
10
+ @include html-grid(1.5em);
11
+
12
+ @include breakpoint('<=xlarge') {
13
+ @include html-grid(1.5em, 'xlarge');
14
+ }
15
+
16
+ @include breakpoint('<=large') {
17
+ @include html-grid(1.5em, 'large');
18
+ }
19
+
20
+ @include breakpoint('<=medium') {
21
+ @include html-grid(1.5em, 'medium');
22
+ }
23
+
24
+ @include breakpoint('<=small') {
25
+ @include html-grid(1em, 'small');
26
+ }
27
+
28
+ @include breakpoint('<=xsmall') {
29
+ @include html-grid(1.25em, 'xsmall');
30
+ }
31
+ }
@@ -0,0 +1,104 @@
1
+ ///
2
+ /// Stellar by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Section/Article */
8
+
9
+ section, article {
10
+ &.special {
11
+ text-align: center;
12
+ }
13
+ }
14
+
15
+ header {
16
+ &.major {
17
+ margin-bottom: (_size(element-margin) * 1.5);
18
+
19
+ h2 {
20
+ font-size: 2em;
21
+
22
+ &:after {
23
+ display: block;
24
+ content: '';
25
+ width: 3.25em;
26
+ height: 2px;
27
+ margin: (_size(element-margin) * 0.35) 0 (_size(element-margin) * 0.5) 0;
28
+ border-radius: 2px;
29
+
30
+ section.special &, article.special & {
31
+ margin-left: auto;
32
+ margin-right: auto;
33
+ }
34
+ }
35
+ }
36
+
37
+ p {
38
+ font-size: 1.25em;
39
+ letter-spacing: _font(letter-spacing);
40
+ }
41
+
42
+ &.special {
43
+ text-align: center;
44
+
45
+ h2 {
46
+ &:after {
47
+ margin-left: auto;
48
+ margin-right: auto;
49
+ }
50
+ }
51
+ }
52
+ }
53
+ }
54
+
55
+ footer {
56
+ &.major {
57
+ margin-top: (_size(element-margin) * 1.5);
58
+ }
59
+ }
60
+
61
+ @include breakpoint('<=small') {
62
+ header {
63
+ &.major {
64
+ margin-bottom: 0;
65
+
66
+ h2 {
67
+ font-size: 1.5em;
68
+ }
69
+
70
+ p {
71
+ font-size: 1em;
72
+ letter-spacing: 0;
73
+
74
+ br {
75
+ display: none;
76
+ }
77
+ }
78
+ }
79
+ }
80
+
81
+ footer {
82
+ &.major {
83
+ margin-top: 0;
84
+ }
85
+ }
86
+ }
87
+
88
+ @mixin color-section($p: null) {
89
+ header {
90
+ &.major {
91
+ h2 {
92
+ &:after {
93
+ background-color: _palette($p, border);
94
+
95
+ @if $p == 'invert' {
96
+ @include vendor('background-image', 'linear-gradient(90deg, #{_palette(accent1)}, #{_palette(accent3)}, #{_palette(accent5)})');
97
+ }
98
+ }
99
+ }
100
+ }
101
+ }
102
+ }
103
+
104
+ @include color-section;
@@ -0,0 +1,93 @@
1
+ ///
2
+ /// Stellar by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Spotlight */
8
+
9
+ .spotlight {
10
+ @include vendor('display', 'flex');
11
+ @include vendor('align-items', 'center');
12
+ margin: 0 0 _size(element-margin) 0;
13
+
14
+ .content {
15
+ @include vendor('flex', '1');
16
+
17
+ > :last-child {
18
+ margin-bottom: 0;
19
+ }
20
+
21
+ header {
22
+ &.major {
23
+ margin: 0 0 _size(element-margin) 0;
24
+ }
25
+ }
26
+ }
27
+
28
+ .image {
29
+ display: inline-block;
30
+ margin-left: 4em;
31
+ padding: 0.65em;
32
+ border-radius: 100%;
33
+ border: solid 1px;
34
+
35
+ img {
36
+ display: block;
37
+ border-radius: 100%;
38
+ width: 16em;
39
+ }
40
+ }
41
+
42
+ @include breakpoint('<=medium') {
43
+ @include vendor('flex-direction', 'column-reverse');
44
+ text-align: center;
45
+
46
+ .content {
47
+ @include vendor('flex', '0 1 auto');
48
+ width: 100%;
49
+
50
+ header {
51
+ &.major {
52
+ h2 {
53
+ &:after {
54
+ margin-left: auto;
55
+ margin-right: auto;
56
+ }
57
+ }
58
+ }
59
+ }
60
+
61
+ .actions {
62
+ @include vendor('justify-content', 'center');
63
+ width: calc(100% + #{_size(element-margin) * 0.5});
64
+ }
65
+ }
66
+
67
+ .image {
68
+ @include vendor('flex', '0 1 auto');
69
+ margin-left: 0;
70
+ margin-bottom: _size(element-margin);
71
+ }
72
+ }
73
+
74
+ @include breakpoint('<=small') {
75
+ .image {
76
+ padding: 0.35em;
77
+
78
+ img {
79
+ width: 12em;
80
+ }
81
+ }
82
+ }
83
+ }
84
+
85
+ @mixin color-spotlight($p: null) {
86
+ .spotlight {
87
+ .image {
88
+ border-color: _palette($p, border);
89
+ }
90
+ }
91
+ }
92
+
93
+ @include color-spotlight;
@@ -0,0 +1,108 @@
1
+ ///
2
+ /// Stellar by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Statistics */
8
+
9
+ .statistics {
10
+ @include vendor('display', 'flex');
11
+ width: 100%;
12
+ margin: 0 0 (_size(element-margin) * 1.5) 0;
13
+ padding: 0;
14
+ list-style: none;
15
+ cursor: default;
16
+
17
+ li {
18
+ @include vendor('flex', '1');
19
+ padding: 1.5em;
20
+ color: _palette(fg-bold);
21
+ text-align: center;
22
+
23
+ &.style1 {
24
+ background-color: _palette(accent1);
25
+ }
26
+
27
+ &.style2 {
28
+ background-color: _palette(accent2);
29
+ }
30
+
31
+ &.style3 {
32
+ background-color: _palette(accent3);
33
+ }
34
+
35
+ &.style4 {
36
+ background-color: _palette(accent4);
37
+ }
38
+
39
+ &.style5 {
40
+ background-color: _palette(accent5);
41
+ }
42
+
43
+ strong, b {
44
+ display: block;
45
+ font-size: 2em;
46
+ line-height: 1.1;
47
+ color: inherit !important;
48
+ font-weight: _font(weight);
49
+ letter-spacing: _font(letter-spacing);
50
+ }
51
+
52
+ &:first-child {
53
+ border-top-left-radius: _size(border-radius);
54
+ border-bottom-left-radius: _size(border-radius);
55
+ }
56
+
57
+ &:last-child {
58
+ border-top-right-radius: _size(border-radius);
59
+ border-bottom-right-radius: _size(border-radius);
60
+ }
61
+
62
+ .icon {
63
+ display: inline-block;
64
+
65
+ &:before {
66
+ font-size: 2.75rem;
67
+ line-height: 1.3;
68
+ }
69
+ }
70
+ }
71
+
72
+ @include breakpoint('<=medium') {
73
+ li {
74
+ strong, b {
75
+ font-size: 1.5em;
76
+ }
77
+ }
78
+ }
79
+
80
+ @include breakpoint('<=small') {
81
+ display: block;
82
+ width: 20em;
83
+ max-width: 100%;
84
+ margin: 0 auto _size(element-margin) auto;
85
+
86
+ li {
87
+ &:first-child {
88
+ border-bottom-left-radius: 0;
89
+ border-top-right-radius: _size(border-radius);
90
+ }
91
+
92
+ &:last-child {
93
+ border-top-right-radius: 0;
94
+ border-bottom-left-radius: _size(border-radius);
95
+ }
96
+
97
+ .icon {
98
+ &:before {
99
+ font-size: 3.75rem;
100
+ }
101
+ }
102
+
103
+ strong, b {
104
+ font-size: 2.5em;
105
+ }
106
+ }
107
+ }
108
+ }