jekyll-theme-consulting 0.2.11 → 0.2.12
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/components/_facts.scss +7 -2
- data/_sass/components/_features.scss +4 -34
- data/_sass/layout/_main.scss +21 -18
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2eb1ac9a852eb719fa61ab85f5b92529003c8c002a8b7b79ebd2bc7c39779c3a
|
4
|
+
data.tar.gz: b6f542399309b61c0ca27187e0cf3be26909a5952c9aa5d005a97d8c34522eeb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3389e967a380fd6a9964c5d45de0ed0ceb411a510ea15b5c03f23419542c2cad01b80a5a7f7c1c377bd6efbb7c38bd82d574eccbe94f0089040ff427cc55390
|
7
|
+
data.tar.gz: 8bbd1aea54fa491abf2bdc1e9b22b61205bb7d4cabfd592b524c1bd6fc11aff016a9630ef85b850540fb6fa0f519d3f566b499a95b438b07ba581b6e96ee7777
|
@@ -145,7 +145,8 @@
|
|
145
145
|
$gutter: _size(gutter) * 1.5;
|
146
146
|
|
147
147
|
article {
|
148
|
-
margin: 0
|
148
|
+
margin: 0;
|
149
|
+
padding: 0;
|
149
150
|
width: 50%;
|
150
151
|
}
|
151
152
|
}
|
@@ -155,6 +156,10 @@
|
|
155
156
|
|
156
157
|
article {
|
157
158
|
|
159
|
+
&:before {
|
160
|
+
display: none;
|
161
|
+
}
|
162
|
+
|
158
163
|
&:after {
|
159
164
|
width: 100%;
|
160
165
|
background: _palette(border);
|
@@ -175,4 +180,4 @@
|
|
175
180
|
}
|
176
181
|
}
|
177
182
|
}
|
178
|
-
}
|
183
|
+
}
|
@@ -11,28 +11,15 @@
|
|
11
11
|
|
12
12
|
@include vendor('display', 'flex');
|
13
13
|
@include vendor('flex-wrap', 'wrap');
|
14
|
-
margin: 0 0
|
15
|
-
width:
|
14
|
+
margin: 0 0 0 0;
|
15
|
+
width: 100%;
|
16
16
|
|
17
17
|
article {
|
18
18
|
@include vendor('align-items', 'center');
|
19
19
|
@include vendor('display', 'flex');
|
20
|
-
margin: 0 0 $gutter
|
20
|
+
margin: 0 0 $gutter 0;
|
21
21
|
position: relative;
|
22
|
-
width:
|
23
|
-
|
24
|
-
&:nth-child(2n - 1) {
|
25
|
-
margin-right: ($gutter * 0.5);
|
26
|
-
}
|
27
|
-
|
28
|
-
&:nth-child(2n) {
|
29
|
-
margin-left: ($gutter * 0.5);
|
30
|
-
}
|
31
|
-
|
32
|
-
&:nth-last-child(1),
|
33
|
-
&:nth-last-child(2) {
|
34
|
-
margin-bottom: 0;
|
35
|
-
}
|
22
|
+
width: 50%;
|
36
23
|
|
37
24
|
.ensem {
|
38
25
|
background-image: url('images/ensem.svg');
|
@@ -124,23 +111,6 @@
|
|
124
111
|
margin: 0 0 $gutter 0;
|
125
112
|
width: 100%;
|
126
113
|
|
127
|
-
&:nth-child(2n - 1) {
|
128
|
-
margin-right: 0;
|
129
|
-
}
|
130
|
-
|
131
|
-
&:nth-child(2n) {
|
132
|
-
margin-left: 0;
|
133
|
-
}
|
134
|
-
|
135
|
-
&:nth-last-child(1),
|
136
|
-
&:nth-last-child(2) {
|
137
|
-
margin-bottom: $gutter;
|
138
|
-
}
|
139
|
-
|
140
|
-
&:last-child {
|
141
|
-
margin-bottom: 0;
|
142
|
-
}
|
143
|
-
|
144
114
|
.icon {
|
145
115
|
height: 8em;
|
146
116
|
line-height: 8em;
|
data/_sass/layout/_main.scss
CHANGED
@@ -12,47 +12,50 @@
|
|
12
12
|
width: 100%;
|
13
13
|
|
14
14
|
> .inner {
|
15
|
-
@include padding(0, 6em);
|
16
15
|
margin: 0 auto;
|
17
16
|
max-width: 110em;
|
18
17
|
|
19
18
|
> section {
|
20
|
-
@include padding(6em,
|
19
|
+
@include padding(6em, 6em);
|
21
20
|
border-top: solid 2px _palette(border);
|
22
21
|
|
23
22
|
&:first-of-type {
|
24
23
|
border-top: 0 !important;
|
25
24
|
}
|
26
25
|
}
|
26
|
+
|
27
|
+
#header {
|
28
|
+
margin: 0 6em 0 6em;
|
29
|
+
}
|
27
30
|
}
|
28
31
|
|
29
32
|
@include breakpoint('<=xlarge') {
|
30
|
-
> .inner {
|
31
|
-
@include padding(
|
33
|
+
> .inner > section {
|
34
|
+
@include padding(5em, 5em);
|
35
|
+
}
|
32
36
|
|
33
|
-
|
34
|
-
|
35
|
-
}
|
37
|
+
#header {
|
38
|
+
margin: 0 5em 0 5em;
|
36
39
|
}
|
37
40
|
}
|
38
41
|
|
39
42
|
@include breakpoint('<=large') {
|
40
|
-
> .inner {
|
41
|
-
@include padding(
|
43
|
+
> .inner > section {
|
44
|
+
@include padding(4em, 4em);
|
45
|
+
}
|
42
46
|
|
43
|
-
|
44
|
-
|
45
|
-
}
|
47
|
+
#header {
|
48
|
+
margin: 0 4em 0 4em;
|
46
49
|
}
|
47
50
|
}
|
48
51
|
|
49
52
|
@include breakpoint('<=small') {
|
50
|
-
> .inner {
|
51
|
-
@include padding(
|
53
|
+
> .inner > section {
|
54
|
+
@include padding(3em, 3em);
|
55
|
+
}
|
52
56
|
|
53
|
-
|
54
|
-
|
55
|
-
}
|
57
|
+
#header {
|
58
|
+
margin: 0 3em 0 3em;
|
56
59
|
}
|
57
60
|
}
|
58
|
-
}
|
61
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-consulting
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Mougeolle
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-08-
|
11
|
+
date: 2019-08-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|