minimaless 0.0.2 → 0.0.4
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 +3 -0
- data/_includes/head.html +6 -0
- data/_sass/minimaless/_layout.scss +5 -28
- data/_sass/minimaless.scss +5 -0
- data/assets/favicon.png +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d2d2ed00614801074d99e1a3d6369c06d765b933
|
4
|
+
data.tar.gz: cabbe88c47b16db11642433017e931d83501a5b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2cb7273ea3a3c4069dff317a4bcef9406f18581346193bd9b77435aa523b22a696629b76c8b508bc9522baeb41ed243440a7e4f78c3cef1a10419c0a73799d5
|
7
|
+
data.tar.gz: b9058fda3b8411ca87c206b007ec1d3e4b60f0bcc46b62fbc70698580671edfe09b259b6859b3cd467fa7074bd6d3b50117690a568d9a3bb0dc444a503c630fa
|
data/README.md
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
|
3
3
|
It's like [minima](https://jekyll.github.io/minima/), but less. ✨
|
4
4
|
|
5
|
+

|
6
|
+
|
7
|
+
See the [demo site](https://brettinternet.github.io/minimaless/). Learn [how to setup](/setup.md) a Jekyll site with this theme.
|
5
8
|
|
6
9
|
## Installation
|
7
10
|
|
data/_includes/head.html
CHANGED
@@ -6,6 +6,12 @@
|
|
6
6
|
<title>{% if page.title %}{{ page.title | escape }} | {{ site.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
7
7
|
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
|
8
8
|
|
9
|
+
{% for file in site.static_files %}
|
10
|
+
{% if file.basename == 'favicon' %}
|
11
|
+
<link rel="icon" type="image/png" href="{{ file.path | relative_url }}">
|
12
|
+
{% break %}
|
13
|
+
{% endif %}
|
14
|
+
{% endfor %}
|
9
15
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
|
10
16
|
|
11
17
|
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
|
@@ -24,7 +24,7 @@
|
|
24
24
|
}
|
25
25
|
|
26
26
|
.site-logo {
|
27
|
-
height:
|
27
|
+
height: 20px;
|
28
28
|
width: auto;
|
29
29
|
}
|
30
30
|
|
@@ -201,38 +201,13 @@
|
|
201
201
|
}
|
202
202
|
}
|
203
203
|
|
204
|
-
.about {
|
205
|
-
-webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
|
206
|
-
-moz-animation: fadein 3s; /* Firefox < 16 */
|
207
|
-
-ms-animation: fadein 3s; /* Internet Explorer */
|
208
|
-
-o-animation: fadein 3s; /* Opera < 12.1 */
|
209
|
-
animation: fadein 3s;
|
210
|
-
|
211
|
-
p, ul {
|
212
|
-
font-size: 18px;
|
213
|
-
}
|
214
|
-
}
|
215
|
-
|
216
|
-
.contact {
|
217
|
-
-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
|
218
|
-
-moz-animation: fadein 2s; /* Firefox < 16 */
|
219
|
-
-ms-animation: fadein 2s; /* Internet Explorer */
|
220
|
-
-o-animation: fadein 2s; /* Opera < 12.1 */
|
221
|
-
animation: fadein 2s;
|
222
|
-
|
204
|
+
.about, .contact {
|
223
205
|
p, ul {
|
224
206
|
font-size: 18px;
|
225
207
|
}
|
226
208
|
}
|
227
209
|
|
228
210
|
|
229
|
-
@keyframes fadein {
|
230
|
-
from { opacity: 0; }
|
231
|
-
to { opacity: 1; }
|
232
|
-
}
|
233
|
-
|
234
|
-
|
235
|
-
|
236
211
|
/**
|
237
212
|
* Page content
|
238
213
|
*/
|
@@ -245,7 +220,9 @@
|
|
245
220
|
@include relative-font-size(1.25);
|
246
221
|
}
|
247
222
|
@for $i from 1 through 10 {
|
248
|
-
.blog li:nth-child(#{$i})
|
223
|
+
.blog li:nth-child(#{$i}),
|
224
|
+
.contact .contact-icons li:nth-child(#{$i}),
|
225
|
+
.landing-content .about p:nth-child(#{$i}) {
|
249
226
|
-webkit-animation: fadein .5s + $i/2; /* Safari, Chrome and Opera > 12.1 */
|
250
227
|
-moz-animation: fadein .5s + $i/2; /* Firefox < 16 */
|
251
228
|
-ms-animation: fadein .5s + $i/2; /* Internet Explorer */
|
data/_sass/minimaless.scss
CHANGED
data/assets/favicon.png
ADDED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minimaless
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- brettinternet
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-08-
|
11
|
+
date: 2017-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -63,6 +63,7 @@ files:
|
|
63
63
|
- _sass/minimaless/_base.scss
|
64
64
|
- _sass/minimaless/_layout.scss
|
65
65
|
- _sass/minimaless/_syntax-highlighting.scss
|
66
|
+
- assets/favicon.png
|
66
67
|
- assets/logo.svg
|
67
68
|
- assets/main.scss
|
68
69
|
homepage: https://github.com/brettinternet/minimaless
|