jekyll-theme-hacker 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_layouts/default.html +3 -1
- data/_sass/jekyll-theme-hacker.scss +16 -1
- metadata +15 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d70f7811276c12a3c1ce5ae3957c103dc809806356d162e4da0b4dcb81b577db
|
4
|
+
data.tar.gz: 405b46b79843be9b24be5692a8c6468ed20edf17920a3ad008c97c7167ea2422
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d190942840af0bbcc4c5ea678a82028596afcef5bc09b6fb147a95ed00854a8fc66a3973e838104e6bcb980d703965c4b0f3ceb8911cf07a6154ca5f3f571431
|
7
|
+
data.tar.gz: f2a158d5ac57332a4ef7d674232f2343abb2c98fdc4fd35e9697de36f110b248174675068cd519e126f1fd4b27e12cddd54e76d5187f1539003d9ba87a149086
|
data/_layouts/default.html
CHANGED
@@ -13,7 +13,9 @@
|
|
13
13
|
|
14
14
|
<header>
|
15
15
|
<div class="container">
|
16
|
-
<
|
16
|
+
<a id="a-title" href="{{ '/' | relative_url }}">
|
17
|
+
<h1>{{ site.title | default: site.github.repository_name }}</h1>
|
18
|
+
</a>
|
17
19
|
<h2>{{ site.description | default: site.github.project_tagline }}</h2>
|
18
20
|
|
19
21
|
<section id="downloads">
|
@@ -6,6 +6,13 @@ $body-foreground: $gallery !default;
|
|
6
6
|
$header: $conifer !default;
|
7
7
|
$blockquote-color: $silver-chalice !default;
|
8
8
|
$blockquote-border: $dove-grey !default;
|
9
|
+
$container-max-width: 1000px;
|
10
|
+
|
11
|
+
@mixin media-max-width($max-width) {
|
12
|
+
@media (max-width: $max-width) {
|
13
|
+
@content;
|
14
|
+
}
|
15
|
+
}
|
9
16
|
|
10
17
|
body {
|
11
18
|
margin: 0;
|
@@ -21,7 +28,7 @@ body {
|
|
21
28
|
|
22
29
|
.container {
|
23
30
|
width: 90%;
|
24
|
-
max-width:
|
31
|
+
max-width: $container-max-width;
|
25
32
|
margin: 0 auto;
|
26
33
|
}
|
27
34
|
|
@@ -64,8 +71,12 @@ header h1 {
|
|
64
71
|
0 0 10px rgba(181, 232, 83, 0.1);
|
65
72
|
letter-spacing: -1px;
|
66
73
|
-webkit-font-smoothing: antialiased;
|
74
|
+
@include media-max-width($container-max-width) {
|
75
|
+
margin-left: 0;
|
76
|
+
}
|
67
77
|
}
|
68
78
|
|
79
|
+
|
69
80
|
header h1:before {
|
70
81
|
content: "./ ";
|
71
82
|
font-size: 24px;
|
@@ -251,3 +262,7 @@ a {
|
|
251
262
|
.cf {
|
252
263
|
zoom:1;
|
253
264
|
}
|
265
|
+
|
266
|
+
#a-title {
|
267
|
+
text-decoration: none;
|
268
|
+
}
|
metadata
CHANGED
@@ -1,30 +1,36 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-hacker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Costello
|
8
8
|
- GitHub, Inc.
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2020-08-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - "
|
18
|
+
- - ">"
|
19
19
|
- !ruby/object:Gem::Version
|
20
20
|
version: '3.5'
|
21
|
+
- - "<"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '5.0'
|
21
24
|
type: :runtime
|
22
25
|
prerelease: false
|
23
26
|
version_requirements: !ruby/object:Gem::Requirement
|
24
27
|
requirements:
|
25
|
-
- - "
|
28
|
+
- - ">"
|
26
29
|
- !ruby/object:Gem::Version
|
27
30
|
version: '3.5'
|
31
|
+
- - "<"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '5.0'
|
28
34
|
- !ruby/object:Gem::Dependency
|
29
35
|
name: jekyll-seo-tag
|
30
36
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +87,7 @@ dependencies:
|
|
81
87
|
- - "~>"
|
82
88
|
- !ruby/object:Gem::Version
|
83
89
|
version: '1.3'
|
84
|
-
description:
|
90
|
+
description:
|
85
91
|
email:
|
86
92
|
- opensource+jekyll-theme-hacker@github.com
|
87
93
|
executables: []
|
@@ -103,7 +109,7 @@ homepage: https://github.com/pages-themes/hacker
|
|
103
109
|
licenses:
|
104
110
|
- CC0-1.0
|
105
111
|
metadata: {}
|
106
|
-
post_install_message:
|
112
|
+
post_install_message:
|
107
113
|
rdoc_options: []
|
108
114
|
require_paths:
|
109
115
|
- lib
|
@@ -118,9 +124,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
118
124
|
- !ruby/object:Gem::Version
|
119
125
|
version: '0'
|
120
126
|
requirements: []
|
121
|
-
|
122
|
-
|
123
|
-
signing_key:
|
127
|
+
rubygems_version: 3.0.3
|
128
|
+
signing_key:
|
124
129
|
specification_version: 4
|
125
130
|
summary: Hacker is a Jekyll theme for GitHub Pages
|
126
131
|
test_files: []
|