minimaless 0.0.10 → 0.0.11
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/_sass/minimaless.scss +1 -1
- data/_sass/minimaless/_base.scss +4 -5
- data/_sass/minimaless/_layout.scss +26 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2fee753c031cecb9fa8cc10ad3a03619d92c64bf
|
4
|
+
data.tar.gz: cd1e519fb6b506f8682b25c4e17c05e01c3314ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0511ada5c7f36e9760c6cad89cef6b16d9868cf4a7c8b4b1ccdbdae7e151b9e31f78146f0cbd1ba6ee3fc9c150739ccafd1f359fce94384e11197bc1182523b
|
7
|
+
data.tar.gz: a8d6ae6a645e3af759f258b4de71cbdd5ba6ca7086762d0cb701f734558758b4e46b92895191f27b4086cad9d9ba6695f4edbb0770f5fb6ac411b7ab50daeda8
|
data/_sass/minimaless.scss
CHANGED
data/_sass/minimaless/_base.scss
CHANGED
@@ -17,9 +17,7 @@ dl, dd, ol, ul, figure {
|
|
17
17
|
}
|
18
18
|
|
19
19
|
hr {
|
20
|
-
border
|
21
|
-
border-color: #EFEFEF;
|
22
|
-
color: #FFF;
|
20
|
+
border: 1px solid #eaecef;
|
23
21
|
margin: $spacing-unit 0;
|
24
22
|
padding: 0;
|
25
23
|
}
|
@@ -111,6 +109,7 @@ h1, h2, h3, h4, h5, h6 {
|
|
111
109
|
* Links
|
112
110
|
*/
|
113
111
|
.landing-content a { white-space: nowrap; }
|
112
|
+
|
114
113
|
a {
|
115
114
|
color: $brand-color;
|
116
115
|
fill: $brand-color;
|
@@ -118,11 +117,11 @@ a {
|
|
118
117
|
cursor: pointer;
|
119
118
|
|
120
119
|
&:visited {
|
121
|
-
color:
|
120
|
+
color: $grey-color;
|
122
121
|
}
|
123
122
|
|
124
123
|
&:hover {
|
125
|
-
color: $
|
124
|
+
color: $grey-color-dark;
|
126
125
|
text-decoration: underline;
|
127
126
|
}
|
128
127
|
}
|
@@ -146,11 +146,8 @@
|
|
146
146
|
list-style: none;
|
147
147
|
margin: 10px 0 0 0;
|
148
148
|
text-align: center;
|
149
|
-
@include media-query($on-palm) {
|
150
|
-
text-align: left;
|
151
|
-
}
|
152
149
|
|
153
|
-
a { height: 100%; width: 100%; }
|
150
|
+
li > a { border: 0; height: 100%; width: 100%; }
|
154
151
|
|
155
152
|
li, li + li {
|
156
153
|
margin: 0 7px;
|
@@ -173,6 +170,12 @@
|
|
173
170
|
}
|
174
171
|
|
175
172
|
|
173
|
+
.landing-content .contact-icons {
|
174
|
+
@include media-query($on-palm) {
|
175
|
+
text-align: left;
|
176
|
+
}
|
177
|
+
}
|
178
|
+
|
176
179
|
|
177
180
|
.landing-content .contact-icons a, .site-footer .contact-icons a {
|
178
181
|
color: #FFF;
|
@@ -300,8 +303,14 @@
|
|
300
303
|
animation: fadein .5s;
|
301
304
|
}
|
302
305
|
|
303
|
-
.post a {
|
306
|
+
.contact a, .post a {
|
307
|
+
color: $text-color;
|
304
308
|
font-weight: bold;
|
309
|
+
border-bottom: 1px solid $grey-color;
|
310
|
+
&:hover {
|
311
|
+
color: $grey-color;
|
312
|
+
text-decoration: none;
|
313
|
+
}
|
305
314
|
}
|
306
315
|
|
307
316
|
.post-list {
|
@@ -374,6 +383,17 @@
|
|
374
383
|
.post-content {
|
375
384
|
margin-bottom: $spacing-unit;
|
376
385
|
|
386
|
+
h1 {
|
387
|
+
@include relative-font-size(2);
|
388
|
+
|
389
|
+
@include media-query($on-laptop) {
|
390
|
+
@include relative-font-size(1.75);
|
391
|
+
}
|
392
|
+
display: block;
|
393
|
+
border-bottom: 1px solid #eaecef;
|
394
|
+
padding-bottom: 0.3em;
|
395
|
+
}
|
396
|
+
|
377
397
|
h2 {
|
378
398
|
@include relative-font-size(2);
|
379
399
|
|
@@ -406,7 +426,7 @@
|
|
406
426
|
color: lighten($grey-color-dark, 10%);
|
407
427
|
}
|
408
428
|
|
409
|
-
.tags .fa-tags { color: $grey-color; }
|
429
|
+
.tags .fa-tags { color: $grey-color-dark; }
|
410
430
|
|
411
431
|
.tag {
|
412
432
|
@include relative-font-size(.8);
|
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.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- brettinternet
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-09-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|