jekyll-openmoji 0.1.3 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +0 -2
- data/.gitlab-ci.yml +36 -58
- data/README.md +3 -3
- data/jekyll-openmoji.gemspec +3 -3
- data/lib/jekyll-openmoji/plugin.rb +0 -1
- data/lib/jekyll-openmoji/version.rb +1 -1
- metadata +7 -47
- data/.rubocop.yml +0 -43
- data/.rubocop_todo.yml +0 -25
- data/doc/blog/.bundle/config +0 -2
- data/doc/blog/404.html +0 -24
- data/doc/blog/Activities.md +0 -322
- data/doc/blog/Animals-Nature.md +0 -514
- data/doc/blog/Component.md +0 -42
- data/doc/blog/Extras-Openmoji.md +0 -658
- data/doc/blog/Extras-Unicode.md +0 -22
- data/doc/blog/Flags.md +0 -1078
- data/doc/blog/Food-Drink.md +0 -490
- data/doc/blog/Gemfile +0 -7
- data/doc/blog/Objects.md +0 -938
- data/doc/blog/People-Body.md +0 -6430
- data/doc/blog/Smileys-Emotion.md +0 -602
- data/doc/blog/Symbols.md +0 -874
- data/doc/blog/Travel-Places.md +0 -846
- data/doc/blog/_config.yml +0 -16
- data/doc/blog/_includes/disqus_comments.html +0 -20
- data/doc/blog/_includes/footer.html +0 -32
- data/doc/blog/_includes/google-analytics.html +0 -9
- data/doc/blog/_includes/head.html +0 -11
- data/doc/blog/_includes/header.html +0 -31
- data/doc/blog/_includes/social.html +0 -19
- data/doc/blog/_layouts/default.html +0 -20
- data/doc/blog/_layouts/home.html +0 -38
- data/doc/blog/_layouts/page.html +0 -14
- data/doc/blog/_layouts/post.html +0 -27
- data/doc/blog/_sass/minima-classic.scss +0 -90
- data/doc/blog/_sass/minima-solarized-dark.scss +0 -4
- data/doc/blog/_sass/minima-solarized.scss +0 -139
- data/doc/blog/_sass/minima/_base.scss +0 -269
- data/doc/blog/_sass/minima/_layout.scss +0 -300
- data/doc/blog/_sass/minima/custom-styles.scss +0 -2
- data/doc/blog/_sass/minima/custom-variables.scss +0 -1
- data/doc/blog/_sass/minima/initialize.scss +0 -48
- data/doc/blog/assets/css/style.scss +0 -5
- data/doc/blog/assets/minima-social-icons.svg +0 -41
- data/doc/blog/favicon.ico +0 -0
- data/doc/blog/index.md +0 -27
@@ -1,269 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Reset some basic elements
|
3
|
-
*/
|
4
|
-
body, h1, h2, h3, h4, h5, h6,
|
5
|
-
p, blockquote, pre, hr,
|
6
|
-
dl, dd, ol, ul, figure {
|
7
|
-
margin: 0;
|
8
|
-
padding: 0;
|
9
|
-
|
10
|
-
}
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
/**
|
15
|
-
* Basic styling
|
16
|
-
*/
|
17
|
-
body {
|
18
|
-
font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;
|
19
|
-
color: $text-color;
|
20
|
-
background-color: $background-color;
|
21
|
-
-webkit-text-size-adjust: 100%;
|
22
|
-
-webkit-font-feature-settings: "kern" 1;
|
23
|
-
-moz-font-feature-settings: "kern" 1;
|
24
|
-
-o-font-feature-settings: "kern" 1;
|
25
|
-
font-feature-settings: "kern" 1;
|
26
|
-
font-kerning: normal;
|
27
|
-
display: flex;
|
28
|
-
min-height: 100vh;
|
29
|
-
flex-direction: column;
|
30
|
-
}
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
/**
|
35
|
-
* Set `margin-bottom` to maintain vertical rhythm
|
36
|
-
*/
|
37
|
-
h1, h2, h3, h4, h5, h6,
|
38
|
-
p, blockquote, pre,
|
39
|
-
ul, ol, dl, figure,
|
40
|
-
%vertical-rhythm {
|
41
|
-
margin-bottom: $spacing-unit / 2;
|
42
|
-
}
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
/**
|
47
|
-
* `main` element
|
48
|
-
*/
|
49
|
-
main {
|
50
|
-
display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
|
51
|
-
}
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
/**
|
56
|
-
* Images
|
57
|
-
*/
|
58
|
-
img {
|
59
|
-
max-width: 100%;
|
60
|
-
vertical-align: middle;
|
61
|
-
&.emoji {
|
62
|
-
height: 3em;
|
63
|
-
width: 3em;
|
64
|
-
margin: 0.5em;
|
65
|
-
}
|
66
|
-
}
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
/**
|
71
|
-
* Figures
|
72
|
-
*/
|
73
|
-
figure > img {
|
74
|
-
display: block;
|
75
|
-
}
|
76
|
-
|
77
|
-
figcaption {
|
78
|
-
font-size: $small-font-size;
|
79
|
-
}
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
/**
|
84
|
-
* Lists
|
85
|
-
*/
|
86
|
-
ul, ol {
|
87
|
-
margin-left: $spacing-unit;
|
88
|
-
}
|
89
|
-
|
90
|
-
li {
|
91
|
-
> ul,
|
92
|
-
> ol {
|
93
|
-
margin-bottom: 0;
|
94
|
-
}
|
95
|
-
}
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
/**
|
100
|
-
* Headings
|
101
|
-
*/
|
102
|
-
h1, h2, h3, h4, h5, h6 {
|
103
|
-
font-weight: $base-font-weight;
|
104
|
-
}
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
/**
|
109
|
-
* Links
|
110
|
-
*/
|
111
|
-
a {
|
112
|
-
color: $link-base-color;
|
113
|
-
text-decoration: none;
|
114
|
-
|
115
|
-
&:visited {
|
116
|
-
color: $link-visited-color;
|
117
|
-
}
|
118
|
-
|
119
|
-
&:hover {
|
120
|
-
color: $text-color;
|
121
|
-
text-decoration: underline;
|
122
|
-
}
|
123
|
-
|
124
|
-
.social-media-list &:hover {
|
125
|
-
text-decoration: none;
|
126
|
-
|
127
|
-
.username {
|
128
|
-
text-decoration: underline;
|
129
|
-
}
|
130
|
-
}
|
131
|
-
}
|
132
|
-
|
133
|
-
|
134
|
-
/**
|
135
|
-
* Blockquotes
|
136
|
-
*/
|
137
|
-
blockquote {
|
138
|
-
color: $brand-color;
|
139
|
-
border-left: 4px solid $brand-color-light;
|
140
|
-
padding-left: $spacing-unit / 2;
|
141
|
-
@include relative-font-size(1.125);
|
142
|
-
letter-spacing: -1px;
|
143
|
-
font-style: italic;
|
144
|
-
|
145
|
-
> :last-child {
|
146
|
-
margin-bottom: 0;
|
147
|
-
}
|
148
|
-
}
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
/**
|
153
|
-
* Code formatting
|
154
|
-
*/
|
155
|
-
pre,
|
156
|
-
code {
|
157
|
-
@include relative-font-size(0.9375);
|
158
|
-
border: 1px solid $brand-color-light;
|
159
|
-
border-radius: 3px;
|
160
|
-
background-color: $code-background-color;
|
161
|
-
}
|
162
|
-
|
163
|
-
code {
|
164
|
-
padding: 1px 5px;
|
165
|
-
}
|
166
|
-
|
167
|
-
pre {
|
168
|
-
padding: 8px 12px;
|
169
|
-
overflow-x: auto;
|
170
|
-
|
171
|
-
> code {
|
172
|
-
border: 0;
|
173
|
-
padding-right: 0;
|
174
|
-
padding-left: 0;
|
175
|
-
}
|
176
|
-
}
|
177
|
-
|
178
|
-
.highlight {
|
179
|
-
background: $code-background-color;
|
180
|
-
@extend %vertical-rhythm;
|
181
|
-
|
182
|
-
.highlighter-rouge & {
|
183
|
-
background: $code-background-color;
|
184
|
-
}
|
185
|
-
}
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
/**
|
190
|
-
* Wrapper
|
191
|
-
*/
|
192
|
-
.wrapper {
|
193
|
-
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
|
194
|
-
max-width: calc(#{$content-width} - (#{$spacing-unit}));
|
195
|
-
margin-right: auto;
|
196
|
-
margin-left: auto;
|
197
|
-
padding-right: $spacing-unit / 2;
|
198
|
-
padding-left: $spacing-unit / 2;
|
199
|
-
@extend %clearfix;
|
200
|
-
|
201
|
-
@media screen and (min-width: $on-large) {
|
202
|
-
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
|
203
|
-
max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
|
204
|
-
padding-right: $spacing-unit;
|
205
|
-
padding-left: $spacing-unit;
|
206
|
-
}
|
207
|
-
}
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
/**
|
212
|
-
* Clearfix
|
213
|
-
*/
|
214
|
-
%clearfix:after {
|
215
|
-
content: "";
|
216
|
-
display: table;
|
217
|
-
clear: both;
|
218
|
-
}
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
/**
|
223
|
-
* Icons
|
224
|
-
*/
|
225
|
-
|
226
|
-
.orange {
|
227
|
-
color: #f66a0a;
|
228
|
-
}
|
229
|
-
|
230
|
-
.grey {
|
231
|
-
color: #828282;
|
232
|
-
}
|
233
|
-
|
234
|
-
.svg-icon {
|
235
|
-
width: 16px;
|
236
|
-
height: 16px;
|
237
|
-
display: inline-block;
|
238
|
-
fill: currentColor;
|
239
|
-
padding: 5px 3px 2px 5px;
|
240
|
-
vertical-align: text-bottom;
|
241
|
-
}
|
242
|
-
|
243
|
-
|
244
|
-
/**
|
245
|
-
* Tables
|
246
|
-
*/
|
247
|
-
table {
|
248
|
-
margin-bottom: $spacing-unit;
|
249
|
-
width: 100%;
|
250
|
-
text-align: $table-text-align;
|
251
|
-
color: $table-text-color;
|
252
|
-
border-collapse: collapse;
|
253
|
-
border: 1px solid $table-border-color;
|
254
|
-
tr {
|
255
|
-
&:nth-child(even) {
|
256
|
-
background-color: $table-zebra-color;
|
257
|
-
}
|
258
|
-
}
|
259
|
-
th, td {
|
260
|
-
padding: ($spacing-unit / 3) ($spacing-unit / 2);
|
261
|
-
}
|
262
|
-
th {
|
263
|
-
background-color: $table-header-bg-color;
|
264
|
-
border: 1px solid $table-header-border;
|
265
|
-
}
|
266
|
-
td {
|
267
|
-
border: 1px solid $table-border-color;
|
268
|
-
}
|
269
|
-
}
|
@@ -1,300 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Site header
|
3
|
-
*/
|
4
|
-
.site-header {
|
5
|
-
border-top: 5px solid $brand-color-dark;
|
6
|
-
border-bottom: 1px solid $brand-color-light;
|
7
|
-
min-height: $spacing-unit * 1.865;
|
8
|
-
line-height: $base-line-height * $base-font-size * 2.25;
|
9
|
-
|
10
|
-
// Positioning context for the mobile navigation icon
|
11
|
-
position: relative;
|
12
|
-
}
|
13
|
-
|
14
|
-
.site-title {
|
15
|
-
@include relative-font-size(1.625);
|
16
|
-
font-weight: 300;
|
17
|
-
letter-spacing: -1px;
|
18
|
-
margin-bottom: 0;
|
19
|
-
float: left;
|
20
|
-
|
21
|
-
@include media-query($on-palm) {
|
22
|
-
padding-right: 45px;
|
23
|
-
}
|
24
|
-
|
25
|
-
&,
|
26
|
-
&:visited {
|
27
|
-
color: $brand-color-dark;
|
28
|
-
}
|
29
|
-
}
|
30
|
-
|
31
|
-
.site-nav {
|
32
|
-
position: absolute;
|
33
|
-
top: 9px;
|
34
|
-
right: $spacing-unit / 2;
|
35
|
-
background-color: $background-color;
|
36
|
-
border: 1px solid $brand-color-light;
|
37
|
-
border-radius: 5px;
|
38
|
-
text-align: right;
|
39
|
-
|
40
|
-
.nav-trigger {
|
41
|
-
display: none;
|
42
|
-
}
|
43
|
-
|
44
|
-
.menu-icon {
|
45
|
-
float: right;
|
46
|
-
width: 36px;
|
47
|
-
height: 26px;
|
48
|
-
line-height: 0;
|
49
|
-
padding-top: 10px;
|
50
|
-
text-align: center;
|
51
|
-
|
52
|
-
> svg path {
|
53
|
-
fill: $brand-color-dark;
|
54
|
-
}
|
55
|
-
}
|
56
|
-
|
57
|
-
label[for="nav-trigger"] {
|
58
|
-
display: block;
|
59
|
-
float: right;
|
60
|
-
width: 36px;
|
61
|
-
height: 36px;
|
62
|
-
z-index: 2;
|
63
|
-
cursor: pointer;
|
64
|
-
}
|
65
|
-
|
66
|
-
input ~ .trigger {
|
67
|
-
clear: both;
|
68
|
-
display: none;
|
69
|
-
}
|
70
|
-
|
71
|
-
input:checked ~ .trigger {
|
72
|
-
display: block;
|
73
|
-
padding-bottom: 5px;
|
74
|
-
}
|
75
|
-
|
76
|
-
.page-link {
|
77
|
-
color: $text-color;
|
78
|
-
line-height: $base-line-height;
|
79
|
-
display: block;
|
80
|
-
padding: 5px 10px;
|
81
|
-
|
82
|
-
// Gaps between nav items, but not on the last one
|
83
|
-
&:not(:last-child) {
|
84
|
-
margin-right: 0;
|
85
|
-
}
|
86
|
-
margin-left: 20px;
|
87
|
-
}
|
88
|
-
|
89
|
-
@media screen and (min-width: $on-medium) {
|
90
|
-
position: static;
|
91
|
-
float: right;
|
92
|
-
border: none;
|
93
|
-
background-color: inherit;
|
94
|
-
|
95
|
-
label[for="nav-trigger"] {
|
96
|
-
display: none;
|
97
|
-
}
|
98
|
-
|
99
|
-
.menu-icon {
|
100
|
-
display: none;
|
101
|
-
}
|
102
|
-
|
103
|
-
input ~ .trigger {
|
104
|
-
display: block;
|
105
|
-
}
|
106
|
-
|
107
|
-
.page-link {
|
108
|
-
display: inline;
|
109
|
-
padding: 0;
|
110
|
-
|
111
|
-
&:not(:last-child) {
|
112
|
-
margin-right: 20px;
|
113
|
-
}
|
114
|
-
margin-left: auto;
|
115
|
-
}
|
116
|
-
}
|
117
|
-
}
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
/**
|
122
|
-
* Site footer
|
123
|
-
*/
|
124
|
-
.site-footer {
|
125
|
-
border-top: 1px solid $brand-color-light;
|
126
|
-
padding: $spacing-unit 0;
|
127
|
-
}
|
128
|
-
|
129
|
-
.footer-heading {
|
130
|
-
@include relative-font-size(1.125);
|
131
|
-
margin-bottom: $spacing-unit / 2;
|
132
|
-
}
|
133
|
-
|
134
|
-
.contact-list,
|
135
|
-
.social-media-list {
|
136
|
-
list-style: none;
|
137
|
-
margin-left: 0;
|
138
|
-
}
|
139
|
-
|
140
|
-
.footer-col-wrapper {
|
141
|
-
@include relative-font-size(0.9375);
|
142
|
-
color: $brand-color;
|
143
|
-
margin-left: -$spacing-unit / 2;
|
144
|
-
@extend %clearfix;
|
145
|
-
}
|
146
|
-
|
147
|
-
.footer-col {
|
148
|
-
width: -webkit-calc(100% - (#{$spacing-unit} / 2));
|
149
|
-
width: calc(100% - (#{$spacing-unit} / 2));
|
150
|
-
margin-bottom: $spacing-unit / 2;
|
151
|
-
padding-left: $spacing-unit / 2;
|
152
|
-
}
|
153
|
-
|
154
|
-
.footer-col-1,
|
155
|
-
.footer-col-2 {
|
156
|
-
width: -webkit-calc(50% - (#{$spacing-unit} / 2));
|
157
|
-
width: calc(50% - (#{$spacing-unit} / 2));
|
158
|
-
}
|
159
|
-
|
160
|
-
.footer-col-3 {
|
161
|
-
width: -webkit-calc(100% - (#{$spacing-unit} / 2));
|
162
|
-
width: calc(100% - (#{$spacing-unit} / 2));
|
163
|
-
}
|
164
|
-
|
165
|
-
@media screen and (min-width: $on-large) {
|
166
|
-
.footer-col-1 {
|
167
|
-
width: -webkit-calc(35% - (#{$spacing-unit} / 2));
|
168
|
-
width: calc(35% - (#{$spacing-unit} / 2));
|
169
|
-
}
|
170
|
-
|
171
|
-
.footer-col-2 {
|
172
|
-
width: -webkit-calc(20% - (#{$spacing-unit} / 2));
|
173
|
-
width: calc(20% - (#{$spacing-unit} / 2));
|
174
|
-
}
|
175
|
-
|
176
|
-
.footer-col-3 {
|
177
|
-
width: -webkit-calc(45% - (#{$spacing-unit} / 2));
|
178
|
-
width: calc(45% - (#{$spacing-unit} / 2));
|
179
|
-
}
|
180
|
-
}
|
181
|
-
|
182
|
-
@media screen and (min-width: $on-medium) {
|
183
|
-
.footer-col {
|
184
|
-
float: left;
|
185
|
-
}
|
186
|
-
}
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
/**
|
191
|
-
* Page content
|
192
|
-
*/
|
193
|
-
.page-content {
|
194
|
-
padding: $spacing-unit 0;
|
195
|
-
flex: 1 0 auto;
|
196
|
-
}
|
197
|
-
|
198
|
-
.page-heading {
|
199
|
-
@include relative-font-size(2);
|
200
|
-
}
|
201
|
-
|
202
|
-
.post-list-heading {
|
203
|
-
@include relative-font-size(1.75);
|
204
|
-
}
|
205
|
-
|
206
|
-
.post-list {
|
207
|
-
margin-left: 0;
|
208
|
-
list-style: none;
|
209
|
-
|
210
|
-
> li {
|
211
|
-
margin-bottom: $spacing-unit;
|
212
|
-
}
|
213
|
-
}
|
214
|
-
|
215
|
-
.post-meta {
|
216
|
-
font-size: $small-font-size;
|
217
|
-
color: $brand-color;
|
218
|
-
}
|
219
|
-
|
220
|
-
.post-link {
|
221
|
-
display: block;
|
222
|
-
@include relative-font-size(1.5);
|
223
|
-
}
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
/**
|
228
|
-
* Posts
|
229
|
-
*/
|
230
|
-
.post-header {
|
231
|
-
margin-bottom: $spacing-unit;
|
232
|
-
}
|
233
|
-
|
234
|
-
.post-title,
|
235
|
-
.post-content h1 {
|
236
|
-
@include relative-font-size(2.625);
|
237
|
-
letter-spacing: -1px;
|
238
|
-
line-height: 1;
|
239
|
-
|
240
|
-
@media screen and (min-width: $on-large) {
|
241
|
-
@include relative-font-size(2.625);
|
242
|
-
}
|
243
|
-
}
|
244
|
-
|
245
|
-
.post-content {
|
246
|
-
margin-bottom: $spacing-unit;
|
247
|
-
|
248
|
-
h2 {
|
249
|
-
@include relative-font-size(1.75);
|
250
|
-
|
251
|
-
@media screen and (min-width: $on-large) {
|
252
|
-
@include relative-font-size(2);
|
253
|
-
}
|
254
|
-
}
|
255
|
-
|
256
|
-
h3 {
|
257
|
-
@include relative-font-size(1.375);
|
258
|
-
|
259
|
-
@media screen and (min-width: $on-large) {
|
260
|
-
@include relative-font-size(1.625);
|
261
|
-
}
|
262
|
-
}
|
263
|
-
|
264
|
-
h4 {
|
265
|
-
@include relative-font-size(1.125);
|
266
|
-
|
267
|
-
@media screen and (min-width: $on-large) {
|
268
|
-
@include relative-font-size(1.25);
|
269
|
-
}
|
270
|
-
}
|
271
|
-
}
|
272
|
-
|
273
|
-
|
274
|
-
.social-media-list {
|
275
|
-
display: table;
|
276
|
-
margin: 0 auto;
|
277
|
-
li {
|
278
|
-
float: left;
|
279
|
-
margin: 0 5px;
|
280
|
-
&:first-of-type { margin-left: 0 }
|
281
|
-
&:last-of-type { margin-right: 0 }
|
282
|
-
a {
|
283
|
-
display: block;
|
284
|
-
padding: $spacing-unit / 4;
|
285
|
-
border: 1px solid $brand-color-light
|
286
|
-
}
|
287
|
-
&:hover .svg-icon { fill: currentColor; }
|
288
|
-
}
|
289
|
-
}
|
290
|
-
|
291
|
-
|
292
|
-
/**
|
293
|
-
* Grid helpers
|
294
|
-
*/
|
295
|
-
@media screen and (min-width: $on-large) {
|
296
|
-
.one-half {
|
297
|
-
width: -webkit-calc(50% - (#{$spacing-unit} / 2));
|
298
|
-
width: calc(50% - (#{$spacing-unit} / 2));
|
299
|
-
}
|
300
|
-
}
|