jekyll-theme-kagami 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +94 -0
  4. data/_includes/disqus.html +17 -0
  5. data/_includes/footer.html +23 -0
  6. data/_includes/google-analytics.html +11 -0
  7. data/_includes/head.html +23 -0
  8. data/_includes/header.html +22 -0
  9. data/_layouts/blank.html +5 -0
  10. data/_layouts/default.html +15 -0
  11. data/_layouts/home.html +5 -0
  12. data/_layouts/page.html +9 -0
  13. data/_layouts/post-list.html +40 -0
  14. data/_layouts/post.html +42 -0
  15. data/_sass/kagami.scss +23 -0
  16. data/_sass/kagami/_layout.scss +163 -0
  17. data/_sass/kagami/_reset.scss +2 -0
  18. data/_sass/kagami/_scut.scss +1533 -0
  19. data/_sass/kagami/_typeface.scss +80 -0
  20. data/_sass/kagami/_typography.scss +235 -0
  21. data/_sass/kagami/_utility.scss +18 -0
  22. data/assets/font/fontello.eot +0 -0
  23. data/assets/font/fontello.svg +86 -0
  24. data/assets/font/fontello.ttf +0 -0
  25. data/assets/font/fontello.woff +0 -0
  26. data/assets/font/fontello.woff2 +0 -0
  27. data/assets/styles/core.scss +4 -0
  28. data/assets/styles/fontello.css +95 -0
  29. data/assets/styles/highlighting/README.md +23 -0
  30. data/assets/styles/highlighting/UNLICENSE.txt +24 -0
  31. data/assets/styles/highlighting/autumn.css +58 -0
  32. data/assets/styles/highlighting/borland.css +46 -0
  33. data/assets/styles/highlighting/bw.css +34 -0
  34. data/assets/styles/highlighting/colorful.css +61 -0
  35. data/assets/styles/highlighting/default.css +61 -0
  36. data/assets/styles/highlighting/emacs.css +61 -0
  37. data/assets/styles/highlighting/friendly.css +61 -0
  38. data/assets/styles/highlighting/fruity.css +70 -0
  39. data/assets/styles/highlighting/github.css +61 -0
  40. data/assets/styles/highlighting/manni.css +61 -0
  41. data/assets/styles/highlighting/monokai.css +65 -0
  42. data/assets/styles/highlighting/murphy.css +61 -0
  43. data/assets/styles/highlighting/native.css +70 -0
  44. data/assets/styles/highlighting/pastie.css +60 -0
  45. data/assets/styles/highlighting/perldoc.css +58 -0
  46. data/assets/styles/highlighting/tango.css +69 -0
  47. data/assets/styles/highlighting/trac.css +59 -0
  48. data/assets/styles/highlighting/vim.css +70 -0
  49. data/assets/styles/highlighting/vs.css +33 -0
  50. data/assets/styles/highlighting/zenburn.css +136 -0
  51. metadata +135 -0
