minimal-jekyll-theme 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
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,133 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BACKGROUND POSITION
11
+
12
+ Base:
13
+ bg = background
14
+
15
+ Modifiers:
16
+ -center = center center
17
+ -top = top center
18
+ -right = center right
19
+ -bottom = bottom center
20
+ -left = center left
21
+
22
+ Media Query Extensions:
23
+ -ns = not-small
24
+ -m = medium
25
+ -l = large
26
+
27
+ */
28
+
29
+ .bg-center {
30
+ background-repeat: no-repeat;
31
+ background-position: center center;
32
+ }
33
+
34
+ .bg-top {
35
+ background-repeat: no-repeat;
36
+ background-position: top center;
37
+ }
38
+
39
+ .bg-right {
40
+ background-repeat: no-repeat;
41
+ background-position: center right;
42
+ }
43
+
44
+ .bg-bottom {
45
+ background-repeat: no-repeat;
46
+ background-position: bottom center;
47
+ }
48
+
49
+ .bg-left {
50
+ background-repeat: no-repeat;
51
+ background-position: center left;
52
+ }
53
+
54
+ @media #{$breakpoint-not-small} {
55
+ .bg-center-ns {
56
+ background-repeat: no-repeat;
57
+ background-position: center center;
58
+ }
59
+
60
+ .bg-top-ns {
61
+ background-repeat: no-repeat;
62
+ background-position: top center;
63
+ }
64
+
65
+ .bg-right-ns {
66
+ background-repeat: no-repeat;
67
+ background-position: center right;
68
+ }
69
+
70
+ .bg-bottom-ns {
71
+ background-repeat: no-repeat;
72
+ background-position: bottom center;
73
+ }
74
+
75
+ .bg-left-ns {
76
+ background-repeat: no-repeat;
77
+ background-position: center left;
78
+ }
79
+ }
80
+
81
+ @media #{$breakpoint-medium} {
82
+ .bg-center-m {
83
+ background-repeat: no-repeat;
84
+ background-position: center center;
85
+ }
86
+
87
+ .bg-top-m {
88
+ background-repeat: no-repeat;
89
+ background-position: top center;
90
+ }
91
+
92
+ .bg-right-m {
93
+ background-repeat: no-repeat;
94
+ background-position: center right;
95
+ }
96
+
97
+ .bg-bottom-m {
98
+ background-repeat: no-repeat;
99
+ background-position: bottom center;
100
+ }
101
+
102
+ .bg-left-m {
103
+ background-repeat: no-repeat;
104
+ background-position: center left;
105
+ }
106
+ }
107
+
108
+ @media #{$breakpoint-large} {
109
+ .bg-center-l {
110
+ background-repeat: no-repeat;
111
+ background-position: center center;
112
+ }
113
+
114
+ .bg-top-l {
115
+ background-repeat: no-repeat;
116
+ background-position: top center;
117
+ }
118
+
119
+ .bg-right-l {
120
+ background-repeat: no-repeat;
121
+ background-position: center right;
122
+ }
123
+
124
+ .bg-bottom-l {
125
+ background-repeat: no-repeat;
126
+ background-position: bottom center;
127
+ }
128
+
129
+ .bg-left-l {
130
+ background-repeat: no-repeat;
131
+ background-position: center left;
132
+ }
133
+ }
@@ -0,0 +1,41 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BACKGROUND SIZE
11
+ Docs: http://tachyons.io/docs/themes/background-size/
12
+
13
+ Media Query Extensions:
14
+ -ns = not-small
15
+ -m = medium
16
+ -l = large
17
+
18
+ */
19
+
20
+ /*
21
+ Often used in combination with background image set as an inline style
22
+ on an html element.
23
+ */
24
+
25
+ .cover { background-size: cover!important; }
26
+ .contain { background-size: contain!important; }
27
+
28
+ @media #{$breakpoint-not-small} {
29
+ .cover-ns { background-size: cover!important; }
30
+ .contain-ns { background-size: contain!important; }
31
+ }
32
+
33
+ @media #{$breakpoint-medium} {
34
+ .cover-m { background-size: cover!important; }
35
+ .contain-m { background-size: contain!important; }
36
+ }
37
+
38
+ @media #{$breakpoint-large} {
39
+ .cover-l { background-size: cover!important; }
40
+ .contain-l { background-size: contain!important; }
41
+ }
@@ -0,0 +1,93 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BORDER COLORS
11
+ Docs: http://tachyons.io/docs/themes/borders/
12
+
13
+ Border colors can be used to extend the base
14
+ border classes ba,bt,bb,br,bl found in the _borders.css file.
15
+
16
+ The base border class by default will set the color of the border
17
+ to that of the current text color. These classes are for the cases
18
+ where you desire for the text and border colors to be different.
19
+
20
+ Base:
21
+ b = border
22
+
23
+ Modifiers:
24
+ --color-name = each color variable name is also a border color name
25
+
26
+ */
27
+
28
+ .b--black { border-color: $black; }
29
+ .b--near-black { border-color: $near-black; }
30
+ .b--dark-gray { border-color: $dark-gray; }
31
+ .b--mid-gray { border-color: $mid-gray; }
32
+ .b--gray { border-color: $gray; }
33
+ .b--silver { border-color: $silver; }
34
+ .b--light-silver { border-color: $light-silver; }
35
+ .b--moon-gray { border-color: $moon-gray; }
36
+ .b--light-gray { border-color: $light-gray; }
37
+ .b--near-white { border-color: $near-white; }
38
+ .b--white { border-color: $white; }
39
+
40
+ .b--white-90 { border-color: $white-90; }
41
+ .b--white-80 { border-color: $white-80; }
42
+ .b--white-70 { border-color: $white-70; }
43
+ .b--white-60 { border-color: $white-60; }
44
+ .b--white-50 { border-color: $white-50; }
45
+ .b--white-40 { border-color: $white-40; }
46
+ .b--white-30 { border-color: $white-30; }
47
+ .b--white-20 { border-color: $white-20; }
48
+ .b--white-10 { border-color: $white-10; }
49
+ .b--white-05 { border-color: $white-05; }
50
+ .b--white-025 { border-color: $white-025; }
51
+ .b--white-0125 { border-color: $white-0125; }
52
+
53
+ .b--black-90 { border-color: $black-90; }
54
+ .b--black-80 { border-color: $black-80; }
55
+ .b--black-70 { border-color: $black-70; }
56
+ .b--black-60 { border-color: $black-60; }
57
+ .b--black-50 { border-color: $black-50; }
58
+ .b--black-40 { border-color: $black-40; }
59
+ .b--black-30 { border-color: $black-30; }
60
+ .b--black-20 { border-color: $black-20; }
61
+ .b--black-10 { border-color: $black-10; }
62
+ .b--black-05 { border-color: $black-05; }
63
+ .b--black-025 { border-color: $black-025; }
64
+ .b--black-0125 { border-color: $black-0125; }
65
+
66
+ .b--dark-red { border-color: $dark-red; }
67
+ .b--red { border-color: $red; }
68
+ .b--light-red { border-color: $light-red; }
69
+ .b--orange { border-color: $orange; }
70
+ .b--gold { border-color: $gold; }
71
+ .b--yellow { border-color: $yellow; }
72
+ .b--light-yellow { border-color: $light-yellow; }
73
+ .b--purple { border-color: $purple; }
74
+ .b--light-purple { border-color: $light-purple; }
75
+ .b--dark-pink { border-color: $dark-pink; }
76
+ .b--hot-pink { border-color: $hot-pink; }
77
+ .b--pink { border-color: $pink; }
78
+ .b--light-pink { border-color: $light-pink; }
79
+ .b--dark-green { border-color: $dark-green; }
80
+ .b--green { border-color: $green; }
81
+ .b--light-green { border-color: $light-green; }
82
+ .b--navy { border-color: $navy; }
83
+ .b--dark-blue { border-color: $dark-blue; }
84
+ .b--blue { border-color: $blue; }
85
+ .b--light-blue { border-color: $light-blue; }
86
+ .b--lightest-blue { border-color: $lightest-blue; }
87
+ .b--washed-blue { border-color: $washed-blue; }
88
+ .b--washed-green { border-color: $washed-green; }
89
+ .b--washed-yellow { border-color: $washed-yellow; }
90
+ .b--washed-red { border-color: $washed-red; }
91
+
92
+ .b--transparent { border-color: $transparent; }
93
+ .b--inherit { border-color: inherit; }
@@ -0,0 +1,134 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BORDER RADIUS
11
+ Docs: http://tachyons.io/docs/themes/border-radius/
12
+
13
+ Base:
14
+ br = border-radius
15
+
16
+ Modifiers:
17
+ 0 = 0/none
18
+ 1 = 1st step in scale
19
+ 2 = 2nd step in scale
20
+ 3 = 3rd step in scale
21
+ 4 = 4th step in scale
22
+
23
+ Literal values:
24
+ -100 = 100%
25
+ -pill = 9999px
26
+
27
+ Media Query Extensions:
28
+ -ns = not-small
29
+ -m = medium
30
+ -l = large
31
+
32
+ */
33
+
34
+ .br0 { border-radius: 0; }
35
+ .br1 { border-radius: .125rem; }
36
+ .br2 { border-radius: .25rem; }
37
+ .br3 { border-radius: .5rem; }
38
+ .br4 { border-radius: 1rem; }
39
+ .br-100 { border-radius: 100%; }
40
+ .br-pill { border-radius: 9999px; }
41
+ .br--bottom {
42
+ border-top-left-radius: 0;
43
+ border-top-right-radius: 0;
44
+ }
45
+ .br--top {
46
+ border-bottom-left-radius: 0;
47
+ border-bottom-right-radius: 0;
48
+ }
49
+ .br--right {
50
+ border-top-left-radius: 0;
51
+ border-bottom-left-radius: 0;
52
+ }
53
+ .br--left {
54
+ border-top-right-radius: 0;
55
+ border-bottom-right-radius: 0;
56
+ }
57
+
58
+ @media #{$breakpoint-not-small} {
59
+ .br0-ns { border-radius: 0; }
60
+ .br1-ns { border-radius: .125rem; }
61
+ .br2-ns { border-radius: .25rem; }
62
+ .br3-ns { border-radius: .5rem; }
63
+ .br4-ns { border-radius: 1rem; }
64
+ .br-100-ns { border-radius: 100%; }
65
+ .br-pill-ns { border-radius: 9999px; }
66
+ .br--bottom-ns {
67
+ border-top-left-radius: 0;
68
+ border-top-right-radius: 0;
69
+ }
70
+ .br--top-ns {
71
+ border-bottom-left-radius: 0;
72
+ border-bottom-right-radius: 0;
73
+ }
74
+ .br--right-ns {
75
+ border-top-left-radius: 0;
76
+ border-bottom-left-radius: 0;
77
+ }
78
+ .br--left-ns {
79
+ border-top-right-radius: 0;
80
+ border-bottom-right-radius: 0;
81
+ }
82
+ }
83
+
84
+ @media #{$breakpoint-medium} {
85
+ .br0-m { border-radius: 0; }
86
+ .br1-m { border-radius: .125rem; }
87
+ .br2-m { border-radius: .25rem; }
88
+ .br3-m { border-radius: .5rem; }
89
+ .br4-m { border-radius: 1rem; }
90
+ .br-100-m { border-radius: 100%; }
91
+ .br-pill-m { border-radius: 9999px; }
92
+ .br--bottom-m {
93
+ border-top-left-radius: 0;
94
+ border-top-right-radius: 0;
95
+ }
96
+ .br--top-m {
97
+ border-bottom-left-radius: 0;
98
+ border-bottom-right-radius: 0;
99
+ }
100
+ .br--right-m {
101
+ border-top-left-radius: 0;
102
+ border-bottom-left-radius: 0;
103
+ }
104
+ .br--left-m {
105
+ border-top-right-radius: 0;
106
+ border-bottom-right-radius: 0;
107
+ }
108
+ }
109
+
110
+ @media #{$breakpoint-large} {
111
+ .br0-l { border-radius: 0; }
112
+ .br1-l { border-radius: .125rem; }
113
+ .br2-l { border-radius: .25rem; }
114
+ .br3-l { border-radius: .5rem; }
115
+ .br4-l { border-radius: 1rem; }
116
+ .br-100-l { border-radius: 100%; }
117
+ .br-pill-l { border-radius: 9999px; }
118
+ .br--bottom-l {
119
+ border-top-left-radius: 0;
120
+ border-top-right-radius: 0;
121
+ }
122
+ .br--top-l {
123
+ border-bottom-left-radius: 0;
124
+ border-bottom-right-radius: 0;
125
+ }
126
+ .br--right-l {
127
+ border-top-left-radius: 0;
128
+ border-bottom-left-radius: 0;
129
+ }
130
+ .br--left-l {
131
+ border-top-right-radius: 0;
132
+ border-bottom-right-radius: 0;
133
+ }
134
+ }
@@ -0,0 +1,55 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ BORDER STYLES
11
+ Docs: http://tachyons.io/docs/themes/borders/
12
+
13
+ Depends on base border module in _borders.css
14
+
15
+ Base:
16
+ b = border-style
17
+
18
+ Modifiers:
19
+ --none = none
20
+ --dotted = dotted
21
+ --dashed = dashed
22
+ --solid = solid
23
+
24
+ Media Query Extensions:
25
+ -ns = not-small
26
+ -m = medium
27
+ -l = large
28
+
29
+ */
30
+
31
+ .b--dotted { border-style: dotted; }
32
+ .b--dashed { border-style: dashed; }
33
+ .b--solid { border-style: solid; }
34
+ .b--none { border-style: none; }
35
+
36
+ @media #{$breakpoint-not-small} {
37
+ .b--dotted-ns { border-style: dotted; }
38
+ .b--dashed-ns { border-style: dashed; }
39
+ .b--solid-ns { border-style: solid; }
40
+ .b--none-ns { border-style: none; }
41
+ }
42
+
43
+ @media #{$breakpoint-medium} {
44
+ .b--dotted-m { border-style: dotted; }
45
+ .b--dashed-m { border-style: dashed; }
46
+ .b--solid-m { border-style: solid; }
47
+ .b--none-m { border-style: none; }
48
+ }
49
+
50
+ @media #{$breakpoint-large} {
51
+ .b--dotted-l { border-style: dotted; }
52
+ .b--dashed-l { border-style: dashed; }
53
+ .b--solid-l { border-style: solid; }
54
+ .b--none-l { border-style: none; }
55
+ }