mono-lite 0.1.5 → 0.1.6
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/_config.yml +12 -9
- data/_includes/header.html +1 -1
- data/_layouts/home.html +1 -1
- data/_layouts/post.html +1 -1
- data/_sass/_base.scss +115 -7
- data/_sass/_layout.scss +6 -24
- data/_sass/initialize.scss +3 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c0a58405496a6954a01e7bc74a768eab943bcb9db8b8f367d8e0811e628f5c6
|
4
|
+
data.tar.gz: be68aee664d5b1a3e9e0d28943abd3f6cfab7eb5291829185170784de1eb58b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e00d7b1928d6aaaa8ae19e8c8f289666cf997c2c11f66c2c32f1d6da6d90af44c4eeae6b3a87063b2c48daf67c15311bbb8ef86cc89f91d3701937f1730b9a20
|
7
|
+
data.tar.gz: 36d6667f2ad4d917a1cb67050984fe368eb0557f90f7c8163cdc81eab054ac3e77b7ba4aeb13c1d556d39fcc7f5866658321a7dbb188bfafb1c7e380232824cc
|
data/_config.yml
CHANGED
@@ -11,16 +11,24 @@ show_excerpts: false # set to true to show excerpts on the homepage
|
|
11
11
|
|
12
12
|
mono-lite:
|
13
13
|
|
14
|
+
intro_description: >
|
15
|
+
Write a brief intro description about yourself. Essentially a bio
|
16
|
+
for the header of the page. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium auctor semper.
|
17
|
+
Etiam ac vulputate nibh. Morbi sagittis porttitor velit quis consectetur. Phasellus at lacus felis.
|
18
|
+
Nulla ac iaculis lectus. Nam fermentum massa lorem. Donec mattis vitae mauris ut rutrum.
|
19
|
+
Quisque facilisis justo vitae magna mattis suscipit. Nam non elit eget magna varius facilisis vitae ac mi.
|
20
|
+
Interdum et malesuada fames ac ante ipsum primis in faucibus. Aenean consequat ligula eget iaculis dignissim.
|
21
|
+
|
14
22
|
# generate social links in footer
|
15
|
-
social_links:
|
16
|
-
twitter: jekyllrb
|
17
|
-
github: jekyll
|
23
|
+
# social_links:
|
24
|
+
# twitter: jekyllrb
|
25
|
+
# github: jekyll
|
18
26
|
# devto: jekyll
|
19
27
|
# dribbble: jekyll
|
20
28
|
# facebook: jekyll
|
21
29
|
# flickr: jekyll
|
22
30
|
# instagram: jekyll
|
23
|
-
linkedin: jekyll
|
31
|
+
# linkedin: jekyll
|
24
32
|
# pinterest: jekyll
|
25
33
|
# youtube: jekyll
|
26
34
|
# youtube_channel: UC8CXR0-3I70i1tfPg1PAE1g
|
@@ -44,10 +52,5 @@ mono-lite:
|
|
44
52
|
# - username: jekyll2
|
45
53
|
# instance: example.com
|
46
54
|
|
47
|
-
# If you want to link only specific pages in your header, uncomment
|
48
|
-
# this and add the path to the pages in order as they should show up
|
49
|
-
#header_pages:
|
50
|
-
# - about.md
|
51
|
-
|
52
55
|
# Build settings
|
53
56
|
theme: mono-lite
|
data/_includes/header.html
CHANGED
data/_layouts/home.html
CHANGED
@@ -15,7 +15,7 @@ layout: default
|
|
15
15
|
<img src="{{ post.src }}">
|
16
16
|
</div>
|
17
17
|
<div class="post-details">
|
18
|
-
<div class="post-date">{{ post.date | date: '%
|
18
|
+
<div class="post-date">{{ post.date | date: '%b %Y' }}</div>
|
19
19
|
<div>
|
20
20
|
<span class="post-title">{{ post.title }}</span>
|
21
21
|
<span class="post-subtitle">{{ post.subtitle }}</span>
|
data/_layouts/post.html
CHANGED
data/_sass/_base.scss
CHANGED
@@ -1,21 +1,129 @@
|
|
1
1
|
body {
|
2
|
-
font-family:
|
2
|
+
font-family: $base-font-family;
|
3
|
+
font-size: $base-font-size;
|
3
4
|
margin: 26px 0;
|
4
5
|
line-height: 1.2;
|
5
6
|
font-weight: 300;
|
6
7
|
-webkit-font-smoothing: antialiased;
|
7
8
|
}
|
8
9
|
|
10
|
+
/**
|
11
|
+
* Reset these elements
|
12
|
+
*/
|
13
|
+
blockquote, pre, hr,
|
14
|
+
figure, ol, ul, li {
|
15
|
+
margin: 0;
|
16
|
+
padding: 0;
|
17
|
+
}
|
18
|
+
|
19
|
+
/**
|
20
|
+
* Links
|
21
|
+
*/
|
9
22
|
a {
|
10
|
-
color:
|
23
|
+
color: $link-base-color;
|
11
24
|
cursor: pointer;
|
12
25
|
}
|
13
26
|
|
14
|
-
|
15
|
-
|
27
|
+
/**
|
28
|
+
* Headings
|
29
|
+
*/
|
30
|
+
h1, h2, h3, h4, h5, h6 {
|
31
|
+
font-weight: $base-font-weight;
|
16
32
|
}
|
17
33
|
|
18
|
-
|
19
|
-
|
20
|
-
|
34
|
+
/**
|
35
|
+
* Code formatting
|
36
|
+
*/
|
37
|
+
pre,
|
38
|
+
code {
|
39
|
+
font-family: $code-font-family;
|
40
|
+
font-size: 0.9375em;
|
41
|
+
border: 1px solid $border-color-01;
|
42
|
+
border-radius: 3px;
|
43
|
+
background-color: $code-background-color;
|
44
|
+
}
|
45
|
+
|
46
|
+
code {
|
47
|
+
padding: 1px 5px;
|
48
|
+
}
|
49
|
+
|
50
|
+
pre {
|
51
|
+
padding: 8px 12px;
|
52
|
+
overflow-x: auto;
|
53
|
+
|
54
|
+
> code {
|
55
|
+
border: 0;
|
56
|
+
padding-right: 0;
|
57
|
+
padding-left: 0;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
/**
|
62
|
+
* Tables
|
63
|
+
*/
|
64
|
+
table {
|
65
|
+
margin-bottom: $spacing-unit;
|
66
|
+
width: 100%;
|
67
|
+
text-align: $table-text-align;
|
68
|
+
color: $table-text-color;
|
69
|
+
border-collapse: collapse;
|
70
|
+
border: 1px solid $table-border-color;
|
71
|
+
tr {
|
72
|
+
&:nth-child(even) {
|
73
|
+
background-color: $table-zebra-color;
|
74
|
+
}
|
75
|
+
}
|
76
|
+
th, td {
|
77
|
+
padding: ($spacing-unit / 3) ($spacing-unit / 2);
|
78
|
+
}
|
79
|
+
th {
|
80
|
+
background-color: $table-header-bg-color;
|
81
|
+
border: 1px solid $table-header-border;
|
82
|
+
}
|
83
|
+
td {
|
84
|
+
border: 1px solid $table-border-color;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
/**
|
89
|
+
* Figures
|
90
|
+
*/
|
91
|
+
figure > img {
|
92
|
+
display: block;
|
93
|
+
}
|
94
|
+
|
95
|
+
figcaption {
|
96
|
+
font-size: $small-font-size;
|
97
|
+
}
|
98
|
+
|
99
|
+
/**
|
100
|
+
* Lists
|
101
|
+
*/
|
102
|
+
ul, ol {
|
103
|
+
margin-left: $spacing-unit;
|
104
|
+
}
|
105
|
+
|
106
|
+
li {
|
107
|
+
> ul,
|
108
|
+
> ol {
|
109
|
+
margin-bottom: 0;
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
/**
|
114
|
+
* Blockquotes
|
115
|
+
*/
|
116
|
+
blockquote {
|
117
|
+
color: $brand-color;
|
118
|
+
border-left: 4px solid $border-color-01;
|
119
|
+
padding-left: $spacing-unit / 2;
|
120
|
+
font-style: italic;
|
121
|
+
|
122
|
+
> :last-child {
|
123
|
+
margin-bottom: 0;
|
124
|
+
}
|
125
|
+
|
126
|
+
i, em {
|
127
|
+
font-style: normal;
|
128
|
+
}
|
21
129
|
}
|
data/_sass/_layout.scss
CHANGED
@@ -58,18 +58,8 @@ section {
|
|
58
58
|
width: 100%;
|
59
59
|
}
|
60
60
|
|
61
|
-
h3 {
|
62
|
-
display: block;
|
63
|
-
font-size: 1.17em;
|
64
|
-
margin-block-start: 1em;
|
65
|
-
margin-block-end: 1em;
|
66
|
-
margin-inline-start: 0px;
|
67
|
-
margin-inline-end: 0px;
|
68
|
-
font-weight: bold;
|
69
|
-
}
|
70
|
-
|
71
61
|
.post-category {
|
72
|
-
margin-top:
|
62
|
+
margin-top: 48px;
|
73
63
|
font-weight: 400;
|
74
64
|
}
|
75
65
|
|
@@ -125,14 +115,11 @@ h3 {
|
|
125
115
|
font-size: 0.8em;
|
126
116
|
}
|
127
117
|
|
128
|
-
.post-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
margin-inline-start: 0px;
|
134
|
-
margin-inline-end: 0px;
|
135
|
-
font-weight: bold;
|
118
|
+
.post-content {
|
119
|
+
img {
|
120
|
+
object-fit: contain;
|
121
|
+
width: 100%;
|
122
|
+
}
|
136
123
|
}
|
137
124
|
|
138
125
|
.post-byline {
|
@@ -142,11 +129,6 @@ h3 {
|
|
142
129
|
margin-bottom: 8px;
|
143
130
|
}
|
144
131
|
|
145
|
-
.post-content img {
|
146
|
-
object-fit: contain;
|
147
|
-
width: 100%;
|
148
|
-
}
|
149
|
-
|
150
132
|
@media (max-width: $on-palm) {
|
151
133
|
.site-title {
|
152
134
|
text-align: center;
|
data/_sass/initialize.scss
CHANGED
@@ -2,12 +2,13 @@
|
|
2
2
|
|
3
3
|
// Define defaults for each variable.
|
4
4
|
|
5
|
-
$base-font-family:
|
5
|
+
$base-font-family: 'Raleway', sans-serif !default;
|
6
6
|
$code-font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
|
7
7
|
$base-font-size: 16px !default;
|
8
|
-
$base-font-weight:
|
8
|
+
$base-font-weight: 600 !default;
|
9
9
|
$small-font-size: $base-font-size * 0.875 !default;
|
10
10
|
$base-line-height: 1.5 !default;
|
11
|
+
$link-base-color: #207575;
|
11
12
|
|
12
13
|
$spacing-unit: 30px !default;
|
13
14
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mono-lite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dylan Hawley
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-06-
|
11
|
+
date: 2021-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|