@@ -0,0 +1,80 @@
1
+ @import url('https://fonts.googleapis.com/css?family=Crimson+Text:400,700|Press+Start+2P');
2
+
3
+ @font-face {
4
+ font-family: "Kagami SC";
5
+ src: local("Songti SC Regular"), local(STSongti-SC-Regular);
6
+ font-weight: normal;
7
+ font-style: normal;
8
+ }
9
+
10
+ @font-face {
11
+ font-family: "Kagami SC";
12
+ src: local("Songti SC Bold"), local(STSongti-SC-Bold);
13
+ font-weight: bold;
14
+ font-style: normal;
15
+ }
16
+
17
+ // @font-face {
18
+ // font-family: "Kagami SC";
19
+ // src: local("Kaiti SC Regular"), local(STKaiti-SC-Regular);
20
+ // font-weight: normal;
21
+ // font-style: italic;
22
+ // }
23
+
24
+ // @font-face {
25
+ // font-family: "Kagami SC";
26
+ // src: local("Kaiti SC Bold"), local(STKaiti-SC-Bold);
27
+ // font-weight: bold;
28
+ // font-style: italic;
29
+ // }
30
+
31
+ @font-face {
32
+ font-family: "Kagami TC";
33
+ src: local("Songti TC Regular"), local(STSongti-TC-Regular);
34
+ font-weight: normal;
35
+ font-style: normal;
36
+ }
37
+
38
+ @font-face {
39
+ font-family: "Kagami TC";
40
+ src: local("Songti TC Bold"), local(STSongti-TC-Bold);
41
+ font-weight: bold;
42
+ font-style: normal;
43
+ }
44
+
45
+ @font-face {
46
+ font-family: "Kagami Emoji";
47
+ src: local("Apple Color Emoji"), // iOS & OS X 10.7
48
+ local("Segoe UI Emoji"), // Windows 8.1
49
+ local("Segoe UI Symbol"), // Windows 7
50
+ local("Noto Color Emoji"), // Android & Linux
51
+ local("Android Emoji"); // Linux
52
+ }
53
+
54
+ @mixin font-sans {
55
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Kagami Emoji";
56
+ }
57
+
58
+ @mixin font-serif($font-family-fallback: serif) {
59
+ font-family: "Crimson Text", $font-family-fallback, "Kagami Emoji";
60
+ }
61
+
62
+ @mixin font-serif-zh-Hans($font-family-fallback: sans-serif) {
63
+ font-family: "Crimson Text", "Kagami SC", $font-family-fallback, "Kagami Emoji";
64
+ }
65
+
66
+ @mixin font-serif-zh-Hant($font-family-fallback: sans-serif) {
67
+ font-family: "Crimson Text", "Kagami TC", $font-family-fallback, "Kagami Emoji";
68
+ }
69
+
70
+ @mixin font-serif-ja($font-family-fallback: sans-serif) {
71
+ font-family: "Crimson Text", "YuMincho", $font-family-fallback, "Kagami Emoji";
72
+ }
73
+
74
+ @mixin font-monospace($font-family-fallback: monospace) {
75
+ font-family: Courier, Monaco, $font-family-fallback;
76
+ }
77
+
78
+ @function font-size($factor: 1.0) {
79
+ @return $font-size * $factor;
80
+ }
@@ -0,0 +1,235 @@
1
+ [lang^="en"] { line-height: 1.6; @include font-serif; }
2
+ [lang^="zh-Hans"] { line-height: 1.8; @include font-serif-zh-Hans; }
3
+ [lang^="zh-Hant"] { line-height: 1.8; @include font-serif-zh-Hant; }
4
+ [lang^="ja"] { line-height: 1.8; @include font-serif-ja; }
5
+
6
+ body {
7
+ color: $content-color;
8
+ font-size: font-size();
9
+ font-weight: 300;
10
+ font-kerning: normal;
11
+ }
12
+
13
+ a, a:hover, a:visited {
14
+ @include scut-link-unstyled;
15
+ }
16
+
17
+ img { max-width: 100%; }
18
+
19
+ h1, h2, h3, h4, h5, h6, p {
20
+ display: block;
21
+ }
22
+
23
+ h1 { font-size: 2.0em; }
24
+ h2 { font-weight: bold; font-size: 1.4em; }
25
+ h3 { font-weight: bold; font-size: 1.2em; }
26
+ h4 { font-weight: bold; }
27
+ h5 { font-weight: bold; }
28
+
29
+ article {
30
+
31
+ h2, h3, h4, h5, h6 {
32
+ &::before {
33
+ content: "#";
34
+ display: inline-block;
35
+ text-align: right;
36
+ width: font-size(5);
37
+ margin-left: font-size(-5.5);
38
+ margin-right: font-size(0.5);
39
+ opacity: 0.08;
40
+ }
41
+ }
42
+
43
+ h3::before { content: "##"; }
44
+ h4::before { content: "###"; }
45
+ h5::before { content: "####"; }
46
+ h6::before { content: "#####"; }
47
+
48
+ p {
49
+ hanging-punctuation: allow-end; // no browser supports this rule
50
+ }
51
+
52
+ .aside, .sidenote {
53
+ font-size: .72em;
54
+ }
55
+
56
+ em {
57
+ font-style: italic;
58
+ }
59
+
60
+ strong {
61
+ font-weight: bold;
62
+ }
63
+
64
+ a, a:hover, a:visited {
65
+ border-bottom: 1px dotted currentColor;
66
+ }
67
+
68
+ img.half-size, img.retina2x {
69
+ zoom: 0.5;
70
+ }
71
+
72
+ ul,
73
+ ol { padding-left: 2.0em; }
74
+ ul { list-style-type: disc; }
75
+ ul ul { list-style-type: circle; }
76
+ ul ul ul { list-style-type: square; }
77
+ ol { list-style-type: decimal; }
78
+
79
+ blockquote {
80
+ font-style: italic;
81
+ }
82
+
83
+ code {
84
+ display: inline-block;
85
+ padding: 0 0.3em;
86
+ margin: 0 -0.05em;
87
+ font-size: 0.875em;
88
+ @include font-monospace;
89
+ color: $inline-code-color;
90
+ background: $inline-code-background;
91
+ border-radius: 3px;
92
+ }
93
+
94
+ pre {
95
+ color: lighten($content-color, 20%);
96
+ background: $block-code-background;
97
+ code {
98
+ margin: 0;
99
+ padding: 0;
100
+ color: inherit;
101
+ background: none;
102
+ line-height: 1.6;
103
+ }
104
+ }
105
+
106
+ mark {
107
+ color: inherit;
108
+ background: $mark-background;
109
+ }
110
+
111
+ hr {
112
+ border: none;
113
+ border-bottom: 1px solid $border-color;
114
+ width: 30%;
115
+ }
116
+ }
117
+
118
+ .site-title, .site-title:hover, .site-title:visited {
119
+ display: inline-block;
120
+ font-variant-caps: all-petite-caps;
121
+ font-size: 0.875em;
122
+ @include font-serif;
123
+ border-bottom: none;
124
+ white-space: nowrap;
125
+ }
126
+
127
+ .site-nav {
128
+ @include font-sans;
129
+ font-size: 0.875em;
130
+ margin-top: $spacing-unit / 8;
131
+ }
132
+
133
+ .post-title {
134
+ word-break: keep-all;
135
+ margin-top: -0.5 * $font-size;
136
+ }
137
+
138
+ .post-cover {
139
+ position: relative;
140
+ width: 100vw;
141
+ max-height: 40vh;
142
+ margin-left: 50%;
143
+ transform: translateX(-50%);
144
+ overflow-y: hidden;
145
+
146
+ .post-cover-wrapper {
147
+ max-height: inherit;
148
+ position: relative;
149
+ transform: translateY(50%);
150
+ }
151
+
152
+ img {
153
+ width: 100%;
154
+ margin: 0 !important;
155
+ transform: translateY(-50%);
156
+ }
157
+ }
158
+
159
+ .post-footer {
160
+ color: lighten($content-color, 50%);
161
+ font-size: 0.875em;
162
+ @include scut-clearfix;
163
+
164
+ .post-meta { float: left; }
165
+ .post-tags { float: right; }
166
+
167
+ .post-tags {
168
+ &::before { content: 'Tags: ' }
169
+ @include scut-list-punctuated(" / ");
170
+ .tag-link {
171
+ transition: color 0.2s ease-out;
172
+ &:hover { color: lighten($content-color, 20%); }
173
+ }
174
+ }
175
+ }
176
+
177
+ .social-link {
178
+ $size: 2em;
179
+ display: inline-block;
180
+ width: $size;
181
+ height: $size;
182
+ line-height: $size;
183
+ transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
184
+ }
185
+
186
+ .social-link:hover {
187
+ transform: translateY(-0.25em);
188
+ &.social-github { color: #333; }
189
+ &.social-twitter { color: #1da1f2; }
190
+ &.social-instagram { color: #e1306c; }
191
+ &.social-rss { color: #f26522; }
192
+ }
193
+
194
+ .credits {
195
+ color: lighten($content-color, 50%);
196
+ font-size: 0.68em;
197
+ }
198
+
199
+ .post-list {
200
+ @include scut-list-unstyled;
201
+ }
202
+
203
+ .post-item-link {
204
+ font-size: 1.4em;
205
+ }
206
+
207
+ .post-description {
208
+ font-size: 0.875em;
209
+ }
210
+
211
+ .post-item-meta {
212
+ font-variant-caps: all-petite-caps;
213
+ color: lighten($content-color, 40%);
214
+ }
215
+
216
+ .cover-meta {
217
+ font-family: "Press Start 2P", cursive;
218
+ font-variant-caps: all-petite-caps;
219
+ font-size: 0.4em;
220
+ color: #fff;
221
+ }
222
+
223
+ .site-title, .site-title:visited, .site-title:hover {
224
+ margin-left: 3px;
225
+ }
226
+
227
+ [lang^="zh"] {
228
+ .post-item-link {
229
+ margin-left: -2px;
230
+ }
231
+ h1 { margin-left: -1px; }
232
+ h2 { margin-left: -2px; }
233
+ h3 { margin-left: -2px; }
234
+ }
235
+
@@ -0,0 +1,18 @@
1
+ @mixin exdent-horizontally($size) {
2
+ margin-left: -$size;
3
+ margin-right: -$size;
4
+ & > * {
5
+ padding-left: $size;
6
+ padding-right: $size;
7
+ }
8
+ }
9
+
10
+ @mixin exdent-vertically($size) {
11
+ margin-top: -$size;
12
+ margin-bottom: -$size;
13
+ & > * {
14
+ padding-top: $size;
15
+ padding-bottom: $size;
16
+ }
17
+ }
18
+
Binary file
@@ -0,0 +1,86 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Copyright (C) 2017 by original authors @ fontello.com</metadata>
5
+ <defs>
6
+ <font id="fontello" horiz-adv-x="1000" >
7
+ <font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
8
+ <missing-glyph horiz-adv-x="1000" />
9
+ <glyph glyph-name="heart" unicode="&#xe800;" d="M500-79q-14 0-25 10l-348 336q-5 5-15 15t-31 37-38 54-30 67-13 77q0 123 71 192t196 70q34 0 70-12t67-33 54-38 42-38q20 20 42 38t54 38 67 33 70 12q125 0 196-70t71-192q0-123-128-251l-347-335q-10-10-25-10z" horiz-adv-x="1000" />
10
+
11
+ <glyph glyph-name="google-plus" unicode="&#xf05a;" d="M0 57q0-39 17-68 30-55 105-82 63-26 136-26t133 20 100 52 60 74 22 87q0 63-34 108-26 36-69 68-15 11-32 28-34 28-34 55 0 32 45 73 15 13 37 36 19 21 32 54t12 72q0 51-22 96t-62 70h76l76 44h-246q-53 0-106-10-78-18-131-81t-53-141q0-82 59-138t145-55q8 0 39 3-2-6-9-24-4-11-4-25 0-38 36-84-37 0-84-7-110-18-169-60-34-25-55-64t-20-75z m104 26q0 34 16 61 27 47 94 68 58 18 120 18 9 0 28-2 1 0 16-11t20-13q14-9 36-27 1-2 9-9t13-12 8-10q2-2 3-5t4-6 5-7q6-9 10-19 7-24 7-43 0-35-15-61t-42-42q-50-30-120-30-76 0-139 35-33 17-53 47t-20 68z m61 563q0 57 30 94t81 38q36 0 66-22t48-60q36-74 36-145 0-59-26-91t-77-33q-28 0-55 15-45 25-76 90-27 57-27 114z m412-43h144v-145h72v145h144v72h-144v143h-72v-143h-144v-72z" horiz-adv-x="937.5" />
12
+
13
+ <glyph glyph-name="twitter" unicode="&#xf099;" d="M904 622q-37-54-90-93 0-8 0-23 0-73-21-145t-64-139-103-117-144-82-181-30q-151 0-276 81 19-2 43-2 126 0 224 77-59 1-105 36t-64 89q19-3 34-3 24 0 48 6-63 13-104 62t-41 115v2q38-21 82-23-37 25-59 64t-22 86q0 49 25 91 68-83 164-133t208-55q-5 21-5 41 0 75 53 127t127 53q79 0 132-57 61 12 115 44-21-64-80-100 52 6 104 28z" horiz-adv-x="928.6" />
14
+
15
+ <glyph glyph-name="rss" unicode="&#xf09e;" d="M214 100q0-45-31-76t-76-31-76 31-31 76 31 76 76 31 76-31 31-76z m286-69q1-15-9-26-10-12-27-12h-75q-14 0-24 9t-11 23q-12 128-103 219t-219 103q-14 1-23 11t-9 24v75q0 16 12 26 9 10 24 10h3q89-7 170-45t145-101q63-63 101-145t45-171z m286-1q1-15-10-26-10-11-26-11h-80q-14 0-25 10t-10 23q-7 120-57 228t-129 188-188 129-227 57q-14 1-24 11t-10 24v80q0 16 11 26 10 10 25 10h1q147-8 280-67t238-164q104-104 164-238t67-280z" horiz-adv-x="785.7" />
16
+
17
+ <glyph glyph-name="linkedin" unicode="&#xf0e1;" d="M195 501v-553h-184v553h184z m12 171q0-41-29-68t-75-27h-1q-46 0-74 27t-28 68q0 41 29 68t75 27 74-27 29-68z m650-407v-317h-183v296q0 59-23 92t-71 33q-35 0-58-19t-36-48q-6-17-6-45v-309h-184q1 223 1 361t0 165l-1 27h184v-80h-1q11 18 23 31t31 29 49 24 64 9q95 0 153-63t58-186z" horiz-adv-x="857.1" />
18
+
19
+ <glyph glyph-name="github" unicode="&#xf113;" d="M357 171q0-22-7-45t-24-43-40-19-41 19-24 43-7 45 7 46 24 43 41 19 40-19 24-43 7-46z m357 0q0-22-7-45t-24-43-40-19-41 19-24 43-7 45 7 46 24 43 41 19 40-19 24-43 7-46z m90 0q0 67-39 114t-104 47q-23 0-109-12-40-6-88-6t-87 6q-85 12-109 12-66 0-104-47t-39-114q0-49 18-85t45-58 68-33 78-17 83-4h94q46 0 83 4t78 17 69 33 45 58 18 85z m125 99q0-116-34-185-22-43-59-74t-79-48-95-27-96-12-93-3q-43 0-79 2t-82 7-85 17-77 29-67 45-48 64q-35 69-35 185 0 132 76 221-15 45-15 95 0 64 28 121 61 0 106-22t106-69q82 20 172 20 83 0 157-18 58 46 104 67t105 22q29-57 29-121 0-49-15-94 76-89 76-222z" horiz-adv-x="928.6" />
20
+
21
+ <glyph glyph-name="youtube" unicode="&#xf167;" d="M542 156v-118q0-37-22-37-13 0-25 12v168q12 12 25 12 22 0 22-37z m189-1v-25h-51v25q0 38 25 38t26-38z m-540 122h60v52h-174v-52h59v-318h55v318z m161-318h50v276h-50v-211q-17-23-32-23-10 0-11 11-1 2-1 20v203h-50v-218q0-28 5-41 7-21 32-21 27 0 57 34v-30z m240 83v110q0 41-5 55-10 31-40 31-28 0-52-30v121h-50v-370h50v27q25-31 52-31 30 0 40 31 5 15 5 56z m188 6v7h-51q0-29-1-34-4-20-22-20-26 0-26 38v49h100v57q0 44-15 65-22 28-59 28-38 0-60-28-15-21-15-65v-96q0-44 16-65 22-29 60-29 40 0 60 30 10 15 12 30 1 5 1 33z m-339 509v117q0 39-24 39t-24-39v-117q0-39 24-39t24 39z m401-419q0-131-14-195-8-33-33-56t-57-25q-102-12-309-12t-310 12q-32 3-57 25t-32 56q-15 62-15 195 0 131 15 195 7 33 32 56t57 26q103 11 310 11t309-11q33-4 58-26t32-56q14-62 14-195z m-557 712h57l-67-223v-151h-56v151q-8 42-34 119-21 57-37 104h60l39-147z m207-186v-97q0-46-16-66-21-29-59-29-37 0-59 29-15 21-15 66v97q0 45 15 66 22 28 59 28 38 0 59-28 16-21 16-66z m187 91v-279h-51v31q-30-35-58-35-25 0-33 21-4 13-4 42v220h51v-205q0-19 0-20 2-12 12-12 15 0 32 24v213h51z" horiz-adv-x="857.1" />
22
+
23
+ <glyph glyph-name="stackoverflow" unicode="&#xf16c;" d="M719-61h-624v268h-89v-357h803v357h-90v-268z m-525 293l18 87 437-92-18-87z m57 208l38 82 404-189-37-81z m112 199l57 69 343-287-57-68z m222 211l266-358-71-53-267 357z m-401-821v89h447v-89h-447z" horiz-adv-x="857.1" />
24
+
25
+ <glyph glyph-name="flickr" unicode="&#xf16e;" d="M696 779q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535z m-306-429q0 49-35 84t-84 34-83-34-35-84 35-84 83-34 84 34 35 84z m314 0q0 49-34 84t-84 34-84-34-34-84 34-84 84-34 84 34 34 84z" horiz-adv-x="857.1" />
26
+
27
+ <glyph glyph-name="bitbucket" unicode="&#xf171;" d="M455 371q4-35-28-57t-63-3q-21 9-29 32t-1 46 29 32q20 11 41 7t36-20 15-37z m62 11q-8 60-63 92t-110 7q-35-15-56-49t-20-72q3-51 44-87t92-31q51 4 85 47t28 93z m133 303q-11 15-31 25t-32 12-40 7q-162 26-316-1-24-4-37-7t-30-12-28-24q16-16 42-26t41-12 49-6q127-16 250-1 35 5 50 7t40 12 42 26z m32-578q-4-14-9-42t-7-47-16-39-33-32q-48-27-106-40t-112-12-113 10q-25 5-45 10t-43 15-41 25-29 34q-14 54-31 163l3 9 10 5q124-83 283-83t283 83q12-3 13-13t-3-25-4-21z m101 537q-15-94-62-366-3-17-15-31t-24-23-31-17q-140-70-340-49-139 15-220 78-8 6-14 14t-10 20-5 19-3 22-3 20q-5 27-15 83t-16 90-13 83-12 88q2 14 10 27t17 21 26 17 25 12 27 10q70 26 175 36 211 21 377-28 86-25 120-68 9-11 9-28t-3-30z" horiz-adv-x="785.7" />
28
+
29
+ <glyph glyph-name="tumblr" unicode="&#xf173;" d="M527 108l44-132q-12-19-61-37t-99-18q-58-1-107 15t-79 41-53 59-31 67-9 66v304h-94v120q40 14 72 39t51 50 32 57 19 55 8 49q1 3 3 5t4 2h136v-237h186v-140h-186v-289q0-17 3-31t13-30 28-23 45-8q44 1 75 16z" horiz-adv-x="571.4" />
30
+
31
+ <glyph glyph-name="dribbble" unicode="&#xf17d;" d="M571 13q-23 134-78 278h-1l-1-1q-9-3-24-9t-56-27-77-46-73-64-57-82l-9 6q103-84 234-84 73 0 142 29z m-103 339q-11 27-29 62-174-52-376-52 0-4 0-12 0-69 24-132t69-112q28 49 69 93t80 69 73 45 55 27l21 7q2 1 7 2t7 3z m-59 118q-67 119-137 211-77-36-130-104t-72-152q169 0 339 45z m381-178q-117 33-228 16 49-133 71-262 62 42 104 106t53 140z m-449 414q-1 0-1-1 0 1 1 1z m329-81q-103 91-241 91-43 0-87-10 73-95 137-214 39 15 73 34t54 34 36 32 21 23z m125-271q-2 129-83 229l-1-1q-5-7-11-13t-24-25-40-34-55-36-74-36q14-30 25-53 1-3 3-10t5-9q20 2 41 4t41 1 39-1 35-2 32-3 27-4 20-3 14-3z m62-4q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
32
+
33
+ <glyph glyph-name="skype" unicode="&#xf17e;" d="M655 257q0 28-11 51t-27 38-41 27-46 19-49 13l-58 14q-17 4-25 6t-19 6-17 9-9 12-4 16q0 43 80 43 24 0 43-6t30-16 21-19 23-16 27-7q26 0 42 18t16 43q0 31-32 55t-79 38-101 13q-38 0-74-9t-67-26-49-48-19-72q0-34 10-60t32-42 44-27 58-18l81-20q51-12 63-20 18-11 18-34 0-21-23-36t-58-14q-29 0-51 9t-37 22-25 25-26 21-30 9q-28 0-42-17t-14-41q0-52 68-88t162-37q41 0 78 10t69 30 49 52 19 74z m202-121q0-89-63-152t-151-63q-73 0-131 45-43-9-83-9-80 0-153 31t-126 84-83 125-31 153q0 41 9 84-45 58-45 130 0 89 63 152t151 63q73 0 131-45 43 9 84 9 79 0 152-31t126-84 84-125 30-153q0-41-8-84 44-58 44-130z" horiz-adv-x="857.1" />
34
+
35
+ <glyph glyph-name="foursquare" unicode="&#xf180;" d="M558 608l21 108q3 13-5 22t-20 10h-397q-13 0-22-10t-8-20v-615q0-4 3 0l162 196q13 15 22 19t26 4h134q12 0 20 8t11 17q13 72 20 106 2 12-6 23t-21 10h-164q-16 0-26 11t-11 27v23q0 16 11 27t26 10h193q10 0 20 7t11 17z m127 124q-9-41-30-149t-39-195-19-97q-4-12-5-18t-8-18-14-19-21-12-33-5h-151q-7 0-12-6-5-5-238-275-12-14-33-16t-27 3q-30 12-30 54v787q0 31 21 58t67 26h495q53 0 71-30t6-88z m0 0l-88-441q2 9 19 97t39 195 30 149z" horiz-adv-x="714.3" />
36
+
37
+ <glyph glyph-name="vkontakte" unicode="&#xf189;" d="M1070 560q13-36-84-164-13-18-36-48-22-28-31-40t-17-27-7-24 8-19 18-24 32-30q2-1 2-2 79-73 107-123 2-3 4-7t4-15-1-19-14-15-33-7l-142-3q-14-2-32 3t-29 13l-11 6q-17 12-39 36t-38 43-34 33-32 8q-1 0-4-2t-10-8-12-16-9-29-4-44q0-8-2-15t-4-10l-2-3q-10-11-30-12h-64q-40-3-81 9t-74 29-57 37-40 32l-14 14q-5 5-15 17t-40 50-59 85-68 117-73 152q-4 9-4 15t2 9l2 3q9 11 32 11l153 1q7-1 13-3t9-5l3-2q9-6 13-18 11-28 26-57t23-46l9-16q16-34 31-58t27-38 23-22 19-8 15 3q1 1 3 3t7 12 7 26 5 46 0 69q-1 23-5 41t-7 26l-4 6q-14 19-47 24-8 2 3 14 8 10 21 17 29 14 133 13 46-1 75-7 12-3 19-8t12-13 5-18 2-25 0-31-2-40 0-46q0-6-1-23t0-27 2-22 6-22 13-14q4-1 9-2t15 6 21 19 29 38 38 60q33 58 60 125 2 6 5 10t6 6l3 2 2 1t8 2 11 0l160 1q22 3 36-1t17-10z" horiz-adv-x="1071.4" />
38
+
39
+ <glyph glyph-name="weibo" unicode="&#xf18a;" d="M377 134q11 19 6 38t-25 28q-19 8-41 0t-33-25q-13-19-8-38t24-29 42-1 35 27z m52 67q5 7 2 15t-10 10q-7 3-16 0t-12-10q-9-18 8-26 8-2 16 1t12 10z m97-60q-25-57-88-83t-125-7q-60 19-82 71t3 104q27 52 85 78t117 10q62-16 89-66t1-107z m174 90q-5 53-49 94t-117 61-153 12q-124-13-206-79t-74-148q5-53 50-94t116-61 153-12q125 13 206 79t74 148z m172-3q0-38-20-77t-61-77-94-65-126-47-151-17-154 19-134 52-96 84-36 111q0 64 39 137t110 144q94 94 191 131t137-3q36-36 11-117-2-8 0-11t5-4 8 0 8 2l3 1q78 33 138 33t85-34q25-35 0-99-1-7-3-11t3-7 7-5 9-3q32-10 58-26t44-46 19-65z m-41 349q23-27 30-61t-3-66q-5-12-17-18t-25-3q-12 5-19 17t-2 25q11 35-13 62t-60 19q-13-3-25 5t-14 20q-3 14 5 25t20 14q34 7 67-3t56-36z m101 91q49-54 63-125t-8-134q-5-15-19-23t-29-2-22 19-3 29q16 46 6 96t-45 88q-35 39-83 54t-96 4q-16-3-29 6t-17 24 5 29 25 16q68 15 136-6t116-75z" horiz-adv-x="1000" />
40
+
41
+ <glyph glyph-name="renren" unicode="&#xf18b;" d="M632-26q-95-53-205-53-109 0-205 53 77 48 132 118t73 149q19-80 74-149t131-118z m-276 797v-271q0-140-71-256t-184-171q-101 120-101 276 0 104 47 195t128 150 181 77z m501-422q0-156-101-276-114 55-184 171t-71 256v271q100-17 182-77t128-150 46-195z" horiz-adv-x="857.1" />
42
+
43
+ <glyph glyph-name="stackexchange" unicode="&#xf18d;" d="M703 151v-37q0-47-32-81t-78-33h-32l-145-150v150h-295q-45 0-77 33t-32 81v37h691z m0 182v-143h-691v143h691z m0 183v-143h-691v143h691z m0 78v-37h-691v37q0 47 32 80t77 33h472q45 0 78-33t32-80z" horiz-adv-x="714.3" />
44
+
45
+ <glyph glyph-name="slack" unicode="&#xf198;" d="M848 417q34 0 57-23t24-56q0-54-52-73l-96-33 31-93q4-12 4-26 0-33-24-57t-56-24q-26 0-48 15t-29 40l-31 92-173-59 31-91q4-14 4-27 0-33-23-57t-57-24q-27 0-48 15t-29 41l-31 91-85-30q-17-5-28-5-34 0-57 22t-23 57q0 26 16 47t40 30l87 29-59 175-87-30q-14-5-27-5-33 0-56 23t-23 56q0 26 15 48t40 29l88 30-30 88q-4 14-4 27 0 33 23 57t57 24q26 0 48-16t29-40l30-89 173 59-30 89q-4 13-4 26 0 33 23 57t57 24q26 0 48-15t30-40l29-90 91 31q11 3 24 3 33 0 57-22t24-55q0-25-17-45t-41-29l-88-30 59-177 91 32q13 4 26 4z m-443-146l173 58-59 176-173-60z" horiz-adv-x="928.6" />
46
+
47
+ <glyph glyph-name="wordpress" unicode="&#xf19a;" d="M71 350q0 91 37 175l205-561q-109 53-176 157t-66 229z m719 22q0-11-2-22t-5-27-7-25-9-33-10-32l-43-143-155 461q26 2 49 4 11 2 15 11t-2 17-15 8l-115-6q-42 1-113 6-6 0-11-3t-6-9-1-10 5-9 11-5l44-4 67-183-94-281-156 464q26 2 49 4 11 2 15 11t-2 17-15 8l-115-6q-4 0-13 0t-14 1q58 89 153 141t205 52q82 0 157-29t133-84h-6q-31 0-51-22t-21-53q0-7 1-14t2-12 5-13 5-11 7-13 7-12 8-13 8-13q35-60 35-118z m-283-59l133-361q0-4 2-7-70-24-142-24-62 0-121 18z m369 243q53-97 53-206 0-117-58-215t-156-156l132 379q33 94 33 154 0 23-4 44z m-376 294q102 0 194-40t160-106 106-160 40-194-40-194-106-160-160-106-194-40-194 40-160 106-106 160-40 194 40 194 106 160 160 106 194 40z m0-977q97 0 185 38t152 102 102 152 38 185-38 185-102 152-152 102-185 38-185-38-152-102-102-152-38-185 38-185 102-152 152-102 185-38z" horiz-adv-x="1000" />
48
+
49
+ <glyph glyph-name="openid" unicode="&#xf19b;" d="M606 850v-857l-152-72q-127 12-231 57t-163 117-60 152q0 78 56 147t154 115 218 60v-96q-121-21-199-84t-78-142q0-85 86-149t217-81v759z m373-325l21-217-293 63 82 47q-66 39-156 55v96q154-19 268-88z" horiz-adv-x="1000" />
50
+
51
+ <glyph glyph-name="reddit" unicode="&#xf1a1;" d="M611 199q9-9 0-17-34-35-111-35t-111 35q-9 8 0 17 3 3 8 3t9-3q27-28 94-28 67 0 94 28 4 3 9 3t8-3z m-171 101q0-21-15-35t-35-15-35 15-15 35q0 21 15 36t35 14 35-15 15-35z m220 0q0-21-15-35t-35-15-35 15-15 35 15 35 35 15 35-14 15-36z m140 67q0 27-19 47t-48 19-48-20q-72 50-173 54l35 158 112-26q0-20 14-35t35-14 36 15 14 35-14 35-36 15q-30 0-44-28l-124 28q-10 3-14-9l-38-174q-101-4-173-54-19 20-48 20-28 0-48-19t-19-47q0-20 10-36t28-24q-4-16-4-32 0-79 79-135t188-57q110 0 188 57t78 135q0 18-4 32 17 8 27 24t10 36z m200-17q0-102-40-194t-106-160-160-106-194-40-194 40-160 106-106 160-40 194 40 194 106 160 160 106 194 40 194-40 160-106 106-160 40-194z" horiz-adv-x="1000" />
52
+
53
+ <glyph glyph-name="delicious" unicode="&#xf1a5;" d="M821 82v268h-392v393h-268q-52 0-89-37t-36-88v-268h393v-393h267q52 0 89 37t36 88z m36 536v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
54
+
55
+ <glyph glyph-name="digg" unicode="&#xf1a6;" d="M183 693h114v-549h-297v389h183v160z m0-457v206h-69v-206h69z m160 297v-389h114v389h-114z m0 160v-114h114v114h-114z m160-160h297v-526h-297v91h183v46h-183v389z m183-297v206h-69v-206h69z m160 297h297v-526h-297v91h183v46h-183v389z m183-297v206h-69v-206h69z" horiz-adv-x="1142.9" />
56
+
57
+ <glyph glyph-name="behance" unicode="&#xf1b4;" d="M1031 661h-285v-69h285v69z m-140-238q-51 0-82-29t-34-80h227q-10 109-111 109z m9-326q35 0 68 18t42 48h123q-55-171-238-171-119 0-190 73t-70 194q0 116 72 193t188 77q77 0 134-38t86-100 28-139q0-9-1-26h-367q0-62 32-96t93-33z m-745 28h165q114 0 114 93 0 100-111 100h-168v-193z m0 299h156q44 0 69 21t26 63q0 80-106 80h-145v-164z m-155 284h332q48 0 86-8t71-26 50-54 17-86q0-101-96-147 64-17 96-64t33-114q0-41-14-76t-37-58-55-39-67-24-75-7h-341v703z" horiz-adv-x="1142.9" />
58
+
59
+ <glyph glyph-name="steam" unicode="&#xf1b6;" d="M883 525q0-56-40-96t-96-40-97 40-39 96 39 97 97 39 96-39 40-97z m-430-414q0 58-41 99t-98 41q-15 0-30-4l58-23q43-17 61-59t1-85q-18-43-60-61t-85 0q-12 4-35 13t-34 14q18-34 51-54t73-20q58 0 98 40t41 99z m463 414q0 70-50 120t-120 50q-71 0-121-50t-50-120q0-71 50-121t121-49q70 0 120 49t50 121z m84 0q0-106-74-180t-180-74l-244-178q-6-72-61-122t-127-50q-68 0-120 43t-66 107l-128 51v240l217-88q44 27 97 27 7 0 19-1l159 227q1 104 75 178t179 74q105 0 180-75t74-179z" horiz-adv-x="1000" />
60
+
61
+ <glyph glyph-name="spotify" unicode="&#xf1bc;" d="M629 175q0 18-17 28-107 64-249 64-74 0-160-19-24-5-24-29 0-11 8-19t20-8q2 0 20 5 74 15 136 15 126 0 221-58 11-6 19-6 10 0 18 8t8 19z m54 120q0 22-20 34-132 79-306 79-85 0-169-24-27-7-27-36 0-14 10-23t24-10q4 0 20 4 69 19 141 19 155 0 272-69 13-8 21-8 14 0 24 10t10 24z m60 138q0 26-23 39-70 41-163 62t-191 21q-114 0-204-26-12-4-21-15t-9-27q0-17 12-29t28-11q7 0 23 4 74 21 171 21 89 0 173-19t141-53q12-7 23-7 16 0 28 11t12 29z m114-83q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
62
+
63
+ <glyph glyph-name="deviantart" unicode="&#xf1bd;" d="M571 681l-169-325 14-17h155v-232h-282l-25-16-79-153-17-17h-168v170l169 325-13 17h-156v231h283l25 17 79 152 17 17h167v-169z" horiz-adv-x="571.4" />
64
+
65
+ <glyph glyph-name="vine" unicode="&#xf1ca;" d="M835 389v-111q-56-13-110-13-36-76-92-151t-102-120-71-60q-45-25-91 2-15 9-33 24t-48 47-57 72-60 102-59 136-51 176-39 218h158q14-122 39-223t58-177 68-131 78-109q94 94 160 227-79 40-124 122t-45 186q0 107 58 176t158 68q99 0 152-59t53-166q0-89-32-159-4-1-11-2t-25-1-36 3-34 14-28 29q17 58 17 103 0 48-16 73t-44 26q-30 0-48-28t-18-78q0-104 59-164t149-60q35 0 67 8z" horiz-adv-x="857.1" />
66
+
67
+ <glyph glyph-name="tencent-weibo" unicode="&#xf1d5;" d="M470 531q0-45-32-76t-76-32q-33 0-62 20-34-38-64-82-138-207-113-479 1-13-7-22t-19-10h-3q-11 0-19 7t-10 19q-7 70-2 138t17 121 30 104 38 87 42 70q34 50 73 92-8 19-8 43 0 44 31 76t76 32 76-32 32-76z m213-6q0-88-44-163t-119-119-163-43q-36 0-73 8-12 3-18 13t-4 22q3 11 13 17t22 5q28-8 60-8 54 0 104 22t85 57 57 85 21 104-21 104-57 85-85 57-104 21-104-21-85-57-57-85-21-104q0-64 29-122 5-11 2-22t-14-17-22-2-17 15q-36 68-36 148 0 66 26 126t69 104 104 69 126 26q88 0 163-43t119-119 44-163z" horiz-adv-x="714.3" />
68
+
69
+ <glyph glyph-name="wechat" unicode="&#xf1d7;" d="M324 593q0 23-14 37t-37 14q-24 0-42-15t-19-36q0-22 19-36t42-14q23 0 37 13t14 37z m414-283q0 15-14 28t-36 12q-16 0-28-13t-13-27q0-16 13-28t28-13q22 0 36 12t14 29z m-131 283q0 23-14 37t-37 14q-24 0-42-15t-18-36q0-22 18-36t42-14q23 0 37 13t14 37z m354-283q0 15-15 28t-36 12q-15 0-27-13t-13-27q0-16 13-28t27-13q22 0 36 12t15 29z m-148 221q-18 3-40 3-94 0-173-43t-125-117-45-160q0-44 13-85-20-2-38-2-15 0-28 1t-31 4-25 4-30 6-28 5l-141-70 40 121q-162 114-162 274 0 94 54 173t148 125 203 45q98 0 185-36t146-102 77-146z m330-313q0-65-38-124t-104-108l31-101-111 60q-84-20-122-20-94 0-173 39t-125 107-46 147 46 148 125 107 173 39q90 0 169-39t127-108 48-147z" horiz-adv-x="1142.9" />
70
+
71
+ <glyph glyph-name="twitch" unicode="&#xf1e8;" d="M500 608v-242h-81v242h81z m222 0v-242h-81v242h81z m0-424l141 141v444h-666v-585h182v-121l121 121h222z m222 666v-565l-242-242h-182l-121-122h-121v122h-222v646l61 161h827z" horiz-adv-x="1000" />
72
+
73
+ <glyph glyph-name="yelp" unicode="&#xf1e9;" d="M431 114v-71q0-163-3-170-7-18-28-22-31-6-102 21t-90 49q-8 9-10 20 0 7 2 15 3 6 19 26t101 121q1 0 34 39 8 11 22 14t28-2q13-6 20-17t7-23z m-83 140q-1-31-29-39l-67-22q-153-49-163-49-19 1-30 20-6 14-9 42-5 42 0 93t17 69 31 18q8 0 113-43 40-16 64-26l47-19q13-5 20-17t6-27z m461-166q-4-30-51-90t-75-70q-21-8-36 3-7 6-102 161l-27 43q-7 11-6 25t11 26q19 24 46 14 1 0 67-22 113-37 135-44t26-12q16-12 12-34z m-375 353q3-57-30-68-32-10-64 40l-210 333q-5 20 10 35 23 24 116 50t125 17q23-5 28-25 1-10 12-170t13-212z m370-60q1-22-15-33-8-6-183-48-38-9-51-13l0 1q-13-3-25 2t-21 18q-17 26 0 49 1 0 42 57 70 95 84 114t19 21q15 11 36 1 27-12 68-74t46-94v-1z" horiz-adv-x="857.1" />
74
+
75
+ <glyph glyph-name="lastfm" unicode="&#xf202;" d="M721 457q0-3 6-23 5-16 14-27t22-19 25-11 31-10q181-50 181-185 0-81-59-135t-142-54q-33 0-62 10t-51 26-43 41-35 49-30 58-24 57-22 60-20 53q-18 45-35 74t-41 54-58 36-79 11q-53 0-102-31t-77-81-28-103q0-89 59-156t147-67q99 0 144 53 31 36 46 65l47-85q-8-19-24-39l0 0q-73-85-216-85-82 0-151 44t-106 116-38 153q0 59 24 115t65 98 96 68 114 26q49 0 89-11t69-28 53-44 40-56 33-65 28-69 28-73 31-71q53-112 130-112 45 0 77 27t32 72q0 24-11 40t-28 26-40 18-47 15-49 19-45 29-37 45-21 69q-2 9-2 18 0 62 49 107t111 44q43-2 67-8t50-30h0q6-6 13-14t14-20 11-15l-72-55q-15 27-30 39v0q-13 12-55 12-27 0-46-18t-20-47z" horiz-adv-x="1000" />
76
+
77
+ <glyph glyph-name="facebook-official" unicode="&#xf230;" d="M810 779q19 0 33-14t14-34v-762q0-20-14-34t-33-14h-218v333h111l16 129h-127v83q0 31 13 46t51 16l68 1v115q-35 5-100 5-75 0-121-44t-45-127v-95h-112v-129h112v-333h-411q-19 0-33 14t-14 34v762q0 20 14 34t33 14h763z" horiz-adv-x="857.1" />
78
+
79
+ <glyph glyph-name="pinterest" unicode="&#xf231;" d="M0 517q0 60 21 113t58 93 85 69 103 44 113 14q88 0 164-37t123-108 47-160q0-54-10-105t-34-99-56-83-80-58-106-21q-38 0-75 18t-54 49q-5-22-15-63t-14-53-11-40-15-39-17-35-26-44-35-48l-7-3-5 6q-9 88-9 105 0 51 12 115t37 161 29 113q-18 36-18 94 0 47 29 87t74 41q34 0 53-23t19-57q0-37-24-106t-25-105q0-35 25-58t61-23q31 0 57 14t44 38 31 53 21 61 11 62 4 56q0 96-61 150t-160 54q-111 0-186-72t-75-183q0-25 7-48t15-36 15-26 7-17q0-15-8-40t-21-25q-1 0-9 1-29 9-51 31t-34 53-18 60-6 60z" horiz-adv-x="714.3" />
80
+
81
+ <glyph glyph-name="telegram" unicode="&#xf2c6;" d="M664 121l82 386q5 25-6 36t-29 3l-482-185q-16-6-22-14t-2-15 18-11l124-38 286 180q12 8 18 3 4-3-3-8l-231-210-9-127q13 0 25 13l60 58 125-93q36-20 46 22z m336 229q0-102-40-194t-106-160-160-106-194-40-194 40-160 106-106 160-40 194 40 194 106 160 160 106 194 40 194-40 160-106 106-160 40-194z" horiz-adv-x="1000" />
82
+
83
+ <glyph glyph-name="instagram" unicode="&#xf32d;" d="M690 350q0 26-6 50l176 0 0-344q0-56-39-96t-95-40l-592 0q-56 0-95 40t-39 96l0 344 174 0q-4-32-4-50 0-106 76-183t184-77q106 0 183 77t77 183z m36 430q56 0 95-39t39-95l0-146-218 0q-78 110-212 110-138 0-212-110l-218 0 0 146q0 56 39 95t95 39l592 0z m64-166l0 72q0 24-24 24l-72 0q-24 0-24-24l0-72q0-8 7-16t17-8l72 0q24 0 24 24z m-200-264q0-66-47-113t-113-47-113 47-47 113q0 68 47 114t113 46 113-46 47-114z" horiz-adv-x="860" />
84
+ </font>
85
+ </defs>
86
+ </svg>
Binary file
Binary file
Binary file
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "kagami";
@@ -0,0 +1,95 @@
1
+ @font-face {
2
+ font-family: 'fontello';
3
+ src: url('../font/fontello.eot?48874071');
4
+ src: url('../font/fontello.eot?48874071#iefix') format('embedded-opentype'),
5
+ url('../font/fontello.woff2?48874071') format('woff2'),
6
+ url('../font/fontello.woff?48874071') format('woff'),
7
+ url('../font/fontello.ttf?48874071') format('truetype'),
8
+ url('../font/fontello.svg?48874071#fontello') format('svg');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ }
12
+ /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
13
+ /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
14
+ /*
15
+ @media screen and (-webkit-min-device-pixel-ratio:0) {
16
+ @font-face {
17
+ font-family: 'fontello';
18
+ src: url('../font/fontello.svg?48874071#fontello') format('svg');
19
+ }
20
+ }
21
+ */
22
+
23
+ [class^="icon-"]:before, [class*=" icon-"]:before {
24
+ font-family: "fontello";
25
+ font-style: normal;
26
+ font-weight: normal;
27
+ speak: none;
28
+
29
+ display: inline-block;
30
+ text-decoration: inherit;
31
+ width: 1em;
32
+ margin-right: .2em;
33
+ text-align: center;
34
+ /* opacity: .8; */
35
+
36
+ /* For safety - reset parent styles, that can break glyph codes*/
37
+ font-variant: normal;
38
+ text-transform: none;
39
+
40
+ /* fix buttons height, for twitter bootstrap */
41
+ line-height: 1em;
42
+
43
+ /* Animation center compensation - margins should be symmetric */
44
+ /* remove if not needed */
45
+ margin-left: .2em;
46
+
47
+ /* you can be more comfortable with increased icons size */
48
+ /* font-size: 120%; */
49
+
50
+ /* Font smoothing. That was taken from TWBS */
51
+ -webkit-font-smoothing: antialiased;
52
+ -moz-osx-font-smoothing: grayscale;
53
+
54
+ /* Uncomment for 3D effect */
55
+ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
56
+ }
57
+
58
+ .icon-heart:before { content: '\e800'; } /* '' */
59
+ .icon-google-plus:before { content: '\f05a'; } /* '' */
60
+ .icon-twitter:before { content: '\f099'; } /* '' */
61
+ .icon-rss:before { content: '\f09e'; } /* '' */
62
+ .icon-linkedin:before { content: '\f0e1'; } /* '' */
63
+ .icon-github:before { content: '\f113'; } /* '' */
64
+ .icon-youtube:before { content: '\f167'; } /* '' */
65
+ .icon-stackoverflow:before { content: '\f16c'; } /* '' */
66
+ .icon-flickr:before { content: '\f16e'; } /* '' */
67
+ .icon-bitbucket:before { content: '\f171'; } /* '' */
68
+ .icon-tumblr:before { content: '\f173'; } /* '' */
69
+ .icon-dribbble:before { content: '\f17d'; } /* '' */
70
+ .icon-skype:before { content: '\f17e'; } /* '' */
71
+ .icon-foursquare:before { content: '\f180'; } /* '' */
72
+ .icon-vkontakte:before { content: '\f189'; } /* '' */
73
+ .icon-weibo:before { content: '\f18a'; } /* '' */
74
+ .icon-renren:before { content: '\f18b'; } /* '' */
75
+ .icon-stackexchange:before { content: '\f18d'; } /* '' */
76
+ .icon-slack:before { content: '\f198'; } /* '' */
77
+ .icon-wordpress:before { content: '\f19a'; } /* '' */
78
+ .icon-openid:before { content: '\f19b'; } /* '' */
79
+ .icon-reddit:before { content: '\f1a1'; } /* '' */
80
+ .icon-delicious:before { content: '\f1a5'; } /* '' */
81
+ .icon-digg:before { content: '\f1a6'; } /* '' */
82
+ .icon-behance:before { content: '\f1b4'; } /* '' */
83
+ .icon-steam:before { content: '\f1b6'; } /* '' */
84
+ .icon-spotify:before { content: '\f1bc'; } /* '' */
85
+ .icon-deviantart:before { content: '\f1bd'; } /* '' */
86
+ .icon-vine:before { content: '\f1ca'; } /* '' */
87
+ .icon-tencent-weibo:before { content: '\f1d5'; } /* '' */
88
+ .icon-wechat:before { content: '\f1d7'; } /* '' */
89
+ .icon-twitch:before { content: '\f1e8'; } /* '' */
90
+ .icon-yelp:before { content: '\f1e9'; } /* '' */
91
+ .icon-lastfm:before { content: '\f202'; } /* '' */
92
+ .icon-facebook-official:before { content: '\f230'; } /* '' */
93
+ .icon-pinterest:before { content: '\f231'; } /* '' */
94
+ .icon-telegram:before { content: '\f2c6'; } /* '' */
95
+ .icon-instagram:before { content: '\f32d'; } /* '' */