jekyll-theme-consulting 0.2.9 → 0.2.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/components/_facts.scss +31 -50
- data/_sass/components/_features.scss +4 -0
- data/assets/css/images/uca.svg +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e93bcaef56d9690d548ca7e9961a9811e921155d2d96d7842cdff87804bdcc75
|
4
|
+
data.tar.gz: 929095a168c04d279d1c7ba57a3fe7a96c4262f0394616b11d9aaaea27b35224
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e25d7bad0cc8733cabebb6f5443cc80e19c9c7342a43a20b06e2a1cc004aac36416bf548ba4f3af78d7001436648e945626f23017414abbb93d412ffffadded
|
7
|
+
data.tar.gz: d2a9ca0cefdddd106d388984d11cd217a0a5b5f98709dbccb07b38ae74b755f6e70a07900094b3b59789eb37542e09e89b9432d829daaa489862af5d9b3c12d1
|
@@ -5,21 +5,21 @@
|
|
5
5
|
|
6
6
|
@include vendor('display', 'flex');
|
7
7
|
@include vendor('flex-wrap', 'wrap');
|
8
|
-
margin: 0 0
|
9
|
-
width:
|
8
|
+
margin: 0 0 0 0;
|
9
|
+
width: 100%;
|
10
10
|
|
11
11
|
article {
|
12
|
-
@include vendor('flex-grow', '
|
12
|
+
@include vendor('flex-grow', '1');
|
13
13
|
@include vendor('flex-shrink', '1');
|
14
14
|
margin: 0 0 $gutter $gutter;
|
15
15
|
position: relative;
|
16
|
-
|
16
|
+
min-height: 512px;
|
17
17
|
|
18
18
|
&:before {
|
19
19
|
background: _palette(border);
|
20
20
|
content: '';
|
21
21
|
display: block;
|
22
|
-
height:
|
22
|
+
height: 100%;
|
23
23
|
left: ($gutter * -0.5);
|
24
24
|
position: absolute;
|
25
25
|
top: 0;
|
@@ -40,22 +40,31 @@
|
|
40
40
|
color: _palette(accent);
|
41
41
|
}
|
42
42
|
|
43
|
-
.fact-intro {
|
43
|
+
.fact-intro, .fact-outro {
|
44
44
|
position: relative;
|
45
45
|
width: 100%;
|
46
|
-
height:
|
46
|
+
height: 30%;
|
47
47
|
margin: 0;
|
48
48
|
|
49
49
|
p {
|
50
50
|
margin: 0;
|
51
51
|
display: table-cell;
|
52
|
-
vertical-align: bottom;
|
53
52
|
text-align: center;
|
54
|
-
text-transform: uppercase;
|
55
53
|
font-size: 1.5rem;
|
56
54
|
}
|
57
55
|
}
|
58
56
|
|
57
|
+
.fact-intro p {
|
58
|
+
vertical-align: bottom;
|
59
|
+
text-transform: uppercase;
|
60
|
+
}
|
61
|
+
|
62
|
+
.fact-outro p {
|
63
|
+
vertical-align: top;
|
64
|
+
text-transform: lowercase;
|
65
|
+
}
|
66
|
+
|
67
|
+
|
59
68
|
.fact {
|
60
69
|
position: relative;
|
61
70
|
width: 100%;
|
@@ -71,22 +80,6 @@
|
|
71
80
|
font-size: 3rem;
|
72
81
|
}
|
73
82
|
}
|
74
|
-
|
75
|
-
.fact-outro {
|
76
|
-
position: relative;
|
77
|
-
width: 100%;
|
78
|
-
height: 30%;
|
79
|
-
margin: 0;
|
80
|
-
|
81
|
-
p {
|
82
|
-
margin: 0;
|
83
|
-
display: table-cell;
|
84
|
-
vertical-align: top;
|
85
|
-
text-align: center;
|
86
|
-
text-transform: lowercase;
|
87
|
-
font-size: 1.5rem;
|
88
|
-
}
|
89
|
-
}
|
90
83
|
}
|
91
84
|
|
92
85
|
article {
|
@@ -125,54 +118,42 @@
|
|
125
118
|
|
126
119
|
.off.fact-intro {
|
127
120
|
display: table;
|
128
|
-
|
121
|
+
|
122
|
+
p {
|
123
|
+
color: #ffffff;
|
124
|
+
}
|
129
125
|
}
|
130
126
|
|
131
127
|
.off.fact {
|
132
128
|
display: table;
|
133
|
-
|
129
|
+
|
130
|
+
h3 {
|
131
|
+
color: #ffffff;
|
132
|
+
}
|
134
133
|
}
|
135
134
|
|
136
135
|
.off.fact-outro {
|
137
136
|
display: table;
|
138
|
-
|
137
|
+
|
138
|
+
p {
|
139
|
+
color: #ffffff;
|
140
|
+
}
|
139
141
|
}
|
140
142
|
}
|
141
143
|
|
142
144
|
@include breakpoint('<=small') {
|
143
145
|
$gutter: _size(gutter) * 1.5;
|
144
146
|
|
145
|
-
margin: 0 0 _size(element-margin) ($gutter * -1);
|
146
|
-
width: calc(100% + #{$gutter});
|
147
|
-
|
148
147
|
article {
|
149
148
|
margin: 0 0 $gutter $gutter;
|
150
|
-
width:
|
151
|
-
|
152
|
-
&:before {
|
153
|
-
height: calc(100% + #{$gutter});
|
154
|
-
left: ($gutter * -0.5);
|
155
|
-
}
|
156
|
-
|
157
|
-
&:nth-last-child(3) {
|
158
|
-
margin-bottom: $gutter;
|
159
|
-
}
|
149
|
+
width: 50%;
|
160
150
|
}
|
161
151
|
}
|
162
152
|
|
163
153
|
@include breakpoint('<=xsmall') {
|
164
154
|
$gutter: _size(gutter) * 1.5;
|
165
155
|
|
166
|
-
margin: 0 0 _size(element-margin) 0;
|
167
|
-
width: 100%;
|
168
|
-
|
169
156
|
article {
|
170
|
-
margin: 0 0 $gutter 0;
|
171
|
-
width: 100%;
|
172
|
-
|
173
|
-
&:before {
|
174
|
-
display: none;
|
175
|
-
}
|
176
157
|
|
177
158
|
&:after {
|
178
159
|
width: 100%;
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 740.833 740.833"><defs><linearGradient id="a"><stop offset="0" stop-color="#460000"/><stop offset="1" stop-color="#d2aa50" stop-opacity=".784"/></linearGradient><linearGradient id="c" x1="197.022" x2="550.544" y1="206.464" y2="46.436" gradientUnits="userSpaceOnUse" xlink:href="#a"/><mask id="b" maskUnits="userSpaceOnUse"><path fill="#fff" stroke-width=".96" d="M365.52 283.437c78.431-6.92 159.504-37.13 210.078-99.913 13.177-18.069 25.647-40.923 27.452-62.129-26.94 0-53.025-.763-79.534-1.162-21.166 85.846-106.057 152.73-195.348 146.845-84.583-1.437-158.47-68.048-180.335-147.818l-82.793.5c5.4 44.767 38.532 80.36 72.969 106.714 65.88 46.223 148.1 62.616 227.511 56.963zM514.875 79.933c-26.285 0-53.584.12-77.516.12-3.731 43.663-6.292 90.97-32.103 128.38-30.949 45.945-109.948 46.818-139.935-.674-24.066-38.044-29.705-84.62-31.801-128.712-26.943 0-54.09-.385-81.12-.567-.847 95.038 84.536 180.594 180.19 180.594 99.254-1.635 179.754-101.156 182.285-179.14zM343.92 235.483c37.394-2.114 61.92-36.175 70.34-69.713 12.293-41.077 11.776-84.194 11.74-126.65-24.074-.11-48.44-.26-72.24-.26 0 55.792-.864 143.221-2.003 171.14-1.139 27.919-32.366 27.606-32.366 0s-.911-171.84-.911-171.84H243.6c-.661 51.816-.168 106.115 22.262 153.844 13.985 29.785 45.079 48.208 78.058 43.48z"/></mask></defs><path fill="url(#c)" d="M0 0h660v300H0z" mask="url(#b)" transform="matrix(1.32292 0 0 1.32292 -66.146 171.98)"/></svg>
|
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.11
|
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-
|
11
|
+
date: 2019-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -123,6 +123,7 @@ files:
|
|
123
123
|
- assets/css/images/ifg.svg
|
124
124
|
- assets/css/images/marine.svg
|
125
125
|
- assets/css/images/ub.svg
|
126
|
+
- assets/css/images/uca.svg
|
126
127
|
- assets/css/main.scss
|
127
128
|
- assets/images/bg-1.jpg
|
128
129
|
- assets/images/bg-alt.jpg
|