jekyll-theme-simple-texture 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/README.md +4 -2
- data/_includes/common/addthis.html +1 -0
- data/_sass/simple-texture/blog/_content.scss +6 -0
- data/_sass/simple-texture/blog/_responsive.scss +3 -3
- data/_sass/simple-texture/common/_social-icons.scss +18 -15
- data/assets/images/screenshots/home.png +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7de220c314c9519b7c3e9d8880a6e6f144456f42
|
4
|
+
data.tar.gz: d4820cc1dc0712a97748fa4465dc7af23992485c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2bd9a39c51e299ed4bb56132393b34200bf1fb1a69a5aaacba1523362ee75f69bc45812aa64049de779652e68ed1559f71888f56bf27216aff7d853122fe96ab
|
7
|
+
data.tar.gz: d507451b3e957e5e9b739ec51ec0690510df7ed01c14f6a3f266172c492e404c03bf4fc0f00cfb040982e39abe5fddf8eb823555bdd2b618ae33e85a797f10a4
|
data/README.md
CHANGED
@@ -42,9 +42,11 @@ Then for newly created or existing Jekyll app,
|
|
42
42
|
|
43
43
|
2. Remove Jekyll auto-generated default pages `about.md` and `index.md`.
|
44
44
|
|
45
|
-
3. Download the
|
45
|
+
3. Download the respository [here](https://github.com/yizeng/jekyll-theme-simple-texture/archive/master.zip)
|
46
|
+
and locate `starter-kit` folder,
|
47
|
+
or download `starter-kit` folder directly [here](https://minhaskamal.github.io/DownGit/#/home?url=https://github.com/yizeng/jekyll-theme-simple-texture/tree/master/starter-kit).
|
46
48
|
|
47
|
-
4. Put everything in the starter
|
49
|
+
4. Put everything in the `starter-kit` in the root directory,
|
48
50
|
i.e. `jekyllapp` in this example.
|
49
51
|
|
50
52
|
5. Run `bundle install` to install dependencies.
|
@@ -1,4 +1,5 @@
|
|
1
1
|
<div class="addthis_toolbox addthis_default_style addthis_32x32_style">
|
2
|
+
<small class="label">{{ site.data.i18n[site.lang].share_post }}</small>
|
2
3
|
<a class="btn-share-post addthis_button_email"></a>
|
3
4
|
<a class="btn-share-post addthis_button_facebook"></a>
|
4
5
|
<a class="btn-share-post addthis_button_google_plusone_share"></a>
|
@@ -2,27 +2,30 @@ $base-url: '../images/simple-icons/' !default;
|
|
2
2
|
$size: 48;
|
3
3
|
|
4
4
|
@mixin get-ico-image($name) {
|
5
|
-
text-indent: -9999em;
|
6
|
-
|
7
|
-
opacity: .3;
|
8
5
|
background-image: url('#{$base-url}#{$name}-#{$size}.png');
|
9
|
-
|
10
|
-
|
6
|
+
}
|
7
|
+
|
8
|
+
.social-links {
|
9
|
+
a {
|
10
|
+
text-indent: -9999em;
|
11
11
|
|
12
|
-
|
13
|
-
|
14
|
-
-
|
15
|
-
-moz-transition: all .3s ease-out;
|
16
|
-
-o-transition: all .3s ease-out;
|
17
|
-
transition: all .3s ease-out;
|
12
|
+
opacity: .3;
|
13
|
+
background-repeat: no-repeat;
|
14
|
+
background-position: center center;
|
18
15
|
|
19
|
-
|
16
|
+
filter: alpha(opacity=30);
|
17
|
+
&:hover {
|
18
|
+
-webkit-transition: all .3s ease-out;
|
19
|
+
-moz-transition: all .3s ease-out;
|
20
|
+
-o-transition: all .3s ease-out;
|
21
|
+
transition: all .3s ease-out;
|
20
22
|
|
21
|
-
|
23
|
+
opacity: 1.0;
|
24
|
+
|
25
|
+
filter: alpha(opacity=100);
|
26
|
+
}
|
22
27
|
}
|
23
|
-
}
|
24
28
|
|
25
|
-
.social-links {
|
26
29
|
.ico-facebook {
|
27
30
|
@include get-ico-image(facebook);
|
28
31
|
|
Binary file
|