jekyll-theme-isotc211 0.1.4 → 0.1.5
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/_layouts/default.html +5 -2
- data/_sass/main.scss +17 -5
- data/_sass/offsets.scss +5 -1
- 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: f9da35e3e25805d96419ad5a11cfcfffde857024aeede2cc2f2025ac519e9574
|
|
4
|
+
data.tar.gz: 7c925a7a2a98b069aebd24b48798d49baffaebd7080466750716d53a78f59a48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a08556d8fd19be249828da8d2b7e2a1748e4940b3cd711842875d7b95431ab7602b1e248b2af0873ec43bfb88c26ffefb79e46609ebae7eba1d4e021bbbe4e4
|
|
7
|
+
data.tar.gz: feee5861b5bdc9c7383132284bd6b2562413905fda43421124d702bc4878517c50eddbe4893c08d1f8baaa82c34ac594bac407d41570de312013d8c1093d3c0f
|
data/_layouts/default.html
CHANGED
|
@@ -11,13 +11,16 @@
|
|
|
11
11
|
</div>
|
|
12
12
|
|
|
13
13
|
<div class="site-title">
|
|
14
|
-
<h1>{{ site.title }}</h1>
|
|
14
|
+
<h1><a href="/">{{ site.title_html | default: site.title }}</a></h1>
|
|
15
15
|
<p>
|
|
16
16
|
<span class="description">
|
|
17
17
|
{{ site.tagline }}
|
|
18
18
|
</span>
|
|
19
19
|
<span class="committee">
|
|
20
|
-
from ISO/TC 211
|
|
20
|
+
from ISO/TC 211
|
|
21
|
+
</span>
|
|
22
|
+
<span class="committee-full">
|
|
23
|
+
Geographic information/Geomatics
|
|
21
24
|
</span>
|
|
22
25
|
</p>
|
|
23
26
|
</div>
|
data/_sass/main.scss
CHANGED
|
@@ -87,11 +87,9 @@ body {
|
|
|
87
87
|
flex-shrink: 0;
|
|
88
88
|
|
|
89
89
|
.site-headline {
|
|
90
|
-
display: flex;
|
|
91
|
-
flex-flow: row nowrap;
|
|
92
|
-
|
|
93
90
|
.parent-org-reference {
|
|
94
|
-
display:
|
|
91
|
+
display: none;
|
|
92
|
+
|
|
95
93
|
flex-flow: column nowrap;
|
|
96
94
|
justify-content: space-between;
|
|
97
95
|
width: $logoOffset;
|
|
@@ -125,6 +123,11 @@ body {
|
|
|
125
123
|
margin-bottom: .2em;
|
|
126
124
|
margin-left: -.12em; // Visual alignment of capital G
|
|
127
125
|
letter-spacing: -.03em;
|
|
126
|
+
|
|
127
|
+
a {
|
|
128
|
+
text-decoration: none;
|
|
129
|
+
color: $textColor;
|
|
130
|
+
}
|
|
128
131
|
}
|
|
129
132
|
|
|
130
133
|
p {
|
|
@@ -149,7 +152,7 @@ body {
|
|
|
149
152
|
|
|
150
153
|
display: flex;
|
|
151
154
|
flex-flow: column nowrap;
|
|
152
|
-
align-items: flex-
|
|
155
|
+
align-items: flex-start;
|
|
153
156
|
margin: 0 0 0 .4em;
|
|
154
157
|
padding: 0 0 1em 0;
|
|
155
158
|
list-style: none;
|
|
@@ -167,6 +170,15 @@ body {
|
|
|
167
170
|
}
|
|
168
171
|
}
|
|
169
172
|
}
|
|
173
|
+
|
|
174
|
+
@media screen and (min-width: $bigscreenBreakpoint) {
|
|
175
|
+
display: flex;
|
|
176
|
+
flex-flow: row nowrap;
|
|
177
|
+
|
|
178
|
+
.parent-org-reference {
|
|
179
|
+
display: flex;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
170
182
|
}
|
|
171
183
|
|
|
172
184
|
@media screen and (max-width: $bigscreenBreakpoint) {
|
data/_sass/offsets.scss
CHANGED
|
@@ -4,8 +4,12 @@
|
|
|
4
4
|
$sideOffsetBase: 15vw;
|
|
5
5
|
|
|
6
6
|
body > header {
|
|
7
|
+
margin: 0 $sideOffsetBase 0 $sideOffsetBase;
|
|
8
|
+
|
|
7
9
|
// Hanging logo on the left
|
|
8
|
-
|
|
10
|
+
@media screen and (min-width: $bigscreenBreakpoint) {
|
|
11
|
+
margin: 0 $sideOffsetBase 0 calc(#{$sideOffsetBase} - #{$logoOffset});
|
|
12
|
+
}
|
|
9
13
|
}
|
|
10
14
|
body > footer {
|
|
11
15
|
padding: 0 $sideOffsetBase 0 $sideOffsetBase;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-isotc211
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-02-
|
|
11
|
+
date: 2019-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|