krad 3.7.1 → 3.7.2
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 +4 -4
- data/_sass/base/_typography.scss +68 -3
- data/_sass/components/_blockquotes.scss +14 -0
- data/_sass/components/_images.scss +1 -1
- data/_sass/variables/_fonts.scss +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 03b0aab497dd9981cb7f8495ab42eaa4b80dbe09
|
|
4
|
+
data.tar.gz: dfc213c65f420623b37269ca5bee7b053088e436
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9194e03d0e7debb49443f941eb1f6837b3214d552865d542cd2226db714074b4bc0d64bebdc029875f1b141e38276c904a65e16feee16009463b2cec65070787
|
|
7
|
+
data.tar.gz: 4b91c90db09be4fbe44fe780d39977abaa1dfebe3085f8aec78881f75e467b0bcf4b18bccc94007c1a1772aceb056b717f79b82e6e3fde04497d3de8f1e40750
|
data/_sass/base/_typography.scss
CHANGED
|
@@ -154,9 +154,13 @@ kbd {
|
|
|
154
154
|
|
|
155
155
|
/* Blockquote */
|
|
156
156
|
blockquote {
|
|
157
|
-
padding:
|
|
158
|
-
margin: 0px 0px
|
|
159
|
-
border-left: .
|
|
157
|
+
padding: 0.5rem 1.5rem;
|
|
158
|
+
margin: 0px 0px 1.5rem;
|
|
159
|
+
border-left: .4rem solid $color-gray-milk;
|
|
160
|
+
|
|
161
|
+
p {
|
|
162
|
+
margin-bottom: 1rem;
|
|
163
|
+
}
|
|
160
164
|
|
|
161
165
|
footer {
|
|
162
166
|
color: $color-gray-light;
|
|
@@ -172,6 +176,67 @@ blockquote {
|
|
|
172
176
|
}
|
|
173
177
|
}
|
|
174
178
|
|
|
179
|
+
.pullquote {
|
|
180
|
+
position: relative;
|
|
181
|
+
border: none;
|
|
182
|
+
color: $color-gray-light;
|
|
183
|
+
text-align: center;
|
|
184
|
+
margin-bottom: 1.6rem;
|
|
185
|
+
|
|
186
|
+
p {
|
|
187
|
+
font-size: $font-size-big;
|
|
188
|
+
margin-bottom: 1rem;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
cite {
|
|
192
|
+
&:before {
|
|
193
|
+
content: '—';
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
&:before {
|
|
198
|
+
content: '\201C';
|
|
199
|
+
position: absolute;
|
|
200
|
+
top: 0;
|
|
201
|
+
left: 0;
|
|
202
|
+
z-index: -9;
|
|
203
|
+
color: $color-gray-milk;
|
|
204
|
+
font-size: $font-size-blockquote-mark;
|
|
205
|
+
line-height: 1;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
@media (min-width: 65em) {
|
|
210
|
+
.pullquote {
|
|
211
|
+
&.pq-left, &.pq-right {
|
|
212
|
+
display: block;
|
|
213
|
+
max-width: 40%;
|
|
214
|
+
padding-top: 0;
|
|
215
|
+
font-style: italic;
|
|
216
|
+
&:before { top: -1.5rem };
|
|
217
|
+
}
|
|
218
|
+
&.pq-left {
|
|
219
|
+
float: left;
|
|
220
|
+
text-align: right;
|
|
221
|
+
margin-left: -7em;
|
|
222
|
+
}
|
|
223
|
+
&.pq-right {
|
|
224
|
+
float: right;
|
|
225
|
+
text-align: left;
|
|
226
|
+
margin-right: -7em;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
&.pq-expand {
|
|
230
|
+
margin-left: -5em;
|
|
231
|
+
margin-right: -5em;
|
|
232
|
+
&:before {
|
|
233
|
+
font-size: 12rem;
|
|
234
|
+
top: -0.5rem;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
|
|
175
240
|
/* Text formats */
|
|
176
241
|
small {
|
|
177
242
|
font-size: 75%;
|
data/_sass/variables/_fonts.scss
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: krad
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.7.
|
|
4
|
+
version: 3.7.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lê Thanh Tùng
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-05-
|
|
11
|
+
date: 2018-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|