logchimp 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/_includes/author.html +18 -0
- data/_includes/card.html +14 -0
- data/_includes/category.html +11 -0
- data/_includes/footer.html +7 -0
- data/_includes/header.html +20 -0
- data/_includes/meta.html +3 -0
- data/_layouts/default.html +11 -0
- data/_layouts/empty.html +4 -0
- data/_layouts/page.html +11 -0
- data/_sass/1-helpers/_functions.sass +0 -0
- data/_sass/1-helpers/_helpers.sass +3 -0
- data/_sass/1-helpers/_mixins.sass +0 -0
- data/_sass/1-helpers/_variables.sass +7 -0
- data/_sass/2-base/_base.sass +5 -0
- data/_sass/2-base/_code.sass +25 -0
- data/_sass/2-base/_global.sass +29 -0
- data/_sass/2-base/_normalize.scss +190 -0
- data/_sass/2-base/_syntax.scss +59 -0
- data/_sass/2-base/_typography.sass +2 -0
- data/_sass/3-layout/_footer.sass +10 -0
- data/_sass/3-layout/_header.sass +29 -0
- data/_sass/3-layout/_layout.sass +2 -0
- data/_sass/4-modules/_author.sass +26 -0
- data/_sass/4-modules/_card.sass +26 -0
- data/_sass/4-modules/_category.sass +17 -0
- data/_sass/4-modules/_modules.sass +4 -0
- data/_sass/4-modules/_time.sass +23 -0
- data/_sass/5-pages/_index.sass +2 -0
- data/_sass/5-pages/_pages.sass +1 -0
- data/assets/css/style.sass +8 -0
- data/assets/img/happy.png +0 -0
- data/assets/img/logchimp.svg +1 -0
- metadata +147 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 4bc9bb5db64bd5964c02e2edac3cdf3e152b095440d67511ba665a88ad2694e7
|
4
|
+
data.tar.gz: 91a1bced0b3785f80f9ea15e7e40d47598fc9b810ea9f520c8714285c8b5b0e8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9d973b424d8185ee8de0c44cfdf21d0433b8df1a01fdad5e3bd909fd6d1642d7cc7d1430c3f9786a4ae36198d044289614e577528aa9371f40cb6bcc87037b22
|
7
|
+
data.tar.gz: 220a65cc351b7eae1283336368f782e923dc29d0c06953eafa5380bca74c2144fc9b0d48af9c1482c0856f67838e86257a5caf82ba51dc2697ef93f4c58f1ffc
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Yashu Mittal
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
@@ -0,0 +1,18 @@
|
|
1
|
+
{% if site.teams %}
|
2
|
+
<div class="author">
|
3
|
+
{% if post.author %}
|
4
|
+
{% for author in site.data.teams %}
|
5
|
+
{% if post.author == author.name %}
|
6
|
+
{% if author.image %}
|
7
|
+
<img src="{{ author.image }}" alt="{{ author.name }}">
|
8
|
+
{% else %}
|
9
|
+
<span class="authorImagePlaceholder">
|
10
|
+
{{ author.name | slice: 0 }}
|
11
|
+
</span>
|
12
|
+
{% endif %}
|
13
|
+
<p class="authorName">{{ author.name }}, {{ author.job }}</p>
|
14
|
+
{% endif %}
|
15
|
+
{% endfor %}
|
16
|
+
{% endif %}
|
17
|
+
</div>
|
18
|
+
{% endif %}
|
data/_includes/card.html
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
<li>
|
2
|
+
<h2>{{ post.title }}</h2>
|
3
|
+
<div class="time minWidth900">{{ post.date | timeago }}</div>
|
4
|
+
<div class="category">
|
5
|
+
|
6
|
+
{% include category.html %}
|
7
|
+
|
8
|
+
<div class="time maxWidth900">{{ post.date | timeago }}</div>
|
9
|
+
|
10
|
+
{% include author.html %}
|
11
|
+
|
12
|
+
</div>
|
13
|
+
<div class="content">{{ post.content }}</div>
|
14
|
+
</li>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
{% if post.category %}
|
2
|
+
{% for categoryMeta in site.data.category %}
|
3
|
+
{% if post.category == categoryMeta.name %}
|
4
|
+
<div class="category-meta" style="background-color: #{{ categoryMeta.color }};border: 1px solid #{{ categoryMeta.color }};">
|
5
|
+
{{ post.category }}
|
6
|
+
</div>
|
7
|
+
{% else %}
|
8
|
+
|
9
|
+
{% endif %}
|
10
|
+
{% endfor %}
|
11
|
+
{% endif %}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<footer>
|
2
|
+
<p>{{ site.title }} is powered by <a href="/">LogChimp</a></p>
|
3
|
+
<p><a href="https://gitlab.com/codecarrot/logchimp/logchimp/issues/new">report an issue</a> / <a href="https://www.twitter.com/@logchimp">@logchimp</a></p>
|
4
|
+
</footer>
|
5
|
+
|
6
|
+
<!-- <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> -->
|
7
|
+
<!-- <script src="{{ '../assets/js/infinite-scroll.js' | relative_url }}"></script> -->
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<header>
|
2
|
+
<div class="container">
|
3
|
+
<div class="header-content">
|
4
|
+
{% if site.logo %}
|
5
|
+
<a href="{{ '/' | relative_url }}">
|
6
|
+
<img src="{{ site.logo | relative_url }}" alt="{{ site.title }}">
|
7
|
+
</a>
|
8
|
+
{% endif %}
|
9
|
+
<div class="header-site-content">
|
10
|
+
<p>
|
11
|
+
<span class="site-title">
|
12
|
+
{{ site.title }}
|
13
|
+
</span>
|
14
|
+
{{ site.terminology }}
|
15
|
+
</p>
|
16
|
+
<a href="{{ site.url }}">{{ site.url }}</a>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
</header>
|
data/_includes/meta.html
ADDED
data/_layouts/empty.html
ADDED
data/_layouts/page.html
ADDED
File without changes
|
File without changes
|
@@ -0,0 +1,25 @@
|
|
1
|
+
code, pre
|
2
|
+
font-family: $code_fontfamily
|
3
|
+
font-size: 13px
|
4
|
+
color: rgba(71,82,93,.8)
|
5
|
+
border-radius: 2px
|
6
|
+
background: rgba(0,0,0,.03)
|
7
|
+
|
8
|
+
code
|
9
|
+
padding: 2px 4px
|
10
|
+
|
11
|
+
pre
|
12
|
+
padding: 8px 12px
|
13
|
+
margin: 12px 0
|
14
|
+
|
15
|
+
code
|
16
|
+
background: none
|
17
|
+
|
18
|
+
.rouge-table
|
19
|
+
tbody
|
20
|
+
tr
|
21
|
+
.code
|
22
|
+
width: 100%
|
23
|
+
pre
|
24
|
+
margin: 0
|
25
|
+
background: none
|
@@ -0,0 +1,29 @@
|
|
1
|
+
*
|
2
|
+
margin: 0
|
3
|
+
padding: 0
|
4
|
+
box-sizing: border-box
|
5
|
+
|
6
|
+
body
|
7
|
+
font-size: 16px
|
8
|
+
font-weight: 400
|
9
|
+
color: #47525d
|
10
|
+
font-family: $fontfamily
|
11
|
+
|
12
|
+
ul, li
|
13
|
+
list-style: none
|
14
|
+
|
15
|
+
a
|
16
|
+
color: #3778ff
|
17
|
+
text-decoration: none
|
18
|
+
|
19
|
+
&:hover
|
20
|
+
text-decoration: underline
|
21
|
+
|
22
|
+
.container
|
23
|
+
max-width: 560px
|
24
|
+
margin: 0 auto
|
25
|
+
|
26
|
+
@media (min-width: 560px)
|
27
|
+
.container
|
28
|
+
padding-left: 20px
|
29
|
+
padding-right: 20px
|
@@ -0,0 +1,190 @@
|
|
1
|
+
/*! normalize.css v1.0.0 | MIT License | github.com/codecarrotnet/normalize.css */
|
2
|
+
html {
|
3
|
+
line-height: 1.15;
|
4
|
+
-ms-text-size-adjust: 100%;
|
5
|
+
-webkit-text-size-adjust: 100%;
|
6
|
+
}
|
7
|
+
body {
|
8
|
+
margin: 0;
|
9
|
+
}
|
10
|
+
article,
|
11
|
+
aside,
|
12
|
+
footer,
|
13
|
+
header,
|
14
|
+
nav,
|
15
|
+
section {
|
16
|
+
display: block;
|
17
|
+
}
|
18
|
+
h1 {
|
19
|
+
font-size: 2em;
|
20
|
+
margin: 0.67em 0;
|
21
|
+
}
|
22
|
+
figcaption,
|
23
|
+
figure,
|
24
|
+
main {
|
25
|
+
display: block;
|
26
|
+
}
|
27
|
+
figure {
|
28
|
+
margin: 1em 40px;
|
29
|
+
}
|
30
|
+
hr {
|
31
|
+
box-sizing: content-box;
|
32
|
+
height: 0;
|
33
|
+
overflow: visible;
|
34
|
+
}
|
35
|
+
pre {
|
36
|
+
font-family: monospace, monospace;
|
37
|
+
font-size: 1em;
|
38
|
+
}
|
39
|
+
a {
|
40
|
+
background-color: transparent;
|
41
|
+
-webkit-text-decoration-skip: objects;
|
42
|
+
}
|
43
|
+
abbr[title] {
|
44
|
+
border-bottom: none;
|
45
|
+
text-decoration: underline;
|
46
|
+
text-decoration: underline dotted;
|
47
|
+
}
|
48
|
+
b,
|
49
|
+
strong {
|
50
|
+
font-weight: inherit;
|
51
|
+
}
|
52
|
+
b,
|
53
|
+
strong {
|
54
|
+
font-weight: bolder;
|
55
|
+
}
|
56
|
+
code,
|
57
|
+
kbd,
|
58
|
+
samp {
|
59
|
+
font-family: monospace, monospace;
|
60
|
+
font-size: 1em;
|
61
|
+
}
|
62
|
+
dfn {
|
63
|
+
font-style: italic;
|
64
|
+
}
|
65
|
+
mark {
|
66
|
+
background-color: #ff0;
|
67
|
+
color: #000;
|
68
|
+
}
|
69
|
+
small {
|
70
|
+
font-size: 80%;
|
71
|
+
}
|
72
|
+
sub,
|
73
|
+
sup {
|
74
|
+
font-size: 75%;
|
75
|
+
line-height: 0;
|
76
|
+
position: relative;
|
77
|
+
vertical-align: baseline;
|
78
|
+
}
|
79
|
+
sub {
|
80
|
+
bottom: -0.25em;
|
81
|
+
}
|
82
|
+
sup {
|
83
|
+
top: -0.5em;
|
84
|
+
}
|
85
|
+
audio,
|
86
|
+
video {
|
87
|
+
display: inline-block;
|
88
|
+
}
|
89
|
+
audio:not([controls]) {
|
90
|
+
display: none;
|
91
|
+
height: 0;
|
92
|
+
}
|
93
|
+
img {
|
94
|
+
border-style: none;
|
95
|
+
}
|
96
|
+
svg:not(:root) {
|
97
|
+
overflow: hidden;
|
98
|
+
}
|
99
|
+
button,
|
100
|
+
input,
|
101
|
+
optgroup,
|
102
|
+
select,
|
103
|
+
textarea {
|
104
|
+
font-family: sans-serif;
|
105
|
+
font-size: 100%;
|
106
|
+
line-height: 1.15;
|
107
|
+
margin: 0;
|
108
|
+
}
|
109
|
+
button,
|
110
|
+
input {
|
111
|
+
overflow: visible;
|
112
|
+
}
|
113
|
+
button,
|
114
|
+
select {
|
115
|
+
text-transform: none;
|
116
|
+
}
|
117
|
+
[type="reset"],
|
118
|
+
[type="submit"],
|
119
|
+
button,
|
120
|
+
html [type="button"] {
|
121
|
+
-webkit-appearance: button;
|
122
|
+
}
|
123
|
+
[type="button"]::-moz-focus-inner,
|
124
|
+
[type="reset"]::-moz-focus-inner,
|
125
|
+
[type="submit"]::-moz-focus-inner,
|
126
|
+
button::-moz-focus-inner {
|
127
|
+
border-style: none;
|
128
|
+
padding: 0;
|
129
|
+
}
|
130
|
+
[type="button"]:-moz-focusring,
|
131
|
+
[type="reset"]:-moz-focusring,
|
132
|
+
[type="submit"]:-moz-focusring,
|
133
|
+
button:-moz-focusring {
|
134
|
+
outline: 1px dotted ButtonText;
|
135
|
+
}
|
136
|
+
fieldset {
|
137
|
+
padding: 0.35em 0.75em 0.625em;
|
138
|
+
}
|
139
|
+
legend {
|
140
|
+
box-sizing: border-box;
|
141
|
+
color: inherit;
|
142
|
+
display: table;
|
143
|
+
max-width: 100%;
|
144
|
+
padding: 0;
|
145
|
+
white-space: normal;
|
146
|
+
}
|
147
|
+
progress {
|
148
|
+
display: inline-block;
|
149
|
+
vertical-align: baseline;
|
150
|
+
}
|
151
|
+
textarea {
|
152
|
+
overflow: auto;
|
153
|
+
}
|
154
|
+
[type="checkbox"],
|
155
|
+
[type="radio"] {
|
156
|
+
box-sizing: border-box;
|
157
|
+
padding: 0;
|
158
|
+
}
|
159
|
+
[type="number"]::-webkit-inner-spin-button,
|
160
|
+
[type="number"]::-webkit-outer-spin-button {
|
161
|
+
height: auto;
|
162
|
+
}
|
163
|
+
[type="search"] {
|
164
|
+
-webkit-appearance: textfield;
|
165
|
+
outline-offset: -2px;
|
166
|
+
}
|
167
|
+
[type="search"]::-webkit-search-cancel-button,
|
168
|
+
[type="search"]::-webkit-search-decoration {
|
169
|
+
-webkit-appearance: none;
|
170
|
+
}
|
171
|
+
::-webkit-file-upload-button {
|
172
|
+
-webkit-appearance: button;
|
173
|
+
font: inherit;
|
174
|
+
}
|
175
|
+
details,
|
176
|
+
menu {
|
177
|
+
display: block;
|
178
|
+
}
|
179
|
+
summary {
|
180
|
+
display: list-item;
|
181
|
+
}
|
182
|
+
canvas {
|
183
|
+
display: inline-block;
|
184
|
+
}
|
185
|
+
template {
|
186
|
+
display: none;
|
187
|
+
}
|
188
|
+
[hidden] {
|
189
|
+
display: none;
|
190
|
+
}
|
@@ -0,0 +1,59 @@
|
|
1
|
+
.highlight .c { color: #999988; font-style: italic } /* Comment */
|
2
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
3
|
+
.highlight .k { font-weight: bold } /* Keyword */
|
4
|
+
.highlight .o { font-weight: bold } /* Operator */
|
5
|
+
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
6
|
+
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
|
7
|
+
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
8
|
+
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
9
|
+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
10
|
+
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
|
11
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
12
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
13
|
+
.highlight .gh { color: #999999 } /* Generic.Heading */
|
14
|
+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
15
|
+
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
|
16
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
17
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
18
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
19
|
+
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
|
20
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
21
|
+
.highlight .kc { font-weight: bold } /* Keyword.Constant */
|
22
|
+
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
|
23
|
+
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
|
24
|
+
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
|
25
|
+
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
26
|
+
.highlight .m { color: #009999 } /* Literal.Number */
|
27
|
+
.highlight .s { color: #d14 } /* Literal.String */
|
28
|
+
.highlight .na { color: #008080 } /* Name.Attribute */
|
29
|
+
.highlight .nb { color: #0086B3 } /* Name.Builtin */
|
30
|
+
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
|
31
|
+
.highlight .no { color: #008080 } /* Name.Constant */
|
32
|
+
.highlight .ni { color: #800080 } /* Name.Entity */
|
33
|
+
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
34
|
+
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
|
35
|
+
.highlight .nn { color: #555555 } /* Name.Namespace */
|
36
|
+
.highlight .nt { color: #000080 } /* Name.Tag */
|
37
|
+
.highlight .nv { color: #008080 } /* Name.Variable */
|
38
|
+
.highlight .ow { font-weight: bold } /* Operator.Word */
|
39
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
40
|
+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
41
|
+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
42
|
+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
43
|
+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
44
|
+
.highlight .sb { color: #d14 } /* Literal.String.Backtick */
|
45
|
+
.highlight .sc { color: #d14 } /* Literal.String.Char */
|
46
|
+
.highlight .sd { color: #d14 } /* Literal.String.Doc */
|
47
|
+
.highlight .s2 { color: #d14 } /* Literal.String.Double */
|
48
|
+
.highlight .se { color: #d14 } /* Literal.String.Escape */
|
49
|
+
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
|
50
|
+
.highlight .si { color: #d14 } /* Literal.String.Interpol */
|
51
|
+
.highlight .sx { color: #d14 } /* Literal.String.Other */
|
52
|
+
.highlight .sr { color: #009926 } /* Literal.String.Regex */
|
53
|
+
.highlight .s1 { color: #d14 } /* Literal.String.Single */
|
54
|
+
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
|
55
|
+
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
56
|
+
.highlight .vc { color: #008080 } /* Name.Variable.Class */
|
57
|
+
.highlight .vg { color: #008080 } /* Name.Variable.Global */
|
58
|
+
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
|
59
|
+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,29 @@
|
|
1
|
+
header
|
2
|
+
box-shadow: 0 1px 0 rgba(0,0,0,.05)
|
3
|
+
position: sticky
|
4
|
+
top: 0
|
5
|
+
background-color: rgba(255,255,255,.9)
|
6
|
+
z-index: 100
|
7
|
+
padding: 10px 0
|
8
|
+
|
9
|
+
.header-content
|
10
|
+
display: flex
|
11
|
+
flex-direction: row
|
12
|
+
|
13
|
+
img, svg
|
14
|
+
width: 50px
|
15
|
+
height: 50px
|
16
|
+
|
17
|
+
.header-site-content
|
18
|
+
margin-left: 20px
|
19
|
+
flex-direction: column
|
20
|
+
|
21
|
+
p
|
22
|
+
padding-top: 5px
|
23
|
+
|
24
|
+
.site-title
|
25
|
+
font-weight: 500
|
26
|
+
|
27
|
+
a
|
28
|
+
color: rgba(71,82,93,.35)
|
29
|
+
font-size: .8rem
|
@@ -0,0 +1,26 @@
|
|
1
|
+
.author
|
2
|
+
line-height: 21px
|
3
|
+
height: 20px
|
4
|
+
display: flex
|
5
|
+
font-size: 14px
|
6
|
+
color: rgba(71,82,93,.4)
|
7
|
+
|
8
|
+
.authorImagePlaceholder
|
9
|
+
height: 20px
|
10
|
+
width: 20px
|
11
|
+
background: rgba(71,82,93,.4)
|
12
|
+
border-radius: 20px
|
13
|
+
color: $white
|
14
|
+
line-height: 20px
|
15
|
+
display: inline-block
|
16
|
+
margin-right: 5px
|
17
|
+
text-align: center
|
18
|
+
font-weight: 500
|
19
|
+
font-size: 12px
|
20
|
+
text-transform: uppercase
|
21
|
+
|
22
|
+
img
|
23
|
+
border-radius: 20px
|
24
|
+
margin-right: 5px
|
25
|
+
width: 20px
|
26
|
+
height: 20px
|
@@ -0,0 +1,26 @@
|
|
1
|
+
@media (max-width: 560px)
|
2
|
+
li
|
3
|
+
width: 100%
|
4
|
+
padding-left: 20px
|
5
|
+
padding-right: 20px
|
6
|
+
|
7
|
+
li
|
8
|
+
padding-top: 25px
|
9
|
+
padding-bottom: 25px
|
10
|
+
border-bottom: 1px solid #f3f3f3
|
11
|
+
position: relative
|
12
|
+
|
13
|
+
h2
|
14
|
+
font-size: 1.55rem
|
15
|
+
font-weight: 500
|
16
|
+
line-height: 1.9rem
|
17
|
+
min-height: 35px
|
18
|
+
|
19
|
+
.content
|
20
|
+
line-height: 1.55rem
|
21
|
+
|
22
|
+
p
|
23
|
+
margin-bottom: 13px
|
24
|
+
|
25
|
+
strong
|
26
|
+
font-weight: 500
|
@@ -0,0 +1,17 @@
|
|
1
|
+
.category
|
2
|
+
margin: 5px 0 15px
|
3
|
+
display: -webkit-box
|
4
|
+
display: -ms-flexbox
|
5
|
+
display: flex
|
6
|
+
flex-direction: row
|
7
|
+
|
8
|
+
&-meta
|
9
|
+
margin-right: 15px
|
10
|
+
color: $white
|
11
|
+
border-radius: 20px
|
12
|
+
padding: 0 8px
|
13
|
+
font-size: 12px
|
14
|
+
height: 20px
|
15
|
+
line-height: 19px
|
16
|
+
-webkit-appearance: none
|
17
|
+
-moz-appearance: none
|
@@ -0,0 +1,23 @@
|
|
1
|
+
.time
|
2
|
+
line-height: 1.45
|
3
|
+
-webkit-transition: opacity .3s ease
|
4
|
+
transition: opacity .3s ease
|
5
|
+
color: rgba(71,82,93,.4)
|
6
|
+
font-size: .9rem
|
7
|
+
|
8
|
+
@media (max-width: 900px)
|
9
|
+
.minWidth900
|
10
|
+
display: none
|
11
|
+
|
12
|
+
.time
|
13
|
+
margin-right: 5px
|
14
|
+
|
15
|
+
@media (min-width: 900px)
|
16
|
+
.maxWidth900
|
17
|
+
display: none
|
18
|
+
|
19
|
+
.time
|
20
|
+
position: absolute
|
21
|
+
top: 30px
|
22
|
+
left: -130px
|
23
|
+
width: 120px
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'index'
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><circle cx="66.06" cy="222.97" r="66.06" fill="#965a50"/><circle cx="66.06" cy="222.97" r="41.29" fill="#ebc9a0"/><circle cx="445.94" cy="222.97" r="66.06" fill="#965a50"/><circle cx="445.94" cy="222.97" r="41.29" fill="#ebc9a0"/><path d="M442.589 262.049c-8.366-14.436-13.169-30.655-13.169-47.34v-.001c0-72.373-44.364-134.33-107.355-160.318V24.774l-41.29 16.516-8.258-33.032c-21.781 7.261-40.361 22.498-54.356 37.298-77.557 17.283-135.58 86.39-135.58 169.154 0 16.685-4.803 32.904-13.169 47.34-12.72 21.948-19.863 46.482-19.863 72.402 0 93.496 92.431 169.29 206.452 169.29s206.452-75.794 206.452-169.29c-.001-25.92-7.145-50.455-19.864-72.403z" fill="#af6e5a"/><path d="M140.387 364.043c0-30.24 7.143-58.864 19.863-84.469 8.367-16.841 13.169-35.764 13.169-55.23 0-84.035 43.969-155.956 106.493-186.502l-7.396-29.584c-21.781 7.261-40.361 22.498-54.357 37.298-77.555 17.283-135.578 86.39-135.578 169.154 0 16.685-4.802 32.904-13.169 47.34-12.72 21.948-19.863 46.482-19.863 72.402 0 75.465 60.232 139.37 143.415 161.223-32.682-34.941-52.577-81.056-52.577-131.632z" fill="#965a50"/><path d="M256 470.71c68.412 0 123.871-44.367 123.871-99.097 0-11.354-2.414-22.245-6.835-32.386-6.41-14.707-4.228-31.587 6.07-43.889 13.134-15.691 19.908-36.877 16.333-59.635-4.91-31.259-30.182-56.486-61.448-61.353-23.892-3.719-46.037 3.968-61.903 18.439-4.51 4.113-10.3 6.17-16.087 6.17-5.79 0-11.581-2.056-16.091-6.17-15.866-14.471-38.011-22.158-61.903-18.439-31.266 4.866-56.537 30.094-61.448 61.353-3.575 22.757 3.199 43.943 16.333 59.635 10.298 12.303 12.48 29.182 6.07 43.889-4.42 10.142-6.835 21.033-6.835 32.386.002 54.729 55.461 99.097 123.873 99.097z" fill="#faebc8"/><path d="M132.129 371.612c0 18.522 6.468 35.795 17.524 50.625-5.938-18.411-9.266-37.916-9.266-58.195 0-30.24 7.143-58.864 19.863-84.469 8.367-16.841 13.169-35.764 13.169-55.23 0-17.307 1.96-34.056 5.468-50.08-.295.042-.583.04-.879.086-31.266 4.866-56.536 30.094-61.448 61.352-3.575 22.758 3.2 43.944 16.333 59.635 10.298 12.302 12.481 29.181 6.071 43.889-4.421 10.143-6.835 21.034-6.835 32.387z" fill="#f5dcb4"/><g fill="#5d5360"><path d="M239.476 330.323c-1.242 0-2.5-.278-3.685-.871l-16.516-8.258a8.258 8.258 0 0 1-3.694-11.081c2.048-4.081 7-5.734 11.081-3.694l16.516 8.258a8.258 8.258 0 0 1-3.702 15.646zM272.524 330.323a8.258 8.258 0 0 1-3.701-15.646l16.516-8.258c4.073-2.04 9.032-.387 11.081 3.694a8.258 8.258 0 0 1-3.694 11.081l-16.516 8.258a8.227 8.227 0 0 1-3.686.871z"/></g><path d="M182.319 363.355c-5.001 0-8.941 4.431-8.248 9.384 5.126 36.617 39.853 64.938 81.929 64.938 42.077 0 76.803-28.321 81.929-64.938.693-4.953-3.247-9.384-8.248-9.384H182.319z" fill="#4b3f4e"/><path d="M208.417 424.038c13.457 8.563 29.849 13.639 47.583 13.639s34.126-5.076 47.583-13.639c-5.966-20.666-25.063-35.909-47.583-35.909s-41.617 15.242-47.583 35.909z" fill="#e6646e"/><path d="M181.677 272.516c-13.682 0-24.774-11.092-24.774-24.774v-8.258c0-13.682 11.092-24.774 24.774-24.774s24.774 11.092 24.774 24.774v8.258c.001 13.682-11.091 24.774-24.774 24.774z" fill="#4b3f4e"/><path d="M181.677 214.71v28.903c0 6.841 5.546 12.387 12.387 12.387s12.387-5.546 12.387-12.387v-4.129c.001-13.683-11.091-24.774-24.774-24.774z" fill="#5d5360"/><circle cx="181.68" cy="231.23" r="8.258" fill="#fff"/><path d="M330.323 272.516c-13.682 0-24.774-11.092-24.774-24.774v-8.258c0-13.682 11.092-24.774 24.774-24.774s24.774 11.092 24.774 24.774v8.258c0 13.682-11.092 24.774-24.774 24.774z" fill="#4b3f4e"/><path d="M330.323 214.71v28.903c0 6.841 5.546 12.387 12.387 12.387s12.387-5.546 12.387-12.387v-4.129c0-13.683-11.092-24.774-24.774-24.774z" fill="#5d5360"/><circle cx="330.32" cy="231.23" r="8.258" fill="#fff"/><path d="M256 437.677c2.792 0 5.538-.169 8.258-.415v-16.101c0-4.56-3.694-8.258-8.258-8.258s-8.258 3.698-8.258 8.258v16.101c2.72.246 5.466.415 8.258.415z" fill="#ff8087"/></svg>
|
metadata
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: logchimp
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Yashu Mittal
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-08-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.8'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.8'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll-feed
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.10'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.10'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: jekyll-timeago
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0.11'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0.11'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bundler
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.16'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.16'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '12.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '12.0'
|
83
|
+
description:
|
84
|
+
email:
|
85
|
+
- mittalyashu77@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- LICENSE
|
91
|
+
- _includes/author.html
|
92
|
+
- _includes/card.html
|
93
|
+
- _includes/category.html
|
94
|
+
- _includes/footer.html
|
95
|
+
- _includes/header.html
|
96
|
+
- _includes/meta.html
|
97
|
+
- _layouts/default.html
|
98
|
+
- _layouts/empty.html
|
99
|
+
- _layouts/page.html
|
100
|
+
- _sass/1-helpers/_functions.sass
|
101
|
+
- _sass/1-helpers/_helpers.sass
|
102
|
+
- _sass/1-helpers/_mixins.sass
|
103
|
+
- _sass/1-helpers/_variables.sass
|
104
|
+
- _sass/2-base/_base.sass
|
105
|
+
- _sass/2-base/_code.sass
|
106
|
+
- _sass/2-base/_global.sass
|
107
|
+
- _sass/2-base/_normalize.scss
|
108
|
+
- _sass/2-base/_syntax.scss
|
109
|
+
- _sass/2-base/_typography.sass
|
110
|
+
- _sass/3-layout/_footer.sass
|
111
|
+
- _sass/3-layout/_header.sass
|
112
|
+
- _sass/3-layout/_layout.sass
|
113
|
+
- _sass/4-modules/_author.sass
|
114
|
+
- _sass/4-modules/_card.sass
|
115
|
+
- _sass/4-modules/_category.sass
|
116
|
+
- _sass/4-modules/_modules.sass
|
117
|
+
- _sass/4-modules/_time.sass
|
118
|
+
- _sass/5-pages/_index.sass
|
119
|
+
- _sass/5-pages/_pages.sass
|
120
|
+
- assets/css/style.sass
|
121
|
+
- assets/img/happy.png
|
122
|
+
- assets/img/logchimp.svg
|
123
|
+
homepage: https://gitlab.com/codecarrot/logchimp/logchimp
|
124
|
+
licenses:
|
125
|
+
- MIT
|
126
|
+
metadata: {}
|
127
|
+
post_install_message:
|
128
|
+
rdoc_options: []
|
129
|
+
require_paths:
|
130
|
+
- lib
|
131
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '0'
|
136
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - ">="
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '0'
|
141
|
+
requirements: []
|
142
|
+
rubyforge_project:
|
143
|
+
rubygems_version: 2.7.6
|
144
|
+
signing_key:
|
145
|
+
specification_version: 4
|
146
|
+
summary: Keep customers in the loop about your product with LogChimp.
|
147
|
+
test_files: []
|