names_are_hard 0.2.11 → 0.2.12
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/names_are_hard.scss +6 -7
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2e9ee6787da97f89bf321545f26f45f8879dcc164060ca06a8a8ab16e43b591
|
|
4
|
+
data.tar.gz: 910aad235074e90421eeb9d576deff5139cbd4d8359e29a88911d878a3aa697b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f75b16412a2d165e270111a7395da98d46923ff0c203b94d9acb6bd0501c191bee4034668093492e658afa6b6c94fbdf0aae250e135ae8e0167554fc6890268d
|
|
7
|
+
data.tar.gz: 48e5d784b41e77059b21cd6a9e7069f7574e0e787abb9f7eda30c88eacc6ec471acdb06053febdd9e57c8e667e3c1bee913b4be89f66cdf0be20e2392ada98bb
|
data/_sass/names_are_hard.scss
CHANGED
|
@@ -2,13 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
// use the style reset
|
|
4
4
|
@import "reset";
|
|
5
|
-
@import url('https://fonts.googleapis.com/css?family=Oswald|Roboto+Condensed');
|
|
5
|
+
@import url('https://fonts.googleapis.com/css?family=Oswald|Roboto+Condensed|Roboto+Mono');
|
|
6
6
|
|
|
7
7
|
// fonts
|
|
8
|
-
$font-title: 'Oswald',
|
|
9
|
-
sans-serif;
|
|
10
|
-
$font-
|
|
11
|
-
sans-serif !important;
|
|
8
|
+
$font-title: 'Oswald', sans-serif;
|
|
9
|
+
$font-main: 'Roboto Condensed', sans-serif !important;
|
|
10
|
+
$font-mono: 'Roboto Mono', monospace;
|
|
12
11
|
|
|
13
12
|
// colors
|
|
14
13
|
$background-color: #142B51 !default;
|
|
@@ -333,7 +332,7 @@ li {
|
|
|
333
332
|
pre.highlight {
|
|
334
333
|
background-color: $code-background-color;
|
|
335
334
|
color: $code-foreground-color;
|
|
336
|
-
font-family:
|
|
335
|
+
font-family: $font-mono;
|
|
337
336
|
border: 1px solid black;
|
|
338
337
|
}
|
|
339
338
|
|
|
@@ -341,7 +340,7 @@ pre.highlight {
|
|
|
341
340
|
code {
|
|
342
341
|
background-color: $code-background-color;
|
|
343
342
|
color: $code-foreground-color;
|
|
344
|
-
font-family:
|
|
343
|
+
font-family: $font-mono;
|
|
345
344
|
|
|
346
345
|
padding-left: 3px;
|
|
347
346
|
padding-right: 3px;
|