logchimp 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/card.html +3 -1
- data/_includes/category.html +1 -1
- data/_sass/2-base/_base.sass +0 -1
- data/_sass/2-base/_code.sass +1 -0
- data/_sass/2-base/_global.sass +4 -0
- data/_sass/3-layout/_header.sass +7 -1
- data/_sass/4-modules/_category.sass +1 -0
- data/_sass/4-modules/_time.sass +1 -1
- metadata +1 -2
- data/_sass/2-base/_normalize.scss +0 -190
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7cb08aa70608438e727d4efeb1786a0253befa7c3fdc6a58f005b9a4a433e92e
|
4
|
+
data.tar.gz: 0ff89eda0a38a41ee6a5930dc16e46a1843f6d83b14dc907e3242b3d122361e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efb96f2883cf2a3f585f0d47303f942e7ef099a5d23b44e46cb13ce0a60d8de8cd599855bd30cfd2ebde8c400243e003b819a451b66267ff549a137f8d8a6526
|
7
|
+
data.tar.gz: be421835775d09b184ed04695afb2293b13e341e9d40e5ea0414250054521db073f0f8e063f175dc85e05d8c33384c9a459e48bc9f1f85dbb9394f2880f77d3f
|
data/_includes/card.html
CHANGED
data/_includes/category.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{% if post.category %}
|
2
2
|
{% for categoryMeta in site.data.category %}
|
3
3
|
{% if post.category == categoryMeta.name %}
|
4
|
-
<div class="category-meta" style="background-color: #{{ categoryMeta.color }};border: 1px solid #{{ categoryMeta.color }};">
|
4
|
+
<div class="category-meta {% if post.author %}mb10{% endif %}" style="background-color: #{{ categoryMeta.color }};border: 1px solid #{{ categoryMeta.color }};">
|
5
5
|
{{ post.category }}
|
6
6
|
</div>
|
7
7
|
{% else %}
|
data/_sass/2-base/_base.sass
CHANGED
data/_sass/2-base/_code.sass
CHANGED
data/_sass/2-base/_global.sass
CHANGED
data/_sass/3-layout/_header.sass
CHANGED
@@ -1,10 +1,16 @@
|
|
1
|
+
@media (max-width: 560px)
|
2
|
+
header
|
3
|
+
padding-left: 20px
|
4
|
+
padding-right: 20px
|
5
|
+
|
1
6
|
header
|
2
7
|
box-shadow: 0 1px 0 rgba(0,0,0,.05)
|
3
8
|
position: sticky
|
4
9
|
top: 0
|
5
10
|
background-color: rgba(255,255,255,.9)
|
6
11
|
z-index: 100
|
7
|
-
padding: 10px
|
12
|
+
padding-top: 10px
|
13
|
+
padding-bottom: 10px
|
8
14
|
|
9
15
|
.header-content
|
10
16
|
display: flex
|
data/_sass/4-modules/_time.sass
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logchimp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yashu Mittal
|
@@ -105,7 +105,6 @@ files:
|
|
105
105
|
- _sass/2-base/_base.sass
|
106
106
|
- _sass/2-base/_code.sass
|
107
107
|
- _sass/2-base/_global.sass
|
108
|
-
- _sass/2-base/_normalize.scss
|
109
108
|
- _sass/2-base/_syntax.scss
|
110
109
|
- _sass/2-base/_typography.sass
|
111
110
|
- _sass/3-layout/_footer.sass
|
@@ -1,190 +0,0 @@
|
|
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
|
-
}
|