sebasic 0.1.0 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9f0c580da36ff7f3423a2b20e64d82a941a555931b94ac443a646f77ade9ae5c
4
- data.tar.gz: 66b23f752581507171313b51fed921b170b998e1b8b108ec4cc0aafe9b51aafa
3
+ metadata.gz: ab56b41119bae39c04dd61afb80f14b0fbe4fb0995b3a3ded0e52c282267699e
4
+ data.tar.gz: 6e6038a6367f772e75f1f9e5743ee811ffa88ca61e909c71d74bf623f7fe6c25
5
5
  SHA512:
6
- metadata.gz: bbbc4f144026c5c0c91bd132c5a631569b881bc66379577b5cb042accb2d9d88a4424f3d1ea61d8e69edb624453cf3ba2fcc7e28231e862059df54d534e9ce6e
7
- data.tar.gz: c0e7f385cd9afcb4c5244c20de5eba2fec025ae947d3d7fb2a7b49476d4bb55909c3d756414645dcdcaffd3a8ccb180bde797059186d5cb1b5387098bf9d5951
6
+ metadata.gz: c0733fb7e000cc399809a56dba4f91899065724ef15427f2c57e3008816f1e1fb3e448b68d7f804ecd2794556b64b73dee735efe5fa68f1730b5816cd49e6b86
7
+ data.tar.gz: 03404d9f00b1f2ccbf4738c126ec15ec94ede9e4e2edc52358ad20dda682fba6a462269a4abf79cd293dd55cf826385cf3cdc7ab9d2dcf76e208d3ab4c6522b7
data/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/sebasic.svg)](https://badge.fury.io/rb/sebasic)
4
4
 
5
- Sebasic is an easy on the eyes IKEA style blog [Jekyll](https://jekyllrb.com/) for programmers. [[view demo]](https://lewis8s.codes)
5
+ Sebasic is an easy on the eyes IKEA style [Jekyll](https://jekyllrb.com/) blog for programmers. [[view demo]](https://lewis8s.codes)
6
6
 
7
- Inspired by [sgolem](https://sgolem.com/) theme, and [rauchg.com](https://rauchg.com/)
7
+ Inspired by [sgolem](https://sgolem.com/), and [rauchg.com](https://rauchg.com/)
8
8
 
9
9
  ![](./github/banner_2.png)
10
10
 
@@ -0,0 +1,17 @@
1
+ <script
2
+ async
3
+ src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"
4
+ ></script>
5
+ <script>
6
+ window["ga-disable-{{ site.google_analytics }}"] =
7
+ window.doNotTrack === "1" ||
8
+ navigator.doNotTrack === "1" ||
9
+ navigator.doNotTrack === "yes" ||
10
+ navigator.msDoNotTrack === "1";
11
+ window.dataLayer = window.dataLayer || [];
12
+ function gtag() {
13
+ dataLayer.push(arguments);
14
+ }
15
+ gtag("js", new Date());
16
+ gtag("config", "{{ site.google_analytics }}");
17
+ </script>
@@ -6,7 +6,7 @@ layout: default
6
6
  </head>
7
7
 
8
8
  {%- if site.posts.size > 0 -%}
9
- <ul>
9
+ <ul class="home_list">
10
10
  {% for post in site.posts %}
11
11
  {% capture post_data %}{{ page.date | date: "%B %d, %Y" }}{% endcapture %}
12
12
 
@@ -6,25 +6,33 @@
6
6
  overflow-x: scroll;
7
7
  font-size: 1rem;
8
8
  }
9
-
10
- blockquote {
11
- content = "";
12
- position: absolute;
13
- left: 0;
14
- right: 0;
15
- bottom: 0;
16
- width: 0.5rem;
17
- background: #d3d3d3;
9
+ .content blockquote::before {
10
+ content:"";
11
+ position:absolute;
12
+ left:0;
13
+ top:0;
14
+ bottom:0;
15
+ width:.5rem;
16
+ background:#d3d3d3;
17
+ }
18
+
19
+ .content blockquote {
20
+ position:relative;
21
+ padding-left:2rem;
22
+ color:grey;
23
+ font-style:italic
18
24
  }
25
+ /* index list of articles */
19
26
 
20
- blockquote p {
21
- color: grey;
22
- font-style: italic;
27
+ .content ul {
28
+ padding-left: 0.9rem;
23
29
  }
24
30
 
25
- /* index list of articles */
31
+ .content li {
32
+ line-height: 1.5;
33
+ }
26
34
 
27
- ul, ol {
35
+ ul.home_list {
28
36
  list-style: none;
29
37
  }
30
38
  ul li {
@@ -92,11 +100,9 @@ main {
92
100
 
93
101
 
94
102
  .app_layout {
95
- --content-width: 50ch;
96
- --layout-padding: 2rem;
97
- margin: 0 auto;
98
- padding: 0 var(--layout-pading);
99
- max-width: calc(var(--content-width) + var(--layout-padding));
103
+ max-width: 42rem;
104
+ margin: auto;
105
+ padding: 10px 0;
100
106
  }
101
107
 
102
108
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sebasic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lewis R
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-07 00:00:00.000000000 Z
11
+ date: 2020-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -91,6 +91,7 @@ files:
91
91
  - README.md
92
92
  - _config.yml
93
93
  - _includes/footer.html
94
+ - _includes/google-analytics.html
94
95
  - _includes/head.html
95
96
  - _includes/header.html
96
97
  - _layouts/default.html