moving 0.3.3 → 0.3.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e970585bd61809000597655653192480ed7404f80036c3e6d8c4dd6ed693b6e
4
- data.tar.gz: fd41828d1d2bc611daeb8eabe7b58672d5df3f122a6d0497bdc6e98e7a15dd32
3
+ metadata.gz: a51aa635b2a22b405cb517c946f7622b085653aff5a43cc6bf9a76f7dd589bb2
4
+ data.tar.gz: 603495cfc4222edf96afb6e34a48e86767bd01323185c8c8c49061a85f627489
5
5
  SHA512:
6
- metadata.gz: 93670ac09ce97cbfbc3038a7864a84fe75713db83f4d85788c423df550093984d70a0d6571fbf194d6c9b99f97318ef5094286e596a6b7da3ad7724be8bb77fc
7
- data.tar.gz: b44ed2fba84cad6133603c9ff49d604f29eeda3ab83b472d61d52549336e667d3cfb6493404b279aac53894f7b543bdf5872254b4549b0292cf71cb6f4dda874
6
+ metadata.gz: f87515d518cd4135cab84c21ba07a4f79a32fa42875dc745295762f202228ffb5c8e66115e33f7c9225d227e20925310fa938953aab00f44fba239fb1dbf6cad
7
+ data.tar.gz: 9c3b51c219fd0905f4a501dcb4f9b2e2978e1e4d8a37d27b6e8a31879d218064e93bc1a6aea7fc5bbc92b4b2f7f640f2bcdfce072e0db0320fed9db36389dd0e
data/README.md CHANGED
@@ -36,7 +36,7 @@ jekyll serve
36
36
 
37
37
  Once you successfully run the moving blog, you can modify the theme and add posts by yourself, have fun!
38
38
 
39
- ### Add Moving to Existing Blog
39
+ ### Add Moving to an Existing Blog
40
40
 
41
41
  Add this line to your Jekyll site's `Gemfile`:
42
42
 
@@ -123,6 +123,15 @@
123
123
  >[Microdotblog]</a
124
124
  >
125
125
  </li>
126
+ {%- endif -%} {%- if social.reddit -%}
127
+ <li>
128
+ <a
129
+ class="black-link"
130
+ href="https://reddit.com/user/{{ social.reddit | cgi_escape | escape }}"
131
+ >
132
+ [Reddit]
133
+ </a>
134
+ </li>
126
135
  {%- endif -%} {%- if social.rss -%}
127
136
  <li>
128
137
  <a class="black-link" href="{{ 'feed.xml' | relative_url }}">[RSS]</a>
@@ -170,6 +170,10 @@ blockquote {
170
170
  @include relative-font-size(1);
171
171
  letter-spacing: -1px;
172
172
 
173
+ @media (max-width: 600px) {
174
+ @include relative-font-size(0.8);
175
+ }
176
+
173
177
  > :last-child {
174
178
  margin-bottom: 0;
175
179
  }
Binary file
@@ -0,0 +1,108 @@
1
+ /*!
2
+ * Agate by Taufik Nurrohman <https://github.com/tovic>
3
+ * ----------------------------------------------------
4
+ *
5
+ * #ade5fc
6
+ * #a2fca2
7
+ * #c6b4f0
8
+ * #d36363
9
+ * #fcc28c
10
+ * #fc9b9b
11
+ * #ffa
12
+ * #fff
13
+ * #333
14
+ * #62c8f3
15
+ * #888
16
+ *
17
+ */
18
+
19
+ .hljs {
20
+ display: block;
21
+ overflow-x: auto;
22
+ padding: 0.5em;
23
+ background: #333;
24
+ color: white;
25
+ }
26
+
27
+ .hljs-name,
28
+ .hljs-strong {
29
+ font-weight: bold;
30
+ }
31
+
32
+ .hljs-code,
33
+ .hljs-emphasis {
34
+ font-style: italic;
35
+ }
36
+
37
+ .hljs-tag {
38
+ color: #62c8f3;
39
+ }
40
+
41
+ .hljs-variable,
42
+ .hljs-template-variable,
43
+ .hljs-selector-id,
44
+ .hljs-selector-class {
45
+ color: #ade5fc;
46
+ }
47
+
48
+ .hljs-string,
49
+ .hljs-bullet {
50
+ color: #a2fca2;
51
+ }
52
+
53
+ .hljs-type,
54
+ .hljs-title,
55
+ .hljs-section,
56
+ .hljs-attribute,
57
+ .hljs-quote,
58
+ .hljs-built_in,
59
+ .hljs-builtin-name {
60
+ color: #ffa;
61
+ }
62
+
63
+ .hljs-number,
64
+ .hljs-symbol,
65
+ .hljs-bullet {
66
+ color: #d36363;
67
+ }
68
+
69
+ .hljs-keyword,
70
+ .hljs-selector-tag,
71
+ .hljs-literal {
72
+ color: #fcc28c;
73
+ }
74
+
75
+ .hljs-comment,
76
+ .hljs-deletion,
77
+ .hljs-code {
78
+ color: #888;
79
+ }
80
+
81
+ .hljs-regexp,
82
+ .hljs-link {
83
+ color: #c6b4f0;
84
+ }
85
+
86
+ .hljs-meta {
87
+ color: #fc9b9b;
88
+ }
89
+
90
+ .hljs-deletion {
91
+ background-color: #fc9b9b;
92
+ color: #333;
93
+ }
94
+
95
+ .hljs-addition {
96
+ background-color: #a2fca2;
97
+ color: #333;
98
+ }
99
+
100
+ .hljs a {
101
+ color: inherit;
102
+ }
103
+
104
+ .hljs a:focus,
105
+ .hljs a:hover {
106
+ color: inherit;
107
+ text-decoration: underline;
108
+ }
@@ -0,0 +1,6 @@
1
+ ---
2
+ sitemap: false
3
+ ---
4
+
5
+ @import "moving";
6
+ @import url('https://fonts.googleapis.com/css?family=Bitter&display=swap');
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moving
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - huangyz0918
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-07 00:00:00.000000000 Z
11
+ date: 2019-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -100,6 +100,9 @@ files:
100
100
  - _sass/moving.scss
101
101
  - _sass/moving/_base.scss
102
102
  - _sass/moving/_layout.scss
103
+ - assets/.DS_Store
104
+ - assets/css/agate.css
105
+ - assets/css/main.scss
103
106
  homepage: https://github.com/huangyz0918/moving
104
107
  licenses:
105
108
  - MIT