minimal-jekyll-theme 0.1.1 → 0.1.2

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 (88) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1 -0
  3. data/LICENSE.txt +5 -0
  4. data/README.md +54 -0
  5. data/_includes/author_bio.html +39 -0
  6. data/_includes/category_tag_list.html +20 -0
  7. data/_includes/disqus_comments.html +17 -0
  8. data/_includes/figure +12 -0
  9. data/_includes/footer.html +20 -0
  10. data/_includes/head.html +46 -0
  11. data/_includes/header.html +38 -0
  12. data/_includes/navigation.html +26 -0
  13. data/_includes/newsletter.html +19 -0
  14. data/_includes/post_meta.html +49 -0
  15. data/_includes/read_time.html +18 -0
  16. data/_includes/share_icons.html +30 -0
  17. data/_includes/sidebar.html +17 -0
  18. data/_includes/video +3 -0
  19. data/_layouts/default.html +17 -0
  20. data/_layouts/home.html +40 -0
  21. data/_layouts/page.html +25 -0
  22. data/_layouts/post.html +50 -0
  23. data/_sass/_custom.scss +137 -0
  24. data/_sass/_tachyons.scss +94 -0
  25. data/_sass/_variables.scss +38 -0
  26. data/_sass/scss/_aspect-ratios.scss +142 -0
  27. data/_sass/scss/_background-position.scss +133 -0
  28. data/_sass/scss/_background-size.scss +41 -0
  29. data/_sass/scss/_border-colors.scss +93 -0
  30. data/_sass/scss/_border-radius.scss +134 -0
  31. data/_sass/scss/_border-style.scss +55 -0
  32. data/_sass/scss/_border-widths.scss +81 -0
  33. data/_sass/scss/_borders.scss +65 -0
  34. data/_sass/scss/_box-shadow.scss +48 -0
  35. data/_sass/scss/_box-sizing.scss +50 -0
  36. data/_sass/scss/_clears.scss +47 -0
  37. data/_sass/scss/_code.scss +18 -0
  38. data/_sass/scss/_colors.scss +84 -0
  39. data/_sass/scss/_coordinates.scss +153 -0
  40. data/_sass/scss/_debug-children.scss +21 -0
  41. data/_sass/scss/_debug-grid.scss +33 -0
  42. data/_sass/scss/_debug.scss +127 -0
  43. data/_sass/scss/_debug_children.scss +18 -0
  44. data/_sass/scss/_display.scss +111 -0
  45. data/_sass/scss/_flexbox.scss +229 -0
  46. data/_sass/scss/_floats.scss +56 -0
  47. data/_sass/scss/_font-family.scss +107 -0
  48. data/_sass/scss/_font-style.scss +36 -0
  49. data/_sass/scss/_font-weight.scss +87 -0
  50. data/_sass/scss/_forms.scss +23 -0
  51. data/_sass/scss/_gradients.scss +29 -0
  52. data/_sass/scss/_heights.scss +131 -0
  53. data/_sass/scss/_hovers.scss +166 -0
  54. data/_sass/scss/_images.scss +18 -0
  55. data/_sass/scss/_letter-spacing.scss +40 -0
  56. data/_sass/scss/_line-height.scss +41 -0
  57. data/_sass/scss/_links.scss +34 -0
  58. data/_sass/scss/_lists.scss +15 -0
  59. data/_sass/scss/_max-widths.scss +105 -0
  60. data/_sass/scss/_media-queries.scss +43 -0
  61. data/_sass/scss/_module-template.scss +29 -0
  62. data/_sass/scss/_negative-margins.scss +206 -0
  63. data/_sass/scss/_nested.scss +64 -0
  64. data/_sass/scss/_normalize.scss +434 -0
  65. data/_sass/scss/_opacity.scss +27 -0
  66. data/_sass/scss/_outlines.scss +39 -0
  67. data/_sass/scss/_overflow.scss +82 -0
  68. data/_sass/scss/_position.scss +44 -0
  69. data/_sass/scss/_rotations.scss +50 -0
  70. data/_sass/scss/_skins-pseudo.scss +243 -0
  71. data/_sass/scss/_skins.scss +143 -0
  72. data/_sass/scss/_spacing.scss +956 -0
  73. data/_sass/scss/_styles.scss +15 -0
  74. data/_sass/scss/_tables.scss +42 -0
  75. data/_sass/scss/_text-align.scss +49 -0
  76. data/_sass/scss/_text-decoration.scss +42 -0
  77. data/_sass/scss/_text-transform.scss +53 -0
  78. data/_sass/scss/_type-scale.scss +102 -0
  79. data/_sass/scss/_typography.scss +129 -0
  80. data/_sass/scss/_utilities.scss +48 -0
  81. data/_sass/scss/_vertical-align.scss +43 -0
  82. data/_sass/scss/_visibility.scss +58 -0
  83. data/_sass/scss/_white-space.scss +41 -0
  84. data/_sass/scss/_widths.scss +150 -0
  85. data/_sass/scss/_word-break.scss +43 -0
  86. data/_sass/scss/_z-index.scss +60 -0
  87. data/assets/css/minimal.scss +20 -0
  88. metadata +91 -5
