jekyll-theme-puzzleduck 1.0.0 → 1.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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/_layouts/home.html +19 -14
- data/_layouts/post.html +13 -16
- data/assets/main.scss +126 -0
- metadata +2 -6
- data/_sass/minima/_base.scss +0 -215
- data/_sass/minima/_layout.scss +0 -250
- data/_sass/minima/_syntax-highlighting.scss +0 -71
- data/_sass/minima.scss +0 -49
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f73e6e8110536513a01f65e3029929cc3156c81
|
4
|
+
data.tar.gz: 84475356889ca94ea6b3f49afccd102c84ae4f66
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3da0fc79e2c65a57883a14b31026f6d5194ca870f9d543265315f0903b885f64a9a54c92dc39a7e3f32a6fd38c274c69f97a345198beff80236b65265b5d0de
|
7
|
+
data.tar.gz: dbdebdd82a42959be272440fe4377b954797ae2a1dd9a33b0ce31e1bf702836c42b381202f86cd2ed29aaae4682fb844687432748443c6d3074b3013a8847f71
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
This is the Jekyll theme for the PuZZleDucK.org blog.
|
4
4
|
|
5
|
-
[Theme preview](https://puzzleduck.
|
5
|
+
[Theme preview](https://puzzleduck.gitlab.io/Development-Adventures)
|
6
6
|
|
7
7
|

|
8
8
|
|
@@ -22,7 +22,7 @@ theme: jekyll-theme-puzzleduck
|
|
22
22
|
|
23
23
|
And then execute:
|
24
24
|
|
25
|
-
$ bundle
|
25
|
+
$ bundle install
|
26
26
|
|
27
27
|
Or install it yourself as:
|
28
28
|
|
data/_layouts/home.html
CHANGED
@@ -4,23 +4,28 @@ layout: default
|
|
4
4
|
|
5
5
|
<div class="home">
|
6
6
|
|
7
|
-
<h1 class="page-heading">Posts</h1>
|
8
|
-
|
9
7
|
{{ content }}
|
10
8
|
|
11
|
-
<
|
12
|
-
|
13
|
-
<
|
14
|
-
{% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %}
|
15
|
-
<span class="post-meta">{{ post.date | date: date_format }}</span>
|
9
|
+
<div class="row">
|
10
|
+
<div class="col s12 l10 cards-container">
|
11
|
+
<h1 class="page-heading center">Blog Posts</h1> {% for post in site.posts %}
|
16
12
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
13
|
+
<a class="post-link" href="{{ post.url | relative_url }}">
|
14
|
+
<div class="card primary z-depth-5">
|
15
|
+
<div class="card-title center">
|
16
|
+
<h5 class="title">{{ post.title | escape }}</h5>
|
17
|
+
<hr />
|
18
|
+
</div>
|
19
|
+
<div class="post-content center" itemprop="articleBody">
|
20
|
+
<i class="material-icons small">account_balance</i> - {{ post.date | date: date_format }}
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
</a>
|
23
24
|
|
24
|
-
|
25
|
+
{% endfor %}
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
|
29
|
+
<p class="rss-subscribe">subscribe <a href="{{ " /feed.xml " | relative_url }}">via RSS</a></p>
|
25
30
|
|
26
31
|
</div>
|
data/_layouts/post.html
CHANGED
@@ -3,23 +3,20 @@ layout: default
|
|
3
3
|
---
|
4
4
|
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
|
5
5
|
|
6
|
-
<
|
7
|
-
<
|
8
|
-
<p class="post-meta">
|
9
|
-
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
10
|
-
{% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %}
|
11
|
-
{{ page.date | date: date_format }}
|
12
|
-
</time>
|
13
|
-
{% if page.author %}
|
14
|
-
• <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>
|
15
|
-
{% endif %}</p>
|
16
|
-
</header>
|
6
|
+
<div class="row">
|
7
|
+
<div class="col s12 l10 cards-container">
|
17
8
|
|
18
|
-
|
19
|
-
|
9
|
+
<div class="card primary z-depth-5">
|
10
|
+
<div class="card-title center">
|
11
|
+
<h5 class="title"><i class="material-icons small">account_balance</i> - {{ page.title | escape }}</h5>
|
12
|
+
<hr />
|
13
|
+
</div>
|
14
|
+
<div class="post-content" itemprop="articleBody">
|
15
|
+
{{ content }}
|
16
|
+
</div>
|
17
|
+
</div>
|
18
|
+
</div>
|
20
19
|
</div>
|
21
20
|
|
22
|
-
{% if site.disqus.shortname %}
|
23
|
-
{% include disqus_comments.html %}
|
24
|
-
{% endif %}
|
21
|
+
{% if site.disqus.shortname %} {% include disqus_comments.html %} {% endif %}
|
25
22
|
</article>
|
data/assets/main.scss
CHANGED
@@ -105,3 +105,129 @@ img {
|
|
105
105
|
.footer-copyright {
|
106
106
|
padding: 2px;
|
107
107
|
}
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
/**
|
113
|
+
* Code formatting
|
114
|
+
*/
|
115
|
+
|
116
|
+
$base-font-size: 16px !default;
|
117
|
+
|
118
|
+
$ratio: 0;
|
119
|
+
|
120
|
+
$grey-color: #828282 !default;
|
121
|
+
$grey-color-light: lighten($grey-color, 40%) !default;
|
122
|
+
$grey-color-dark: darken($grey-color, 25%) !default;
|
123
|
+
|
124
|
+
@mixin relative-font-size($ratio) {
|
125
|
+
font-size: $base-font-size * $ratio;
|
126
|
+
}
|
127
|
+
|
128
|
+
pre,
|
129
|
+
code {
|
130
|
+
@include relative-font-size(0.9375);
|
131
|
+
border: 1px solid $grey-color-light;
|
132
|
+
border-radius: 3px;
|
133
|
+
background-color: #666;
|
134
|
+
}
|
135
|
+
|
136
|
+
code {
|
137
|
+
padding: 1px 5px;
|
138
|
+
}
|
139
|
+
|
140
|
+
pre {
|
141
|
+
padding: 8px 12px;
|
142
|
+
overflow-x: auto;
|
143
|
+
|
144
|
+
> code {
|
145
|
+
border: 0;
|
146
|
+
padding-right: 0;
|
147
|
+
padding-left: 0;
|
148
|
+
}
|
149
|
+
}
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
/**
|
154
|
+
* Syntax highlighting styles
|
155
|
+
*/
|
156
|
+
|
157
|
+
$spacing-unit: 30px !default;
|
158
|
+
|
159
|
+
h1, h2, h3, h4, h5, h6,
|
160
|
+
p, blockquote, pre,
|
161
|
+
ul, ol, dl, figure,
|
162
|
+
%vertical-rhythm {
|
163
|
+
margin-bottom: $spacing-unit / 2;
|
164
|
+
}
|
165
|
+
|
166
|
+
.highlight {
|
167
|
+
background: #fff;
|
168
|
+
@extend %vertical-rhythm;
|
169
|
+
|
170
|
+
.highlighter-rouge & {
|
171
|
+
background: #eef;
|
172
|
+
}
|
173
|
+
|
174
|
+
.c { color: #998; font-style: italic } // Comment
|
175
|
+
.err { color: #a61717; background-color: #e3d2d2 } // Error
|
176
|
+
.k { font-weight: bold } // Keyword
|
177
|
+
.o { font-weight: bold } // Operator
|
178
|
+
.cm { color: #998; font-style: italic } // Comment.Multiline
|
179
|
+
.cp { color: #999; font-weight: bold } // Comment.Preproc
|
180
|
+
.c1 { color: #998; font-style: italic } // Comment.Single
|
181
|
+
.cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
|
182
|
+
.gd { color: #000; background-color: #fdd } // Generic.Deleted
|
183
|
+
.gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
|
184
|
+
.ge { font-style: italic } // Generic.Emph
|
185
|
+
.gr { color: #a00 } // Generic.Error
|
186
|
+
.gh { color: #999 } // Generic.Heading
|
187
|
+
.gi { color: #000; background-color: #dfd } // Generic.Inserted
|
188
|
+
.gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
|
189
|
+
.go { color: #888 } // Generic.Output
|
190
|
+
.gp { color: #555 } // Generic.Prompt
|
191
|
+
.gs { font-weight: bold } // Generic.Strong
|
192
|
+
.gu { color: #aaa } // Generic.Subheading
|
193
|
+
.gt { color: #a00 } // Generic.Traceback
|
194
|
+
.kc { font-weight: bold } // Keyword.Constant
|
195
|
+
.kd { font-weight: bold } // Keyword.Declaration
|
196
|
+
.kp { font-weight: bold } // Keyword.Pseudo
|
197
|
+
.kr { font-weight: bold } // Keyword.Reserved
|
198
|
+
.kt { color: #458; font-weight: bold } // Keyword.Type
|
199
|
+
.m { color: #099 } // Literal.Number
|
200
|
+
.s { color: #d14 } // Literal.String
|
201
|
+
.na { color: #008080 } // Name.Attribute
|
202
|
+
.nb { color: #0086B3 } // Name.Builtin
|
203
|
+
.nc { color: #458; font-weight: bold } // Name.Class
|
204
|
+
.no { color: #008080 } // Name.Constant
|
205
|
+
.ni { color: #800080 } // Name.Entity
|
206
|
+
.ne { color: #900; font-weight: bold } // Name.Exception
|
207
|
+
.nf { color: #900; font-weight: bold } // Name.Function
|
208
|
+
.nn { color: #555 } // Name.Namespace
|
209
|
+
.nt { color: #000080 } // Name.Tag
|
210
|
+
.nv { color: #008080 } // Name.Variable
|
211
|
+
.ow { font-weight: bold } // Operator.Word
|
212
|
+
.w { color: #bbb } // Text.Whitespace
|
213
|
+
.mf { color: #099 } // Literal.Number.Float
|
214
|
+
.mh { color: #099 } // Literal.Number.Hex
|
215
|
+
.mi { color: #099 } // Literal.Number.Integer
|
216
|
+
.mo { color: #099 } // Literal.Number.Oct
|
217
|
+
.sb { color: #d14 } // Literal.String.Backtick
|
218
|
+
.sc { color: #d14 } // Literal.String.Char
|
219
|
+
.sd { color: #d14 } // Literal.String.Doc
|
220
|
+
.s2 { color: #d14 } // Literal.String.Double
|
221
|
+
.se { color: #d14 } // Literal.String.Escape
|
222
|
+
.sh { color: #d14 } // Literal.String.Heredoc
|
223
|
+
.si { color: #d14 } // Literal.String.Interpol
|
224
|
+
.sx { color: #d14 } // Literal.String.Other
|
225
|
+
.sr { color: #009926 } // Literal.String.Regex
|
226
|
+
.s1 { color: #d14 } // Literal.String.Single
|
227
|
+
.ss { color: #990073 } // Literal.String.Symbol
|
228
|
+
.bp { color: #999 } // Name.Builtin.Pseudo
|
229
|
+
.vc { color: #008080 } // Name.Variable.Class
|
230
|
+
.vg { color: #008080 } // Name.Variable.Global
|
231
|
+
.vi { color: #008080 } // Name.Variable.Instance
|
232
|
+
.il { color: #099 } // Literal.Number.Integer.Long
|
233
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-puzzleduck
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PuZZleDucK
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-10-
|
11
|
+
date: 2017-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -74,10 +74,6 @@ files:
|
|
74
74
|
- _layouts/home.html
|
75
75
|
- _layouts/page.html
|
76
76
|
- _layouts/post.html
|
77
|
-
- _sass/minima.scss
|
78
|
-
- _sass/minima/_base.scss
|
79
|
-
- _sass/minima/_layout.scss
|
80
|
-
- _sass/minima/_syntax-highlighting.scss
|
81
77
|
- assets/css/materialize.css
|
82
78
|
- assets/css/materialize.min.css
|
83
79
|
- assets/fonts/kirsty/kirsty bd it.ttf
|
data/_sass/minima/_base.scss
DELETED
@@ -1,215 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Reset some basic elements
|
3
|
-
*/
|
4
|
-
body, h1, h2, h3, h4, h5, h6,
|
5
|
-
p, blockquote, pre, hr,
|
6
|
-
dl, dd, ol, ul, figure {
|
7
|
-
margin: 0;
|
8
|
-
padding: 0;
|
9
|
-
}
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
/**
|
14
|
-
* Basic styling
|
15
|
-
*/
|
16
|
-
body {
|
17
|
-
font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;
|
18
|
-
color: $text-color;
|
19
|
-
background-color: $background-color;
|
20
|
-
-webkit-text-size-adjust: 100%;
|
21
|
-
-webkit-font-feature-settings: "kern" 1;
|
22
|
-
-moz-font-feature-settings: "kern" 1;
|
23
|
-
-o-font-feature-settings: "kern" 1;
|
24
|
-
font-feature-settings: "kern" 1;
|
25
|
-
font-kerning: normal;
|
26
|
-
}
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
/**
|
31
|
-
* Set `margin-bottom` to maintain vertical rhythm
|
32
|
-
*/
|
33
|
-
h1, h2, h3, h4, h5, h6,
|
34
|
-
p, blockquote, pre,
|
35
|
-
ul, ol, dl, figure,
|
36
|
-
%vertical-rhythm {
|
37
|
-
margin-bottom: $spacing-unit / 2;
|
38
|
-
}
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
/**
|
43
|
-
* Images
|
44
|
-
*/
|
45
|
-
img {
|
46
|
-
max-width: 100%;
|
47
|
-
vertical-align: middle;
|
48
|
-
}
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
/**
|
53
|
-
* Figures
|
54
|
-
*/
|
55
|
-
figure > img {
|
56
|
-
display: block;
|
57
|
-
}
|
58
|
-
|
59
|
-
figcaption {
|
60
|
-
font-size: $small-font-size;
|
61
|
-
}
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
/**
|
66
|
-
* Lists
|
67
|
-
*/
|
68
|
-
ul, ol {
|
69
|
-
margin-left: $spacing-unit;
|
70
|
-
}
|
71
|
-
|
72
|
-
li {
|
73
|
-
> ul,
|
74
|
-
> ol {
|
75
|
-
margin-bottom: 0;
|
76
|
-
}
|
77
|
-
}
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
/**
|
82
|
-
* Headings
|
83
|
-
*/
|
84
|
-
h1, h2, h3, h4, h5, h6 {
|
85
|
-
font-weight: $base-font-weight;
|
86
|
-
}
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
/**
|
91
|
-
* Links
|
92
|
-
*/
|
93
|
-
a {
|
94
|
-
color: $brand-color;
|
95
|
-
text-decoration: none;
|
96
|
-
|
97
|
-
&:visited {
|
98
|
-
color: darken($brand-color, 15%);
|
99
|
-
}
|
100
|
-
|
101
|
-
&:hover {
|
102
|
-
color: $text-color;
|
103
|
-
text-decoration: underline;
|
104
|
-
}
|
105
|
-
|
106
|
-
.social-media-list &:hover {
|
107
|
-
text-decoration: none;
|
108
|
-
|
109
|
-
.username {
|
110
|
-
text-decoration: underline;
|
111
|
-
}
|
112
|
-
}
|
113
|
-
}
|
114
|
-
|
115
|
-
|
116
|
-
/**
|
117
|
-
* Blockquotes
|
118
|
-
*/
|
119
|
-
blockquote {
|
120
|
-
color: $grey-color;
|
121
|
-
border-left: 4px solid $grey-color-light;
|
122
|
-
padding-left: $spacing-unit / 2;
|
123
|
-
@include relative-font-size(1.125);
|
124
|
-
letter-spacing: -1px;
|
125
|
-
font-style: italic;
|
126
|
-
|
127
|
-
> :last-child {
|
128
|
-
margin-bottom: 0;
|
129
|
-
}
|
130
|
-
}
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
/**
|
135
|
-
* Code formatting
|
136
|
-
*/
|
137
|
-
pre,
|
138
|
-
code {
|
139
|
-
@include relative-font-size(0.9375);
|
140
|
-
border: 1px solid $grey-color-light;
|
141
|
-
border-radius: 3px;
|
142
|
-
background-color: #eef;
|
143
|
-
}
|
144
|
-
|
145
|
-
code {
|
146
|
-
padding: 1px 5px;
|
147
|
-
}
|
148
|
-
|
149
|
-
pre {
|
150
|
-
padding: 8px 12px;
|
151
|
-
overflow-x: auto;
|
152
|
-
|
153
|
-
> code {
|
154
|
-
border: 0;
|
155
|
-
padding-right: 0;
|
156
|
-
padding-left: 0;
|
157
|
-
}
|
158
|
-
}
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
/**
|
163
|
-
* Wrapper
|
164
|
-
*/
|
165
|
-
.wrapper {
|
166
|
-
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
|
167
|
-
max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
|
168
|
-
margin-right: auto;
|
169
|
-
margin-left: auto;
|
170
|
-
padding-right: $spacing-unit;
|
171
|
-
padding-left: $spacing-unit;
|
172
|
-
@extend %clearfix;
|
173
|
-
|
174
|
-
@include media-query($on-laptop) {
|
175
|
-
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
|
176
|
-
max-width: calc(#{$content-width} - (#{$spacing-unit}));
|
177
|
-
padding-right: $spacing-unit / 2;
|
178
|
-
padding-left: $spacing-unit / 2;
|
179
|
-
}
|
180
|
-
}
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
/**
|
185
|
-
* Clearfix
|
186
|
-
*/
|
187
|
-
%clearfix:after {
|
188
|
-
content: "";
|
189
|
-
display: table;
|
190
|
-
clear: both;
|
191
|
-
}
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
/**
|
196
|
-
* Icons
|
197
|
-
*/
|
198
|
-
.icon > svg {
|
199
|
-
display: inline-block;
|
200
|
-
vertical-align: middle;
|
201
|
-
|
202
|
-
path {
|
203
|
-
fill: $grey-color;
|
204
|
-
}
|
205
|
-
}
|
206
|
-
|
207
|
-
.social-media-list {
|
208
|
-
.icon {
|
209
|
-
padding-right: 5px;
|
210
|
-
}
|
211
|
-
|
212
|
-
li + li {
|
213
|
-
padding-top: 5px;
|
214
|
-
}
|
215
|
-
}
|
data/_sass/minima/_layout.scss
DELETED
@@ -1,250 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Site header
|
3
|
-
*/
|
4
|
-
.site-header {
|
5
|
-
border-top: 5px solid $grey-color-dark;
|
6
|
-
border-bottom: 1px solid $grey-color-light;
|
7
|
-
min-height: $spacing-unit * 1.865;
|
8
|
-
|
9
|
-
// Positioning context for the mobile navigation icon
|
10
|
-
position: relative;
|
11
|
-
}
|
12
|
-
|
13
|
-
.site-title {
|
14
|
-
@include relative-font-size(1.625);
|
15
|
-
font-weight: 300;
|
16
|
-
line-height: $base-line-height * $base-font-size * 2.25;
|
17
|
-
letter-spacing: -1px;
|
18
|
-
margin-bottom: 0;
|
19
|
-
float: left;
|
20
|
-
|
21
|
-
&,
|
22
|
-
&:visited {
|
23
|
-
color: $grey-color-dark;
|
24
|
-
}
|
25
|
-
}
|
26
|
-
|
27
|
-
.site-nav {
|
28
|
-
float: right;
|
29
|
-
line-height: $base-line-height * $base-font-size * 2.25;
|
30
|
-
|
31
|
-
.nav-trigger {
|
32
|
-
display: none;
|
33
|
-
}
|
34
|
-
|
35
|
-
.menu-icon {
|
36
|
-
display: none;
|
37
|
-
}
|
38
|
-
|
39
|
-
.page-link {
|
40
|
-
color: $text-color;
|
41
|
-
line-height: $base-line-height;
|
42
|
-
|
43
|
-
// Gaps between nav items, but not on the last one
|
44
|
-
&:not(:last-child) {
|
45
|
-
margin-right: 20px;
|
46
|
-
}
|
47
|
-
}
|
48
|
-
|
49
|
-
@include media-query($on-palm) {
|
50
|
-
position: absolute;
|
51
|
-
top: 9px;
|
52
|
-
right: $spacing-unit / 2;
|
53
|
-
background-color: $background-color;
|
54
|
-
border: 1px solid $grey-color-light;
|
55
|
-
border-radius: 5px;
|
56
|
-
text-align: right;
|
57
|
-
|
58
|
-
label[for="nav-trigger"] {
|
59
|
-
display: block;
|
60
|
-
float: right;
|
61
|
-
width: 36px;
|
62
|
-
height: 36px;
|
63
|
-
z-index: 2;
|
64
|
-
cursor: pointer;
|
65
|
-
}
|
66
|
-
|
67
|
-
.menu-icon {
|
68
|
-
display: block;
|
69
|
-
float: right;
|
70
|
-
width: 36px;
|
71
|
-
height: 26px;
|
72
|
-
line-height: 0;
|
73
|
-
padding-top: 10px;
|
74
|
-
text-align: center;
|
75
|
-
|
76
|
-
> svg path {
|
77
|
-
fill: $grey-color-dark;
|
78
|
-
}
|
79
|
-
}
|
80
|
-
|
81
|
-
input ~ .trigger {
|
82
|
-
clear: both;
|
83
|
-
display: none;
|
84
|
-
}
|
85
|
-
|
86
|
-
input:checked ~ .trigger {
|
87
|
-
display: block;
|
88
|
-
padding-bottom: 5px;
|
89
|
-
}
|
90
|
-
|
91
|
-
.page-link {
|
92
|
-
display: block;
|
93
|
-
padding: 5px 10px;
|
94
|
-
|
95
|
-
&:not(:last-child) {
|
96
|
-
margin-right: 0;
|
97
|
-
}
|
98
|
-
margin-left: 20px;
|
99
|
-
}
|
100
|
-
}
|
101
|
-
}
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
/**
|
106
|
-
* Site footer
|
107
|
-
*/
|
108
|
-
.site-footer {
|
109
|
-
border-top: 1px solid $grey-color-light;
|
110
|
-
padding: $spacing-unit 0;
|
111
|
-
}
|
112
|
-
|
113
|
-
.footer-heading {
|
114
|
-
@include relative-font-size(1.125);
|
115
|
-
margin-bottom: $spacing-unit / 2;
|
116
|
-
}
|
117
|
-
|
118
|
-
.contact-list,
|
119
|
-
.social-media-list {
|
120
|
-
list-style: none;
|
121
|
-
margin-left: 0;
|
122
|
-
}
|
123
|
-
|
124
|
-
.footer-col-wrapper {
|
125
|
-
@include relative-font-size(0.9375);
|
126
|
-
color: $grey-color;
|
127
|
-
margin-left: -$spacing-unit / 2;
|
128
|
-
@extend %clearfix;
|
129
|
-
}
|
130
|
-
|
131
|
-
.footer-col {
|
132
|
-
float: left;
|
133
|
-
margin-bottom: $spacing-unit / 2;
|
134
|
-
padding-left: $spacing-unit / 2;
|
135
|
-
}
|
136
|
-
|
137
|
-
.footer-col-1 {
|
138
|
-
width: -webkit-calc(35% - (#{$spacing-unit} / 2));
|
139
|
-
width: calc(35% - (#{$spacing-unit} / 2));
|
140
|
-
}
|
141
|
-
|
142
|
-
.footer-col-2 {
|
143
|
-
width: -webkit-calc(20% - (#{$spacing-unit} / 2));
|
144
|
-
width: calc(20% - (#{$spacing-unit} / 2));
|
145
|
-
}
|
146
|
-
|
147
|
-
.footer-col-3 {
|
148
|
-
width: -webkit-calc(45% - (#{$spacing-unit} / 2));
|
149
|
-
width: calc(45% - (#{$spacing-unit} / 2));
|
150
|
-
}
|
151
|
-
|
152
|
-
@include media-query($on-laptop) {
|
153
|
-
.footer-col-1,
|
154
|
-
.footer-col-2 {
|
155
|
-
width: -webkit-calc(50% - (#{$spacing-unit} / 2));
|
156
|
-
width: calc(50% - (#{$spacing-unit} / 2));
|
157
|
-
}
|
158
|
-
|
159
|
-
.footer-col-3 {
|
160
|
-
width: -webkit-calc(100% - (#{$spacing-unit} / 2));
|
161
|
-
width: calc(100% - (#{$spacing-unit} / 2));
|
162
|
-
}
|
163
|
-
}
|
164
|
-
|
165
|
-
@include media-query($on-palm) {
|
166
|
-
.footer-col {
|
167
|
-
float: none;
|
168
|
-
width: -webkit-calc(100% - (#{$spacing-unit} / 2));
|
169
|
-
width: calc(100% - (#{$spacing-unit} / 2));
|
170
|
-
}
|
171
|
-
}
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
/**
|
176
|
-
* Page content
|
177
|
-
*/
|
178
|
-
.page-content {
|
179
|
-
padding: $spacing-unit 0;
|
180
|
-
}
|
181
|
-
|
182
|
-
.page-heading {
|
183
|
-
@include relative-font-size(1.25);
|
184
|
-
}
|
185
|
-
|
186
|
-
.post-list {
|
187
|
-
margin-left: 0;
|
188
|
-
list-style: none;
|
189
|
-
|
190
|
-
> li {
|
191
|
-
margin-bottom: $spacing-unit;
|
192
|
-
}
|
193
|
-
}
|
194
|
-
|
195
|
-
.post-meta {
|
196
|
-
font-size: $small-font-size;
|
197
|
-
color: $grey-color;
|
198
|
-
}
|
199
|
-
|
200
|
-
.post-link {
|
201
|
-
display: block;
|
202
|
-
@include relative-font-size(1.5);
|
203
|
-
}
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
/**
|
208
|
-
* Posts
|
209
|
-
*/
|
210
|
-
.post-header {
|
211
|
-
margin-bottom: $spacing-unit;
|
212
|
-
}
|
213
|
-
|
214
|
-
.post-title {
|
215
|
-
@include relative-font-size(2.625);
|
216
|
-
letter-spacing: -1px;
|
217
|
-
line-height: 1;
|
218
|
-
|
219
|
-
@include media-query($on-laptop) {
|
220
|
-
@include relative-font-size(2.25);
|
221
|
-
}
|
222
|
-
}
|
223
|
-
|
224
|
-
.post-content {
|
225
|
-
margin-bottom: $spacing-unit;
|
226
|
-
|
227
|
-
h2 {
|
228
|
-
@include relative-font-size(2);
|
229
|
-
|
230
|
-
@include media-query($on-laptop) {
|
231
|
-
@include relative-font-size(1.75);
|
232
|
-
}
|
233
|
-
}
|
234
|
-
|
235
|
-
h3 {
|
236
|
-
@include relative-font-size(1.625);
|
237
|
-
|
238
|
-
@include media-query($on-laptop) {
|
239
|
-
@include relative-font-size(1.375);
|
240
|
-
}
|
241
|
-
}
|
242
|
-
|
243
|
-
h4 {
|
244
|
-
@include relative-font-size(1.25);
|
245
|
-
|
246
|
-
@include media-query($on-laptop) {
|
247
|
-
@include relative-font-size(1.125);
|
248
|
-
}
|
249
|
-
}
|
250
|
-
}
|
@@ -1,71 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Syntax highlighting styles
|
3
|
-
*/
|
4
|
-
.highlight {
|
5
|
-
background: #fff;
|
6
|
-
@extend %vertical-rhythm;
|
7
|
-
|
8
|
-
.highlighter-rouge & {
|
9
|
-
background: #eef;
|
10
|
-
}
|
11
|
-
|
12
|
-
.c { color: #998; font-style: italic } // Comment
|
13
|
-
.err { color: #a61717; background-color: #e3d2d2 } // Error
|
14
|
-
.k { font-weight: bold } // Keyword
|
15
|
-
.o { font-weight: bold } // Operator
|
16
|
-
.cm { color: #998; font-style: italic } // Comment.Multiline
|
17
|
-
.cp { color: #999; font-weight: bold } // Comment.Preproc
|
18
|
-
.c1 { color: #998; font-style: italic } // Comment.Single
|
19
|
-
.cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
|
20
|
-
.gd { color: #000; background-color: #fdd } // Generic.Deleted
|
21
|
-
.gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
|
22
|
-
.ge { font-style: italic } // Generic.Emph
|
23
|
-
.gr { color: #a00 } // Generic.Error
|
24
|
-
.gh { color: #999 } // Generic.Heading
|
25
|
-
.gi { color: #000; background-color: #dfd } // Generic.Inserted
|
26
|
-
.gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
|
27
|
-
.go { color: #888 } // Generic.Output
|
28
|
-
.gp { color: #555 } // Generic.Prompt
|
29
|
-
.gs { font-weight: bold } // Generic.Strong
|
30
|
-
.gu { color: #aaa } // Generic.Subheading
|
31
|
-
.gt { color: #a00 } // Generic.Traceback
|
32
|
-
.kc { font-weight: bold } // Keyword.Constant
|
33
|
-
.kd { font-weight: bold } // Keyword.Declaration
|
34
|
-
.kp { font-weight: bold } // Keyword.Pseudo
|
35
|
-
.kr { font-weight: bold } // Keyword.Reserved
|
36
|
-
.kt { color: #458; font-weight: bold } // Keyword.Type
|
37
|
-
.m { color: #099 } // Literal.Number
|
38
|
-
.s { color: #d14 } // Literal.String
|
39
|
-
.na { color: #008080 } // Name.Attribute
|
40
|
-
.nb { color: #0086B3 } // Name.Builtin
|
41
|
-
.nc { color: #458; font-weight: bold } // Name.Class
|
42
|
-
.no { color: #008080 } // Name.Constant
|
43
|
-
.ni { color: #800080 } // Name.Entity
|
44
|
-
.ne { color: #900; font-weight: bold } // Name.Exception
|
45
|
-
.nf { color: #900; font-weight: bold } // Name.Function
|
46
|
-
.nn { color: #555 } // Name.Namespace
|
47
|
-
.nt { color: #000080 } // Name.Tag
|
48
|
-
.nv { color: #008080 } // Name.Variable
|
49
|
-
.ow { font-weight: bold } // Operator.Word
|
50
|
-
.w { color: #bbb } // Text.Whitespace
|
51
|
-
.mf { color: #099 } // Literal.Number.Float
|
52
|
-
.mh { color: #099 } // Literal.Number.Hex
|
53
|
-
.mi { color: #099 } // Literal.Number.Integer
|
54
|
-
.mo { color: #099 } // Literal.Number.Oct
|
55
|
-
.sb { color: #d14 } // Literal.String.Backtick
|
56
|
-
.sc { color: #d14 } // Literal.String.Char
|
57
|
-
.sd { color: #d14 } // Literal.String.Doc
|
58
|
-
.s2 { color: #d14 } // Literal.String.Double
|
59
|
-
.se { color: #d14 } // Literal.String.Escape
|
60
|
-
.sh { color: #d14 } // Literal.String.Heredoc
|
61
|
-
.si { color: #d14 } // Literal.String.Interpol
|
62
|
-
.sx { color: #d14 } // Literal.String.Other
|
63
|
-
.sr { color: #009926 } // Literal.String.Regex
|
64
|
-
.s1 { color: #d14 } // Literal.String.Single
|
65
|
-
.ss { color: #990073 } // Literal.String.Symbol
|
66
|
-
.bp { color: #999 } // Name.Builtin.Pseudo
|
67
|
-
.vc { color: #008080 } // Name.Variable.Class
|
68
|
-
.vg { color: #008080 } // Name.Variable.Global
|
69
|
-
.vi { color: #008080 } // Name.Variable.Instance
|
70
|
-
.il { color: #099 } // Literal.Number.Integer.Long
|
71
|
-
}
|
data/_sass/minima.scss
DELETED
@@ -1,49 +0,0 @@
|
|
1
|
-
@charset "utf-8";
|
2
|
-
|
3
|
-
// Define defaults for each variable.
|
4
|
-
|
5
|
-
$base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
6
|
-
$base-font-size: 16px !default;
|
7
|
-
$base-font-weight: 400 !default;
|
8
|
-
$small-font-size: $base-font-size * 0.875 !default;
|
9
|
-
$base-line-height: 1.5 !default;
|
10
|
-
|
11
|
-
$spacing-unit: 30px !default;
|
12
|
-
|
13
|
-
$text-color: #111 !default;
|
14
|
-
$background-color: #fdfdfd !default;
|
15
|
-
$brand-color: #2a7ae2 !default;
|
16
|
-
|
17
|
-
$grey-color: #828282 !default;
|
18
|
-
$grey-color-light: lighten($grey-color, 40%) !default;
|
19
|
-
$grey-color-dark: darken($grey-color, 25%) !default;
|
20
|
-
|
21
|
-
// Width of the content area
|
22
|
-
$content-width: 800px !default;
|
23
|
-
|
24
|
-
$on-palm: 600px !default;
|
25
|
-
$on-laptop: 800px !default;
|
26
|
-
|
27
|
-
// Use media queries like this:
|
28
|
-
// @include media-query($on-palm) {
|
29
|
-
// .wrapper {
|
30
|
-
// padding-right: $spacing-unit / 2;
|
31
|
-
// padding-left: $spacing-unit / 2;
|
32
|
-
// }
|
33
|
-
// }
|
34
|
-
@mixin media-query($device) {
|
35
|
-
@media screen and (max-width: $device) {
|
36
|
-
@content;
|
37
|
-
}
|
38
|
-
}
|
39
|
-
|
40
|
-
@mixin relative-font-size($ratio) {
|
41
|
-
font-size: $base-font-size * $ratio;
|
42
|
-
}
|
43
|
-
|
44
|
-
// Import partials.
|
45
|
-
@import
|
46
|
-
"minima/base",
|
47
|
-
"minima/layout",
|
48
|
-
"minima/syntax-highlighting"
|
49
|
-
;
|