jekyll-theme-open-project 2.0.6 → 2.0.7
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 +7 -4
- data/_layouts/default.html +12 -2
- data/_sass/jekyll-theme-open-project.scss +8 -6
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 30931ac0b9d29f2e9d2e4514da381e8154e21550
|
|
4
|
+
data.tar.gz: 1d10209a06af636cbb9ff70a85f4500065b5543c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba1e9b5e397e976916f405a72f26856a5c5d8d0db22fc57db33344bc7c038c7104ff0e52ef0e6f0aa796ba0c02d93d98f64cf7a3ead4137a450f6159a657715e
|
|
7
|
+
data.tar.gz: 20a463a0caca5f50076da33b12e1ad7009aaa0dbcaed89d5445f48548289edc3b25ed6ca805166b272e451bc7d2f67322d75961c925a339c938c9387fa9d22df
|
data/README.md
CHANGED
|
@@ -150,7 +150,10 @@ and name as word(s).
|
|
|
150
150
|
Should look OK in dimensions of 30x30px, and fit inside a square.
|
|
151
151
|
Should be in SVG format (see also the SVG guidelines section).
|
|
152
152
|
|
|
153
|
-
Drop your site-wide symbol in <site root>/assets/symbol.svg.
|
|
153
|
+
- Drop your site-wide symbol in <site root>/assets/symbol.svg.
|
|
154
|
+
|
|
155
|
+
- Drop PNG renders of the symbol as favicon.png and favicon-192x192.png
|
|
156
|
+
under <site root>/assets/; use transparent background.
|
|
154
157
|
|
|
155
158
|
- **Site name** displayed to the right of the symbol.
|
|
156
159
|
Limit the name to 1-3 words.
|
|
@@ -162,9 +165,9 @@ and name as word(s).
|
|
|
162
165
|
Note that it must look good when placed inside ~30px tall container.
|
|
163
166
|
In case of SVG, SVG guidelines apply.
|
|
164
167
|
|
|
165
|
-
|
|
166
|
-
this may cause issues when
|
|
167
|
-
of
|
|
168
|
+
If you want to style SVG with CSS specifying rules for .site-logo descendants:
|
|
169
|
+
take care, as this may cause issues when hub site’s logo is used in context
|
|
170
|
+
of a project site. (You can use inline styling within the SVG.)
|
|
168
171
|
|
|
169
172
|
### Blog
|
|
170
173
|
|
data/_layouts/default.html
CHANGED
|
@@ -5,8 +5,18 @@
|
|
|
5
5
|
<meta charset="utf-8">
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
7
|
|
|
8
|
-
<link href="{{ "/assets/favicon.png" | relative_url }}"
|
|
9
|
-
|
|
8
|
+
<link href="{{ "/assets/favicon-192x192.png" | relative_url }}"
|
|
9
|
+
rel="shortcut icon"
|
|
10
|
+
sizes="192x192"
|
|
11
|
+
type="image/x-icon">
|
|
12
|
+
|
|
13
|
+
<link href="{{ "/assets/favicon.png" | relative_url }}"
|
|
14
|
+
rel="shortcut icon"
|
|
15
|
+
sizes="32x32"
|
|
16
|
+
type="image/x-icon">
|
|
17
|
+
|
|
18
|
+
<link href="{{ "/assets/favicon-192x192.png" | relative_url }}"
|
|
19
|
+
rel="apple-touch-icon">
|
|
10
20
|
|
|
11
21
|
<link id="themeCSS" rel="stylesheet" href="{{ "assets/css/style.css" | relative_url }}">
|
|
12
22
|
|
|
@@ -351,6 +351,12 @@ main {
|
|
|
351
351
|
padding: 40px 32px;
|
|
352
352
|
text-align: center;
|
|
353
353
|
|
|
354
|
+
box-sizing: border-box;
|
|
355
|
+
|
|
356
|
+
@media screen and (min-width: $bigscreen-breakpoint) {
|
|
357
|
+
flex-basis: calc( 100%/#{$featured-cols} - #{$gutter} );
|
|
358
|
+
}
|
|
359
|
+
|
|
354
360
|
.logo {
|
|
355
361
|
display: inline-block;
|
|
356
362
|
height: 80px;
|
|
@@ -367,7 +373,7 @@ main {
|
|
|
367
373
|
|
|
368
374
|
.body {
|
|
369
375
|
font-size: 16px;
|
|
370
|
-
|
|
376
|
+
margin-bottom: 1em;
|
|
371
377
|
overflow: hidden;
|
|
372
378
|
text-overflow: ellipsis;
|
|
373
379
|
|
|
@@ -390,13 +396,9 @@ main {
|
|
|
390
396
|
background-color: $accent-color;
|
|
391
397
|
}
|
|
392
398
|
}
|
|
393
|
-
|
|
394
|
-
@media screen and (min-width: $bigscreen-breakpoint) {
|
|
395
|
-
box-sizing: border-box;
|
|
396
|
-
flex-basis: calc( 100%/#{$featured-cols} - #{$gutter} );
|
|
397
|
-
}
|
|
398
399
|
}
|
|
399
400
|
}
|
|
401
|
+
|
|
400
402
|
> .other-projects {
|
|
401
403
|
@extend .main-section;
|
|
402
404
|
@extend .with-symbol-background;
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-open-project
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
@@ -72,14 +72,14 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - '='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 2.0.
|
|
75
|
+
version: 2.0.7
|
|
76
76
|
type: :runtime
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - '='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 2.0.
|
|
82
|
+
version: 2.0.7
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: bundler
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|