@@ -0,0 +1,166 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ HOVER EFFECTS
11
+ Docs: http://tachyons.io/docs/themes/hovers/
12
+
13
+ - Dim
14
+ - Glow
15
+ - Hide Child
16
+ - Underline text
17
+ - Grow
18
+ - Pointer
19
+ - Shadow
20
+
21
+ */
22
+
23
+ /*
24
+
25
+ Dim element on hover by adding the dim class.
26
+
27
+ */
28
+ .dim {
29
+ opacity: 1;
30
+ transition: opacity .15s ease-in;
31
+ }
32
+ .dim:hover,
33
+ .dim:focus {
34
+ opacity: .5;
35
+ transition: opacity .15s ease-in;
36
+ }
37
+ .dim:active {
38
+ opacity: .8; transition: opacity .15s ease-out;
39
+ }
40
+
41
+ /*
42
+
43
+ Animate opacity to 100% on hover by adding the glow class.
44
+
45
+ */
46
+ .glow {
47
+ transition: opacity .15s ease-in;
48
+ }
49
+ .glow:hover,
50
+ .glow:focus {
51
+ opacity: 1;
52
+ transition: opacity .15s ease-in;
53
+ }
54
+
55
+ /*
56
+
57
+ Hide child & reveal on hover:
58
+
59
+ Put the hide-child class on a parent element and any nested element with the
60
+ child class will be hidden and displayed on hover or focus.
61
+
62
+ <div class="hide-child">
63
+ <div class="child"> Hidden until hover or focus </div>
64
+ <div class="child"> Hidden until hover or focus </div>
65
+ <div class="child"> Hidden until hover or focus </div>
66
+ <div class="child"> Hidden until hover or focus </div>
67
+ </div>
68
+ */
69
+
70
+ .hide-child .child {
71
+ opacity: 0;
72
+ transition: opacity .15s ease-in;
73
+ }
74
+ .hide-child:hover .child,
75
+ .hide-child:focus .child,
76
+ .hide-child:active .child {
77
+ opacity: 1;
78
+ transition: opacity .15s ease-in;
79
+ }
80
+
81
+ .underline-hover:hover,
82
+ .underline-hover:focus {
83
+ text-decoration: underline;
84
+ }
85
+
86
+ /* Can combine this with overflow-hidden to make background images grow on hover
87
+ * even if you are using background-size: cover */
88
+
89
+ .grow {
90
+ -moz-osx-font-smoothing: grayscale;
91
+ backface-visibility: hidden;
92
+ transform: translateZ(0);
93
+ transition: transform 0.25s ease-out;
94
+ }
95
+
96
+ .grow:hover,
97
+ .grow:focus {
98
+ transform: scale(1.05);
99
+ }
100
+
101
+ .grow:active {
102
+ transform: scale(.90);
103
+ }
104
+
105
+ .grow-large {
106
+ -moz-osx-font-smoothing: grayscale;
107
+ backface-visibility: hidden;
108
+ transform: translateZ(0);
109
+ transition: transform .25s ease-in-out;
110
+ }
111
+
112
+ .grow-large:hover,
113
+ .grow-large:focus {
114
+ transform: scale(1.2);
115
+ }
116
+
117
+ .grow-large:active {
118
+ transform: scale(.95);
119
+ }
120
+
121
+ /* Add pointer on hover */
122
+
123
+ .pointer:hover {
124
+ cursor: pointer;
125
+ }
126
+
127
+ /*
128
+ Add shadow on hover.
129
+
130
+ Performant box-shadow animation pattern from
131
+ http://tobiasahlin.com/blog/how-to-animate-box-shadow/
132
+ */
133
+
134
+ .shadow-hover {
135
+ cursor: pointer;
136
+ position: relative;
137
+ transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
138
+ }
139
+
140
+ .shadow-hover::after {
141
+ content: '';
142
+ box-shadow: 0px 0px 16px 2px rgba( 0, 0, 0, .2 );
143
+ opacity: 0;
144
+ position: absolute;
145
+ top: 0;
146
+ left: 0;
147
+ width: 100%;
148
+ height: 100%;
149
+ z-index: -1;
150
+ transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
151
+ }
152
+
153
+ .shadow-hover:hover::after,
154
+ .shadow-hover:focus::after {
155
+ opacity: 1;
156
+ }
157
+
158
+ /* Combine with classes in skins and skins-pseudo for
159
+ * many different transition possibilities. */
160
+
161
+ .bg-animate,
162
+ .bg-animate:hover,
163
+ .bg-animate:focus {
164
+ transition: background-color .15s ease-in-out;
165
+ }
166
+
@@ -0,0 +1,18 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ IMAGES
11
+ Docs: http://tachyons.io/docs/elements/images/
12
+
13
+ */
14
+
15
+ /* Responsive images! */
16
+
17
+ img { max-width: 100%; }
18
+
@@ -0,0 +1,40 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ LETTER SPACING
11
+ Docs: http://tachyons.io/docs/typography/tracking/
12
+
13
+ Media Query Extensions:
14
+ -ns = not-small
15
+ -m = medium
16
+ -l = large
17
+
18
+ */
19
+
20
+ .tracked { letter-spacing: .1em; }
21
+ .tracked-tight { letter-spacing: -.05em; }
22
+ .tracked-mega { letter-spacing: .25em; }
23
+
24
+ @media #{$breakpoint-not-small} {
25
+ .tracked-ns { letter-spacing: .1em; }
26
+ .tracked-tight-ns { letter-spacing: -.05em; }
27
+ .tracked-mega-ns { letter-spacing: .25em; }
28
+ }
29
+
30
+ @media #{$breakpoint-medium} {
31
+ .tracked-m { letter-spacing: .1em; }
32
+ .tracked-tight-m { letter-spacing: -.05em; }
33
+ .tracked-mega-m { letter-spacing: .25em; }
34
+ }
35
+
36
+ @media #{$breakpoint-large} {
37
+ .tracked-l { letter-spacing: .1em; }
38
+ .tracked-tight-l { letter-spacing: -.05em; }
39
+ .tracked-mega-l { letter-spacing: .25em; }
40
+ }
@@ -0,0 +1,41 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ LINE HEIGHT / LEADING
11
+ Docs: http://tachyons.io/docs/typography/line-height
12
+
13
+ Media Query Extensions:
14
+ -ns = not-small
15
+ -m = medium
16
+ -l = large
17
+
18
+ */
19
+
20
+ .lh-solid { line-height: 1; }
21
+ .lh-title { line-height: 1.25; }
22
+ .lh-copy { line-height: 1.5; }
23
+
24
+ @media #{$breakpoint-not-small} {
25
+ .lh-solid-ns { line-height: 1; }
26
+ .lh-title-ns { line-height: 1.25; }
27
+ .lh-copy-ns { line-height: 1.5; }
28
+ }
29
+
30
+ @media #{$breakpoint-medium} {
31
+ .lh-solid-m { line-height: 1; }
32
+ .lh-title-m { line-height: 1.25; }
33
+ .lh-copy-m { line-height: 1.5; }
34
+ }
35
+
36
+ @media #{$breakpoint-large} {
37
+ .lh-solid-l { line-height: 1; }
38
+ .lh-title-l { line-height: 1.25; }
39
+ .lh-copy-l { line-height: 1.5; }
40
+ }
41
+
@@ -0,0 +1,34 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ LINKS
11
+ Docs: http://tachyons.io/docs/elements/links/
12
+
13
+ */
14
+
15
+ .link {
16
+ text-decoration: none;
17
+ transition: color .15s ease-in;
18
+ }
19
+
20
+ .link:link,
21
+ .link:visited {
22
+ transition: color .15s ease-in;
23
+ }
24
+ .link:hover {
25
+ transition: color .15s ease-in;
26
+ }
27
+ .link:active {
28
+ transition: color .15s ease-in;
29
+ }
30
+ .link:focus {
31
+ transition: color .15s ease-in;
32
+ outline: 1px dotted currentColor;
33
+ }
34
+
@@ -0,0 +1,15 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ LISTS
11
+ http://tachyons.io/docs/elements/lists/
12
+
13
+ */
14
+
15
+ .list { list-style-type: none; }
@@ -0,0 +1,105 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ MAX WIDTHS
11
+ Docs: http://tachyons.io/docs/layout/max-widths/
12
+
13
+ Base:
14
+ mw = max-width
15
+
16
+ Modifiers
17
+ 1 = 1st step in width scale
18
+ 2 = 2nd step in width scale
19
+ 3 = 3rd step in width scale
20
+ 4 = 4th step in width scale
21
+ 5 = 5th step in width scale
22
+ 6 = 6st step in width scale
23
+ 7 = 7nd step in width scale
24
+ 8 = 8rd step in width scale
25
+ 9 = 9th step in width scale
26
+
27
+ -100 = literal value 100%
28
+
29
+ -none = string value none
30
+
31
+
32
+ Media Query Extensions:
33
+ -ns = not-small
34
+ -m = medium
35
+ -l = large
36
+
37
+ */
38
+
39
+ /* Max Width Percentages */
40
+
41
+ .mw-100 { max-width: 100%; }
42
+
43
+ /* Max Width Scale */
44
+
45
+ .mw1 { max-width: 1rem; }
46
+ .mw2 { max-width: 2rem; }
47
+ .mw3 { max-width: 4rem; }
48
+ .mw4 { max-width: 8rem; }
49
+ .mw5 { max-width: 16rem; }
50
+ .mw6 { max-width: 32rem; }
51
+ .mw7 { max-width: 48rem; }
52
+ .mw8 { max-width: 64rem; }
53
+ .mw9 { max-width: 96rem; }
54
+
55
+ /* Max Width String Properties */
56
+
57
+ .mw-none { max-width: none; }
58
+
59
+ @media #{$breakpoint-not-small} {
60
+ .mw-100-ns { max-width: 100%; }
61
+
62
+ .mw1-ns { max-width: 1rem; }
63
+ .mw2-ns { max-width: 2rem; }
64
+ .mw3-ns { max-width: 4rem; }
65
+ .mw4-ns { max-width: 8rem; }
66
+ .mw5-ns { max-width: 16rem; }
67
+ .mw6-ns { max-width: 32rem; }
68
+ .mw7-ns { max-width: 48rem; }
69
+ .mw8-ns { max-width: 64rem; }
70
+ .mw9-ns { max-width: 96rem; }
71
+
72
+ .mw-none-ns { max-width: none; }
73
+ }
74
+
75
+ @media #{$breakpoint-medium} {
76
+ .mw-100-m { max-width: 100%; }
77
+
78
+ .mw1-m { max-width: 1rem; }
79
+ .mw2-m { max-width: 2rem; }
80
+ .mw3-m { max-width: 4rem; }
81
+ .mw4-m { max-width: 8rem; }
82
+ .mw5-m { max-width: 16rem; }
83
+ .mw6-m { max-width: 32rem; }
84
+ .mw7-m { max-width: 48rem; }
85
+ .mw8-m { max-width: 64rem; }
86
+ .mw9-m { max-width: 96rem; }
87
+
88
+ .mw-none-m { max-width: none; }
89
+ }
90
+
91
+ @media #{$breakpoint-large} {
92
+ .mw-100-l { max-width: 100%; }
93
+
94
+ .mw1-l { max-width: 1rem; }
95
+ .mw2-l { max-width: 2rem; }
96
+ .mw3-l { max-width: 4rem; }
97
+ .mw4-l { max-width: 8rem; }
98
+ .mw5-l { max-width: 16rem; }
99
+ .mw6-l { max-width: 32rem; }
100
+ .mw7-l { max-width: 48rem; }
101
+ .mw8-l { max-width: 64rem; }
102
+ .mw9-l { max-width: 96rem; }
103
+
104
+ .mw-none-l { max-width: none; }
105
+ }
@@ -0,0 +1,43 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+ $breakpoint-not-small: 'screen and (min-width: 30em)' !default;
8
+ $breakpoint-medium: 'screen and (min-width: 30em) and (max-width: 60em)' !default;
9
+ $breakpoint-large: 'screen and (min-width: 60em)' !default;
10
+
11
+ /*
12
+
13
+ CUSTOM MEDIA QUERIES
14
+
15
+ Media query values can be changed to fit your own content.
16
+ There are no magic bullets when it comes to media query width values.
17
+ They should be declared in em units - and they should be set to meet
18
+ the needs of your content. You can also add additional media queries,
19
+ or remove some of the existing ones.
20
+
21
+ These media queries can be referenced like so:
22
+
23
+ @media (--breakpoint-not-small) {
24
+ .medium-and-larger-specific-style {
25
+ background-color: red;
26
+ }
27
+ }
28
+
29
+ @media (--breakpoint-medium) {
30
+ .medium-screen-specific-style {
31
+ background-color: red;
32
+ }
33
+ }
34
+
35
+ @media (--breakpoint-large) {
36
+ .large-and-larger-screen-specific-style {
37
+ background-color: red;
38
+ }
39
+ }
40
+
41
+ */
42
+
43
+ /* Media Queries */