jekyll-theme-nangka 0.1.0
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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_includes/footer.html +17 -0
- data/_includes/head.html +12 -0
- data/_includes/header.html +35 -0
- data/_includes/partial/analytics.html +10 -0
- data/_includes/partial/breadcrumb.html +37 -0
- data/_includes/partial/disqus.html +23 -0
- data/_includes/partial/manifest.html +52 -0
- data/_includes/partial/mini-bio.html +16 -0
- data/_includes/partial/post-item.html +40 -0
- data/_includes/partial/scrimage.html +26 -0
- data/_includes/svg/icon-facebook.svg +1 -0
- data/_includes/svg/icon-github.html +1 -0
- data/_includes/svg/icon-github.svg +1 -0
- data/_includes/svg/icon-twitter.html +1 -0
- data/_includes/svg/icon-twitter.svg +1 -0
- data/_layouts/blog.html +21 -0
- data/_layouts/compress.html +9 -0
- data/_layouts/default.html +17 -0
- data/_layouts/home.html +11 -0
- data/_layouts/page.html +11 -0
- data/_layouts/post.html +50 -0
- data/_sass/_base.scss +298 -0
- data/_sass/_layout.scss +270 -0
- data/_sass/_normalize.scss +525 -0
- data/_sass/_syntax-highlighting.scss +204 -0
- data/_sass/print.scss +102 -0
- data/assets/404.html +24 -0
- data/assets/blog.json +5 -0
- data/assets/browserconfig.xml +15 -0
- data/assets/crossdomain.xml +19 -0
- data/assets/css/main.scss +56 -0
- data/assets/humans.txt +21 -0
- data/assets/icons/114.png +0 -0
- data/assets/icons/120.png +0 -0
- data/assets/icons/144.png +0 -0
- data/assets/icons/150.png +0 -0
- data/assets/icons/152.png +0 -0
- data/assets/icons/16.png +0 -0
- data/assets/icons/180.png +0 -0
- data/assets/icons/192.png +0 -0
- data/assets/icons/256.png +0 -0
- data/assets/icons/310.png +0 -0
- data/assets/icons/32.png +0 -0
- data/assets/icons/36.png +0 -0
- data/assets/icons/48.png +0 -0
- data/assets/icons/512.png +0 -0
- data/assets/icons/57.png +0 -0
- data/assets/icons/60.png +0 -0
- data/assets/icons/70.png +0 -0
- data/assets/icons/72.png +0 -0
- data/assets/icons/76.png +0 -0
- data/assets/icons/96.png +0 -0
- data/assets/icons/favicon.ico +0 -0
- data/assets/icons/icon.svg +31 -0
- data/assets/images/avatar.jpg +0 -0
- data/assets/js/app.js +35 -0
- data/assets/js/sw.js +174 -0
- data/assets/manifest.json +70 -0
- data/assets/opensearch.xml +13 -0
- data/assets/robots.txt +7 -0
- data/assets/search.html +16 -0
- metadata +261 -0
data/_sass/_base.scss
ADDED
|
@@ -0,0 +1,298 @@
|
|
|
1
|
+
html {
|
|
2
|
+
font: 100%/1.625 -apple-system,'BlinkMacSystemFont','Segoe UI','Roboto','Helvetica','Arial',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol';
|
|
3
|
+
box-sizing: border-box;
|
|
4
|
+
overflow-y: scroll;
|
|
5
|
+
overflow-x: hidden;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
* {
|
|
9
|
+
box-sizing: inherit;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
*:before {
|
|
13
|
+
box-sizing: inherit;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
*:after {
|
|
17
|
+
box-sizing: inherit;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
body {
|
|
21
|
+
color: hsla(0, 0%, 0%, 0.8);
|
|
22
|
+
font-family: -apple-system,'BlinkMacSystemFont','Segoe UI','Roboto','Helvetica','Arial',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol';
|
|
23
|
+
font-weight: normal;
|
|
24
|
+
word-wrap: break-word;
|
|
25
|
+
font-kerning: normal;
|
|
26
|
+
-moz-font-feature-settings: "kern", "liga", "clig", "calt";
|
|
27
|
+
-ms-font-feature-settings: "kern", "liga", "clig", "calt";
|
|
28
|
+
-webkit-font-feature-settings: "kern", "liga", "clig", "calt";
|
|
29
|
+
font-feature-settings: "kern", "liga", "clig", "calt";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
img {
|
|
33
|
+
max-width: 100%;
|
|
34
|
+
margin-bottom: 0.8125rem;
|
|
35
|
+
padding: 0;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
h1, h2, h3, h4, h5, h6 {
|
|
39
|
+
font-family: -apple-system,'BlinkMacSystemFont','Segoe UI','Roboto','Helvetica','Arial',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol';
|
|
40
|
+
text-rendering: optimizeLegibility;
|
|
41
|
+
font-weight: 600;
|
|
42
|
+
line-height: 1.1;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
h1 {
|
|
46
|
+
margin: 2.4375rem 0 1.21875rem 0;
|
|
47
|
+
padding: 0 0 calc(0.40625rem - 1px) 0;
|
|
48
|
+
color: inherit;
|
|
49
|
+
font-size: 2rem;
|
|
50
|
+
border-bottom: 1px solid hsla(0, 0%, 0%, 0.07);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
h2 {
|
|
54
|
+
margin: 24px 0 16px 0;
|
|
55
|
+
padding: 0 0 calc(0.40625rem - 1px) 0;
|
|
56
|
+
color: inherit;
|
|
57
|
+
font-size: 1.51572rem;
|
|
58
|
+
border-bottom: 1px solid hsla(0, 0%, 0%, 0.07);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
h3 {
|
|
62
|
+
padding: 0;
|
|
63
|
+
margin: 0 0 0.8125rem 0;
|
|
64
|
+
color: inherit;
|
|
65
|
+
font-size: 1.31951rem;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
h4 {
|
|
69
|
+
padding: 0;
|
|
70
|
+
margin: 0 0 0.8125rem 0;
|
|
71
|
+
color: inherit;
|
|
72
|
+
font-size: 1rem;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
h5 {
|
|
76
|
+
padding: 0;
|
|
77
|
+
margin: 0 0 0.8125rem 0;
|
|
78
|
+
color: inherit;
|
|
79
|
+
font-size: 0.87055rem;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
h6 {
|
|
83
|
+
padding: 0;
|
|
84
|
+
margin: 0 0 0.8125rem 0;
|
|
85
|
+
color: hsla(0, 0%, 0%, 0.53);
|
|
86
|
+
font-size: 0.81225rem;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
hgroup {
|
|
90
|
+
padding: 0;
|
|
91
|
+
margin: 0 0 0.8125rem 0;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
ul, ol {
|
|
95
|
+
margin: 0 0 0.8125rem 1.625rem;
|
|
96
|
+
padding: 0;
|
|
97
|
+
list-style-position: outside;
|
|
98
|
+
list-style-image: none;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
dl, dd, p, figure, fieldset, form, noscript, iframe {
|
|
102
|
+
padding: 0;
|
|
103
|
+
margin: 0 0 0.8125rem 0;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
pre {
|
|
107
|
+
margin-left: 0;
|
|
108
|
+
margin-right: 0;
|
|
109
|
+
margin-top: 0;
|
|
110
|
+
padding-bottom: 0;
|
|
111
|
+
padding-left: 0;
|
|
112
|
+
padding-right: 0;
|
|
113
|
+
padding-top: 0;
|
|
114
|
+
margin-bottom: 0.8125rem;
|
|
115
|
+
font-size: 0.85rem;
|
|
116
|
+
line-height: 1.625rem;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
table {
|
|
120
|
+
margin-left: 0;
|
|
121
|
+
margin-right: 0;
|
|
122
|
+
margin-top: 0;
|
|
123
|
+
padding-bottom: 0;
|
|
124
|
+
padding-left: 0;
|
|
125
|
+
padding-right: 0;
|
|
126
|
+
padding-top: 0;
|
|
127
|
+
margin-bottom: 0.8125rem;
|
|
128
|
+
font-size: 1rem;
|
|
129
|
+
line-height: 1.625rem;
|
|
130
|
+
border-collapse: collapse;
|
|
131
|
+
width: 100%;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
blockquote {
|
|
135
|
+
margin-left: 0;
|
|
136
|
+
margin-right: 0;
|
|
137
|
+
margin-top: 0;
|
|
138
|
+
padding-bottom: 0;
|
|
139
|
+
padding-left: calc(0.8125rem - 1px);
|
|
140
|
+
padding-right: 0;
|
|
141
|
+
padding-top: 0;
|
|
142
|
+
margin-bottom: 0.8125rem;
|
|
143
|
+
border-left: 4px solid hsla(0, 0%, 0%, 0.13);
|
|
144
|
+
color: hsla(0, 0%, 0%, 0.53);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
hr {
|
|
148
|
+
padding: 0;
|
|
149
|
+
margin: 40px 0;
|
|
150
|
+
background: rgba(0, 0, 0, 0.07);
|
|
151
|
+
border: none;
|
|
152
|
+
height: 1px;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
address {
|
|
156
|
+
margin-left: 0;
|
|
157
|
+
margin-right: 0;
|
|
158
|
+
margin-top: 0;
|
|
159
|
+
padding-bottom: 0;
|
|
160
|
+
padding-left: 0;
|
|
161
|
+
padding-right: 0;
|
|
162
|
+
padding-top: 0;
|
|
163
|
+
margin-bottom: 0.8125rem;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
b {
|
|
167
|
+
font-weight: 600;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
strong {
|
|
171
|
+
font-weight: 600;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
dt {
|
|
175
|
+
font-weight: 600;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
th {
|
|
179
|
+
font-weight: 600;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
li {
|
|
183
|
+
margin-bottom: calc(0.8125rem / 2);
|
|
184
|
+
padding-left: 0;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
li > ol, li > ul {
|
|
188
|
+
margin-left: 1.625rem;
|
|
189
|
+
margin-bottom: calc(0.8125rem / 2);
|
|
190
|
+
margin-top: calc(0.8125rem / 2);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
blockquote *:last-child, li *:last-child, p *:last-child {
|
|
194
|
+
margin-bottom: 0;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
li > p {
|
|
198
|
+
margin-bottom: calc(0.8125rem / 2);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
code, samp, kbd {
|
|
202
|
+
font-size: 0.85rem;
|
|
203
|
+
line-height: 1.625rem;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
abbr, acronym {
|
|
207
|
+
border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5);
|
|
208
|
+
cursor: help;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
abbr[title] {
|
|
212
|
+
border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5);
|
|
213
|
+
cursor: help;
|
|
214
|
+
text-decoration: none;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
thead {
|
|
218
|
+
text-align: left;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
td, th {
|
|
222
|
+
text-align: left;
|
|
223
|
+
border-bottom: 1px solid hsla(0, 0%, 0%, 0.12);
|
|
224
|
+
font-feature-settings: "tnum";
|
|
225
|
+
-moz-font-feature-settings: "tnum";
|
|
226
|
+
-ms-font-feature-settings: "tnum";
|
|
227
|
+
-webkit-font-feature-settings: "tnum";
|
|
228
|
+
padding-left: 1.08333rem;
|
|
229
|
+
padding-right: 1.08333rem;
|
|
230
|
+
padding-top: 0.8125rem;
|
|
231
|
+
padding-bottom: calc(0.8125rem - 1px);
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
th:first-child, td:first-child {
|
|
235
|
+
padding-left: 0;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
th:last-child, td:last-child {
|
|
239
|
+
padding-right: 0;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
h3, h4, h5, h6 {
|
|
243
|
+
margin-bottom: 0.8125rem;
|
|
244
|
+
margin-top: 1.625rem;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
ol, ul {
|
|
248
|
+
margin-left: 2.03125rem;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
li > ol, li > ul {
|
|
252
|
+
margin-left: 2.03125rem;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
a {
|
|
256
|
+
color: #4078c0;
|
|
257
|
+
text-decoration: none;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
a:hover, a:active {
|
|
261
|
+
text-decoration: underline;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
/**
|
|
265
|
+
* Code formatting
|
|
266
|
+
*/
|
|
267
|
+
pre,
|
|
268
|
+
code {
|
|
269
|
+
//font-family: Menlo,Monaco,Courier;
|
|
270
|
+
//font-size: 85%;
|
|
271
|
+
background-color: #f7f7f7;
|
|
272
|
+
font: 14px Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
code {
|
|
276
|
+
padding: 1px 5px;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
pre {
|
|
280
|
+
padding: 16px;
|
|
281
|
+
overflow-x: auto;
|
|
282
|
+
|
|
283
|
+
> code {
|
|
284
|
+
border: 0;
|
|
285
|
+
padding-right: 0;
|
|
286
|
+
padding-left: 0;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
::-webkit-scrollbar {
|
|
291
|
+
width: 8px;
|
|
292
|
+
height: 9px;
|
|
293
|
+
background: #f7f7f7;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
::-webkit-scrollbar-thumb {
|
|
297
|
+
background: #e3e3e3;
|
|
298
|
+
}
|
data/_sass/_layout.scss
ADDED
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
.wrapper {
|
|
2
|
+
max-width: $content-width;
|
|
3
|
+
margin: 0 auto;
|
|
4
|
+
padding: 2.4rem 1.2rem;
|
|
5
|
+
height: 100vh;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.hidden, .breadcrumb {
|
|
9
|
+
display: none;
|
|
10
|
+
visibility: hidden;
|
|
11
|
+
width: 0;
|
|
12
|
+
height: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.site-header {
|
|
16
|
+
position: relative;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
h1 ~ .site-nav {
|
|
20
|
+
top: 3px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
h3 ~ .site-nav {
|
|
24
|
+
top: 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.site-nav {
|
|
28
|
+
position: absolute;
|
|
29
|
+
text-align: right;
|
|
30
|
+
right: 0;
|
|
31
|
+
padding: 5px 10px;
|
|
32
|
+
background-color: #ebeef2;
|
|
33
|
+
|
|
34
|
+
@include media-query($on-palm) {
|
|
35
|
+
background: none;
|
|
36
|
+
padding: 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
border-radius: 2px;
|
|
41
|
+
|
|
42
|
+
a {
|
|
43
|
+
padding: 0 .41rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
label {
|
|
47
|
+
@include media-query($on-palm) {
|
|
48
|
+
display: none;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.nav-links {
|
|
54
|
+
display: none;
|
|
55
|
+
|
|
56
|
+
@include media-query($on-palm) {
|
|
57
|
+
display: block;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
#nav-trigger {
|
|
62
|
+
&:checked ~ .nav-links {
|
|
63
|
+
display: block;
|
|
64
|
+
|
|
65
|
+
a {
|
|
66
|
+
display: block;
|
|
67
|
+
padding: 0;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.site-title {
|
|
73
|
+
margin-top: 0;
|
|
74
|
+
|
|
75
|
+
a {
|
|
76
|
+
color: inherit;
|
|
77
|
+
text-decoration: none;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.post-title {
|
|
82
|
+
margin-top: .68em;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.post-meta {
|
|
86
|
+
margin-bottom: 1.5rem;
|
|
87
|
+
display: block;
|
|
88
|
+
}
|
|
89
|
+
.cover{
|
|
90
|
+
max-width: 100vw;
|
|
91
|
+
position: relative;
|
|
92
|
+
margin-right: -50vw;
|
|
93
|
+
right: 50%;
|
|
94
|
+
margin-left: -50vw;
|
|
95
|
+
left: 50%;
|
|
96
|
+
text-align: center;
|
|
97
|
+
font-style: italic;
|
|
98
|
+
font-size: small;
|
|
99
|
+
font-weight: bold;
|
|
100
|
+
color: rgb(104, 104, 104);
|
|
101
|
+
}
|
|
102
|
+
.post-content{
|
|
103
|
+
img{
|
|
104
|
+
display: block;
|
|
105
|
+
margin: 0 auto;
|
|
106
|
+
// max-width: $content-width + 12rem;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
.post-item {
|
|
110
|
+
display: block;
|
|
111
|
+
position: relative;
|
|
112
|
+
margin: 20px 0;
|
|
113
|
+
padding: 0;
|
|
114
|
+
overflow: hidden;
|
|
115
|
+
max-height: 300px;
|
|
116
|
+
h3{
|
|
117
|
+
margin-top: 0px;
|
|
118
|
+
}
|
|
119
|
+
&:hover{
|
|
120
|
+
text-decoration: none;
|
|
121
|
+
& > h3{
|
|
122
|
+
text-decoration: underline;
|
|
123
|
+
}
|
|
124
|
+
img{
|
|
125
|
+
-webkit-filter: saturate(3);
|
|
126
|
+
filter: saturate(3);
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
*:not(h3){
|
|
130
|
+
margin: 0;
|
|
131
|
+
padding: 0;
|
|
132
|
+
color: #1E2025;
|
|
133
|
+
}
|
|
134
|
+
img{
|
|
135
|
+
width: 100%;
|
|
136
|
+
margin:0;
|
|
137
|
+
min-height: 200px;
|
|
138
|
+
object-fit:cover;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.image-caption{
|
|
142
|
+
width: 100%;
|
|
143
|
+
position: absolute;
|
|
144
|
+
bottom: 7px;
|
|
145
|
+
display: block;
|
|
146
|
+
padding: 50px 8px 15px 8px;
|
|
147
|
+
* {
|
|
148
|
+
display: block;
|
|
149
|
+
position: relative;
|
|
150
|
+
z-index: 10;
|
|
151
|
+
|
|
152
|
+
& > *{
|
|
153
|
+
display: inline;
|
|
154
|
+
background: #fff;
|
|
155
|
+
box-shadow: 8px 0 #fff, -8px 0 #fff;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
#disqus_thread {
|
|
163
|
+
margin: 2rem 0 auto;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.pagination {
|
|
167
|
+
width: 100%;
|
|
168
|
+
overflow: auto;
|
|
169
|
+
padding-top: 1rem;
|
|
170
|
+
|
|
171
|
+
.prev {
|
|
172
|
+
float: left;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.next {
|
|
176
|
+
float: right;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.site-footer {
|
|
181
|
+
padding: 1em 0;
|
|
182
|
+
margin-top: 1em;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.mini-bio {
|
|
186
|
+
width: 100%;
|
|
187
|
+
display: block;
|
|
188
|
+
overflow: auto;
|
|
189
|
+
font-size: 13px;
|
|
190
|
+
font-weight: bold;
|
|
191
|
+
line-height: 1.4;
|
|
192
|
+
border-top: 1px solid #eee;
|
|
193
|
+
padding: 30px 0;
|
|
194
|
+
margin: 40px 0;
|
|
195
|
+
color: #444;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.author {
|
|
199
|
+
float: left;
|
|
200
|
+
|
|
201
|
+
.avatar {
|
|
202
|
+
height: 36px;
|
|
203
|
+
width: 36px;
|
|
204
|
+
float: left;
|
|
205
|
+
border-radius: 50%;
|
|
206
|
+
margin-top: 3px;
|
|
207
|
+
margin-right: 20px;
|
|
208
|
+
box-shadow: 0 0 0 3px #fff, 0 0 0 4px #eee;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
div {
|
|
212
|
+
margin: 0 25px 0 0;
|
|
213
|
+
float: left;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
span {
|
|
217
|
+
color: #aaa;
|
|
218
|
+
font-weight: 500;
|
|
219
|
+
display: block;
|
|
220
|
+
|
|
221
|
+
&.name {
|
|
222
|
+
color: #1E2025;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.share {
|
|
228
|
+
float: right;
|
|
229
|
+
|
|
230
|
+
a {
|
|
231
|
+
font-size: 13px;
|
|
232
|
+
font-weight: bold;
|
|
233
|
+
color: #fff;
|
|
234
|
+
padding: 6px 10px;
|
|
235
|
+
border-radius: 4px;
|
|
236
|
+
margin-left: 2px;
|
|
237
|
+
display: inline-block;
|
|
238
|
+
|
|
239
|
+
svg {
|
|
240
|
+
width: 13px;
|
|
241
|
+
height: 13px;
|
|
242
|
+
|
|
243
|
+
path {
|
|
244
|
+
fill: #fff;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
&.twitter {
|
|
249
|
+
background: #4fafed;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
&.facebook {
|
|
253
|
+
background: #4361b3;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
#___gcse_0 *:not(.gsc-above-wrapper-area) {
|
|
259
|
+
border: none !important;
|
|
260
|
+
padding: 0 !important;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.gsc-selected-option-container {
|
|
264
|
+
max-width: 100% !important;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.gcsc-branding {
|
|
268
|
+
display: none !important;
|
|
269
|
+
}
|
|
270
|
+
|