jekyll-theme-stellar 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
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,114 @@
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
+ /* Table */
8
+
9
+ .table-wrapper {
10
+ -webkit-overflow-scrolling: touch;
11
+ overflow-x: auto;
12
+ }
13
+
14
+ table {
15
+ margin: 0 0 _size(element-margin) 0;
16
+ width: 100%;
17
+
18
+ tbody {
19
+ tr {
20
+ border: solid 1px;
21
+ border-left: 0;
22
+ border-right: 0;
23
+ }
24
+ }
25
+
26
+ td {
27
+ padding: 0.75em 0.75em;
28
+ }
29
+
30
+ th {
31
+ font-size: 0.9em;
32
+ font-weight: _font(weight-bold);
33
+ padding: 0 0.75em 0.75em 0.75em;
34
+ text-align: left;
35
+ }
36
+
37
+ thead {
38
+ border-bottom: solid 2px;
39
+ }
40
+
41
+ tfoot {
42
+ border-top: solid 2px;
43
+ }
44
+
45
+ &.alt {
46
+ border-collapse: separate;
47
+
48
+ tbody {
49
+ tr {
50
+ td {
51
+ border: solid 1px;
52
+ border-left-width: 0;
53
+ border-top-width: 0;
54
+
55
+ &:first-child {
56
+ border-left-width: 1px;
57
+ }
58
+ }
59
+
60
+ &:first-child {
61
+ td {
62
+ border-top-width: 1px;
63
+ }
64
+ }
65
+ }
66
+ }
67
+
68
+ thead {
69
+ border-bottom: 0;
70
+ }
71
+
72
+ tfoot {
73
+ border-top: 0;
74
+ }
75
+ }
76
+ }
77
+
78
+ @mixin color-table($p: null) {
79
+ table {
80
+ tbody {
81
+ tr {
82
+ border-color: _palette($p, border);
83
+
84
+ &:nth-child(2n + 1) {
85
+ background-color: _palette($p, border-bg);
86
+ }
87
+ }
88
+ }
89
+
90
+ th {
91
+ color: _palette($p, fg-bold);
92
+ }
93
+
94
+ thead {
95
+ border-bottom-color: _palette($p, border);
96
+ }
97
+
98
+ tfoot {
99
+ border-top-color: _palette($p, border);
100
+ }
101
+
102
+ &.alt {
103
+ tbody {
104
+ tr {
105
+ td {
106
+ border-color: _palette($p, border);
107
+ }
108
+ }
109
+ }
110
+ }
111
+ }
112
+ }
113
+
114
+ @include color-table;
@@ -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
+ /* Footer */
8
+
9
+ #footer {
10
+ @include vendor('display', 'flex');
11
+ @include vendor('flex-wrap', 'wrap');
12
+ @include padding(5em, 5em);
13
+ width: calc(100% + #{_size(element-margin)});
14
+ margin: 0 0 (_size(element-margin) * 1.5) (_size(element-margin) * -1);
15
+
16
+ > * {
17
+ width: calc(50% - #{_size(element-margin)});
18
+ margin-left: _size(element-margin);
19
+ }
20
+
21
+ .copyright {
22
+ width: 100%;
23
+ margin: (_size(element-margin) * 1.25) 0 _size(element-margin) 0;
24
+ font-size: 0.8em;
25
+ text-align: center;
26
+ }
27
+
28
+ @include breakpoint('<=large') {
29
+ @include padding(4em, 4em);
30
+ }
31
+
32
+ @include breakpoint('<=medium') {
33
+ @include padding(4em, 3em);
34
+ display: block;
35
+ margin: 0 0 (_size(element-margin) * 1.5) 0;
36
+ width: 100%;
37
+
38
+ > * {
39
+ width: 100%;
40
+ margin-left: 0;
41
+ margin-bottom: (_size(element-margin) * 1.5);
42
+ }
43
+
44
+ .copyright {
45
+ text-align: left;
46
+ }
47
+ }
48
+
49
+ @include breakpoint('<=small') {
50
+ @include padding(3em, 2em);
51
+ }
52
+
53
+ @include breakpoint('<=xsmall') {
54
+ @include padding(3em, 1.5em);
55
+ }
56
+
57
+ @include breakpoint('<=xsmall') {
58
+ @include padding(2.5em, 1em);
59
+ }
60
+ }
@@ -0,0 +1,116 @@
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
+ /* Header */
8
+
9
+ #header {
10
+ @include padding(5em, 5em, (0, 0, -2em, 0));
11
+ text-align: center;
12
+
13
+ h1 {
14
+ margin: 0 0 (_size(element-margin) * 0.125) 0;
15
+ }
16
+
17
+ p {
18
+ font-size: 1.25em;
19
+ letter-spacing: _font(letter-spacing);
20
+ }
21
+
22
+ &.alt {
23
+ @include padding(6em, 5em, (1em, 0, 0, 0));
24
+
25
+ h1 {
26
+ font-size: 3.25em;
27
+ }
28
+
29
+ > * {
30
+ @include vendor('transition', 'opacity 3s ease');
31
+ @include vendor('transition-delay', '0.5s');
32
+ opacity: 1;
33
+ }
34
+
35
+ .logo {
36
+ @include vendor('transition', (
37
+ 'opacity 1.25s ease',
38
+ 'transform 0.5s ease'
39
+ ));
40
+ @include vendor('transition-delay', '0s');
41
+ display: block;
42
+ margin: 0 0 (_size(element-margin) * 0.75) 0;
43
+
44
+ img {
45
+ display: block;
46
+ margin: 0 auto;
47
+ max-width: 75%;
48
+ }
49
+ }
50
+ }
51
+
52
+ @include breakpoint('<=large') {
53
+ @include padding(4em, 4em, (0, 0, -2em, 0));
54
+
55
+ &.alt {
56
+ @include padding(5em, 4em, (1em, 0, 0, 0));
57
+ }
58
+ }
59
+
60
+ @include breakpoint('<=medium') {
61
+ @include padding(4em, 3em, (0, 0, -2em, 0));
62
+
63
+ &.alt {
64
+ @include padding(4em, 3em, (1em, 0, 0, 0));
65
+ }
66
+ }
67
+
68
+ @include breakpoint('<=small') {
69
+ @include padding(3em, 2em, (0, 0, -1em, 0));
70
+
71
+ p {
72
+ font-size: 1em;
73
+ letter-spacing: 0;
74
+
75
+ br {
76
+ display: none;
77
+ }
78
+ }
79
+
80
+ &.alt {
81
+ @include padding(3em, 2em, (1em, 0, 0, 0));
82
+
83
+ h1 {
84
+ font-size: 2.5em;
85
+ }
86
+ }
87
+ }
88
+
89
+ @include breakpoint('<=xsmall') {
90
+ @include padding(3em, 1.5em, (0, 0, -1em, 0));
91
+
92
+ &.alt {
93
+ @include padding(3em, 1.5em, (1em, 0, 0, 0));
94
+ }
95
+ }
96
+
97
+ @include breakpoint('<=xxsmall') {
98
+ @include padding(2.5em, 1em, (0, 0, -1em, 0));
99
+
100
+ &.alt {
101
+ @include padding(2.5em, 1em, (1em, 0, 0, 0));
102
+ }
103
+ }
104
+
105
+ body.is-preload & {
106
+ &.alt {
107
+ > * {
108
+ opacity: 0;
109
+ }
110
+
111
+ .logo {
112
+ @include vendor('transform', 'scale(0.8) rotate(-30deg)');
113
+ }
114
+ }
115
+ }
116
+ }
@@ -0,0 +1,99 @@
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
+ /* Main */
8
+
9
+ #main {
10
+ @include color(invert);
11
+ border-radius: _size(border-radius-main);
12
+
13
+ > .main {
14
+ @include padding(5em, 5em);
15
+ border-top: solid 1px _palette(invert, border);
16
+
17
+ &:first-child {
18
+ border-top: 0;
19
+ }
20
+
21
+ > .image.main:first-child {
22
+ margin: -5em 0 5em -5em;
23
+ width: calc(100% + 10em);
24
+ border-top-right-radius: _size(border-radius-main);
25
+ border-top-left-radius: _size(border-radius-main);
26
+ border-bottom-right-radius: 0;
27
+ border-bottom-left-radius: 0;
28
+
29
+ img {
30
+ border-top-right-radius: _size(border-radius-main);
31
+ border-top-left-radius: _size(border-radius-main);
32
+ border-bottom-right-radius: 0;
33
+ border-bottom-left-radius: 0;
34
+ }
35
+ }
36
+ }
37
+
38
+ @include breakpoint('<=large') {
39
+ > .main {
40
+ @include padding(4em, 4em);
41
+
42
+ > .image.main:first-child {
43
+ margin: -4em 0 4em -4em;
44
+ width: calc(100% + 8em);
45
+ }
46
+ }
47
+ }
48
+
49
+ @include breakpoint('<=medium') {
50
+ > .main {
51
+ @include padding(4em, 3em);
52
+
53
+ > .image.main:first-child {
54
+ margin: -4em 0 4em -3em;
55
+ width: calc(100% + 6em);
56
+ }
57
+ }
58
+ }
59
+
60
+ @include breakpoint('<=small') {
61
+ > .main {
62
+ @include padding(3em, 2em);
63
+
64
+ > .image.main:first-child {
65
+ margin: -3em 0 2em -2em;
66
+ width: calc(100% + 4em);
67
+ }
68
+ }
69
+ }
70
+
71
+ @include breakpoint('<=xsmall') {
72
+ > .main {
73
+ @include padding(3em, 1.5em);
74
+
75
+ > .image.main:first-child {
76
+ margin: -3em 0 1.5em -1.5em;
77
+ width: calc(100% + 3em);
78
+ }
79
+ }
80
+ }
81
+
82
+ @include breakpoint('<=xxsmall') {
83
+ border-radius: 0;
84
+
85
+ > .main {
86
+ @include padding(2.5em, 1em);
87
+
88
+ > .image.main:first-child {
89
+ margin: -2.5em 0 1.5em -1em;
90
+ width: calc(100% + 2em);
91
+ border-radius: 0;
92
+
93
+ img {
94
+ border-radius: 0;
95
+ }
96
+ }
97
+ }
98
+ }
99
+ }
@@ -0,0 +1,96 @@
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
+ /* Nav */
8
+
9
+ #nav {
10
+ @include vendor('transition', (
11
+ 'background-color #{_duration(transition)} ease',
12
+ 'border-top-left-radius #{_duration(transition)} ease',
13
+ 'border-top-right-radius #{_duration(transition)} ease',
14
+ 'padding #{_duration(transition)} ease',
15
+ ));
16
+ @include color-typography(invert);
17
+ position: absolute;
18
+ width: _size(inner);
19
+ max-width: calc(100% - #{_size(element-margin) * 2});
20
+ padding: 1em;
21
+ background-color: _palette(invert, bg-alt);
22
+ border-top-left-radius: _size(border-radius-main);
23
+ border-top-right-radius: _size(border-radius-main);
24
+ cursor: default;
25
+ text-align: center;
26
+
27
+ & + #main {
28
+ padding-top: 4.25em;
29
+ }
30
+
31
+ ul {
32
+ margin: 0;
33
+ padding: 0;
34
+ list-style: none;
35
+
36
+ li {
37
+ @include vendor('transition', (
38
+ 'margin #{_duration(transition)} ease'
39
+ ));
40
+ display: inline-block;
41
+ margin: 0 0.35em;
42
+ padding: 0;
43
+ vertical-align: middle;
44
+
45
+ a {
46
+ @include vendor('transition', (
47
+ 'font-size #{_duration(transition)} ease'
48
+ ));
49
+ display: inline-block;
50
+ height: 2.25em;
51
+ line-height: 2.25em;
52
+ padding: 0 1.25em;
53
+ border: 0;
54
+ border-radius: _size(border-radius);
55
+ box-shadow: inset 0 0 0 1px transparent;
56
+
57
+ &:hover {
58
+ background-color: _palette(invert, border-bg);
59
+ }
60
+
61
+ &.active {
62
+ background-color: _palette(invert, bg);
63
+ box-shadow: none;
64
+ }
65
+ }
66
+ }
67
+ }
68
+
69
+ &.alt {
70
+ position: fixed;
71
+ top: 0;
72
+ padding: 0.5em 1em;
73
+ background-color: transparentize(_palette(invert, bg-alt), 0.05);
74
+ border-top-left-radius: 0;
75
+ border-top-right-radius: 0;
76
+ z-index: _misc(z-index-base);
77
+
78
+ ul {
79
+ li {
80
+ margin: 0 0.175em;
81
+
82
+ a {
83
+ font-size: 0.9em;
84
+ }
85
+ }
86
+ }
87
+ }
88
+
89
+ @include breakpoint('<=small') {
90
+ display: none;
91
+
92
+ & + #main {
93
+ padding-top: 0;
94
+ }
95
+ }
96
+ }