better-minima 0.1.1 → 0.1.2
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/LICENSE.txt +21 -21
- data/README.md +167 -34
- data/_includes/custom-head.html +6 -6
- data/_includes/disqus_comments.html +20 -20
- data/_includes/footer.html +28 -28
- data/_includes/google-analytics.html +9 -9
- data/_includes/head.html +14 -14
- data/_includes/header.html +31 -31
- data/_includes/landing-hero.html +12 -12
- data/_includes/landing.html +4 -4
- data/_includes/social.html +21 -21
- data/_layouts/default.html +10 -10
- data/_layouts/home.html +76 -76
- data/_layouts/html_scaffold.html +13 -13
- data/_layouts/page.html +14 -14
- data/_layouts/post.html +38 -38
- data/_sass/minima/_base.scss +291 -291
- data/_sass/minima/_layout.scss +382 -381
- data/_sass/minima/custom-styles.scss +2 -2
- data/_sass/minima/custom-variables.scss +1 -1
- data/_sass/minima/initialize.scss +50 -50
- data/_sass/minima/skins/classic.scss +91 -91
- data/_sass/minima/skins/dark.scss +95 -95
- data/_sass/minima/skins/solarized-dark.scss +4 -4
- data/_sass/minima/skins/solarized.scss +140 -140
- data/assets/better-minima-social-icons.svg +51 -51
- data/assets/css/style.scss +7 -7
- data/assets/img/posts/dirtycow.jpg +0 -0
- data/assets/img/posts/shellshock.jpg +0 -0
- metadata +3 -3
@@ -1,140 +1,140 @@
|
|
1
|
-
@charset "utf-8";
|
2
|
-
|
3
|
-
// Solarized skin
|
4
|
-
// ==============
|
5
|
-
// Created by Sander Voerman <mailto:sander@savoerman.nl> using the Solarized
|
6
|
-
// color scheme by Ethan Schoonover <https://ethanschoonover.com/solarized>.
|
7
|
-
|
8
|
-
// This style sheet implements two options for the minima.skin setting:
|
9
|
-
// "solarized" for light mode and "solarized-dark" for dark mode.
|
10
|
-
$sol-is-dark: false !default;
|
11
|
-
|
12
|
-
|
13
|
-
// Color scheme
|
14
|
-
// ------------
|
15
|
-
// The inline comments show the canonical L*a*b values for each color.
|
16
|
-
|
17
|
-
$sol-base03: #002b36; // 15 -12 -12
|
18
|
-
$sol-base02: #073642; // 20 -12 -12
|
19
|
-
$sol-base01: #586e75; // 45 -07 -07
|
20
|
-
$sol-base00: #657b83; // 50 -07 -07
|
21
|
-
$sol-base0: #839496; // 60 -06 -03
|
22
|
-
$sol-base1: #93a1a1; // 65 -05 -02
|
23
|
-
$sol-base2: #eee8d5; // 92 -00 10
|
24
|
-
$sol-base3: #fdf6e3; // 97 00 10
|
25
|
-
$sol-yellow: #b58900; // 60 10 65
|
26
|
-
$sol-orange: #cb4b16; // 50 50 55
|
27
|
-
$sol-red: #dc322f; // 50 65 45
|
28
|
-
$sol-magenta: #d33682; // 50 65 -05
|
29
|
-
$sol-violet: #6c71c4; // 50 15 -45
|
30
|
-
$sol-blue: #268bd2; // 55 -10 -45
|
31
|
-
$sol-cyan: #2aa198; // 60 -35 -05
|
32
|
-
$sol-green: #859900; // 60 -20 65
|
33
|
-
|
34
|
-
$sol-mono3: $sol-base3;
|
35
|
-
$sol-mono2: $sol-base2;
|
36
|
-
$sol-mono1: $sol-base1;
|
37
|
-
$sol-mono00: $sol-base00;
|
38
|
-
$sol-mono01: $sol-base01;
|
39
|
-
|
40
|
-
@if $sol-is-dark {
|
41
|
-
$sol-mono3: $sol-base03;
|
42
|
-
$sol-mono2: $sol-base02;
|
43
|
-
$sol-mono1: $sol-base01;
|
44
|
-
$sol-mono00: $sol-base0;
|
45
|
-
$sol-mono01: $sol-base1;
|
46
|
-
}
|
47
|
-
|
48
|
-
|
49
|
-
// Minima color variables
|
50
|
-
// ----------------------
|
51
|
-
|
52
|
-
$brand-color: $sol-mono1 !default;
|
53
|
-
$brand-color-light: mix($sol-mono1, $sol-mono3) !default;
|
54
|
-
$brand-color-dark: $sol-mono00 !default;
|
55
|
-
|
56
|
-
$site-title-color: $sol-mono00 !default;
|
57
|
-
|
58
|
-
$text-color: $sol-mono01 !default;
|
59
|
-
$background-color: $sol-mono3 !default;
|
60
|
-
$code-background-color: $sol-mono2 !default;
|
61
|
-
|
62
|
-
$link-base-color: $sol-blue !default;
|
63
|
-
$link-visited-color: mix($sol-blue, $sol-mono00) !default;
|
64
|
-
$link-hover-color: $sol-mono00 !default;
|
65
|
-
|
66
|
-
$border-color-01: $brand-color-light !default;
|
67
|
-
$border-color-02: $sol-mono1 !default;
|
68
|
-
$border-color-03: $sol-mono00 !default;
|
69
|
-
|
70
|
-
$table-text-color: $sol-mono00 !default;
|
71
|
-
$table-zebra-color: mix($sol-mono2, $sol-mono3) !default;
|
72
|
-
$table-header-bg-color: $sol-mono2 !default;
|
73
|
-
$table-header-border: $sol-mono1 !default;
|
74
|
-
$table-border-color: $sol-mono1 !default;
|
75
|
-
|
76
|
-
|
77
|
-
// Syntax highlighting styles
|
78
|
-
// --------------------------
|
79
|
-
|
80
|
-
.highlight {
|
81
|
-
.c { color: $sol-mono1; font-style: italic } // Comment
|
82
|
-
.err { color: $sol-red } // Error
|
83
|
-
.k { color: $sol-mono01; font-weight: bold } // Keyword
|
84
|
-
.o { color: $sol-mono01; font-weight: bold } // Operator
|
85
|
-
.cm { color: $sol-mono1; font-style: italic } // Comment.Multiline
|
86
|
-
.cp { color: $sol-mono1; font-weight: bold } // Comment.Preproc
|
87
|
-
.c1 { color: $sol-mono1; font-style: italic } // Comment.Single
|
88
|
-
.cs { color: $sol-mono1; font-weight: bold; font-style: italic } // Comment.Special
|
89
|
-
.gd { color: $sol-red } // Generic.Deleted
|
90
|
-
.gd .x { color: $sol-red } // Generic.Deleted.Specific
|
91
|
-
.ge { color: $sol-mono00; font-style: italic } // Generic.Emph
|
92
|
-
.gr { color: $sol-red } // Generic.Error
|
93
|
-
.gh { color: $sol-mono1 } // Generic.Heading
|
94
|
-
.gi { color: $sol-green } // Generic.Inserted
|
95
|
-
.gi .x { color: $sol-green } // Generic.Inserted.Specific
|
96
|
-
.go { color: $sol-mono00 } // Generic.Output
|
97
|
-
.gp { color: $sol-mono00 } // Generic.Prompt
|
98
|
-
.gs { color: $sol-mono01; font-weight: bold } // Generic.Strong
|
99
|
-
.gu { color: $sol-mono1 } // Generic.Subheading
|
100
|
-
.gt { color: $sol-red } // Generic.Traceback
|
101
|
-
.kc { color: $sol-mono01; font-weight: bold } // Keyword.Constant
|
102
|
-
.kd { color: $sol-mono01; font-weight: bold } // Keyword.Declaration
|
103
|
-
.kp { color: $sol-mono01; font-weight: bold } // Keyword.Pseudo
|
104
|
-
.kr { color: $sol-mono01; font-weight: bold } // Keyword.Reserved
|
105
|
-
.kt { color: $sol-violet; font-weight: bold } // Keyword.Type
|
106
|
-
.m { color: $sol-cyan } // Literal.Number
|
107
|
-
.s { color: $sol-magenta } // Literal.String
|
108
|
-
.na { color: $sol-cyan } // Name.Attribute
|
109
|
-
.nb { color: $sol-blue } // Name.Builtin
|
110
|
-
.nc { color: $sol-violet; font-weight: bold } // Name.Class
|
111
|
-
.no { color: $sol-cyan } // Name.Constant
|
112
|
-
.ni { color: $sol-violet } // Name.Entity
|
113
|
-
.ne { color: $sol-violet; font-weight: bold } // Name.Exception
|
114
|
-
.nf { color: $sol-blue; font-weight: bold } // Name.Function
|
115
|
-
.nn { color: $sol-mono00 } // Name.Namespace
|
116
|
-
.nt { color: $sol-blue } // Name.Tag
|
117
|
-
.nv { color: $sol-cyan } // Name.Variable
|
118
|
-
.ow { color: $sol-mono01; font-weight: bold } // Operator.Word
|
119
|
-
.w { color: $sol-mono1 } // Text.Whitespace
|
120
|
-
.mf { color: $sol-cyan } // Literal.Number.Float
|
121
|
-
.mh { color: $sol-cyan } // Literal.Number.Hex
|
122
|
-
.mi { color: $sol-cyan } // Literal.Number.Integer
|
123
|
-
.mo { color: $sol-cyan } // Literal.Number.Oct
|
124
|
-
.sb { color: $sol-magenta } // Literal.String.Backtick
|
125
|
-
.sc { color: $sol-magenta } // Literal.String.Char
|
126
|
-
.sd { color: $sol-magenta } // Literal.String.Doc
|
127
|
-
.s2 { color: $sol-magenta } // Literal.String.Double
|
128
|
-
.se { color: $sol-magenta } // Literal.String.Escape
|
129
|
-
.sh { color: $sol-magenta } // Literal.String.Heredoc
|
130
|
-
.si { color: $sol-magenta } // Literal.String.Interpol
|
131
|
-
.sx { color: $sol-magenta } // Literal.String.Other
|
132
|
-
.sr { color: $sol-green } // Literal.String.Regex
|
133
|
-
.s1 { color: $sol-magenta } // Literal.String.Single
|
134
|
-
.ss { color: $sol-magenta } // Literal.String.Symbol
|
135
|
-
.bp { color: $sol-mono1 } // Name.Builtin.Pseudo
|
136
|
-
.vc { color: $sol-cyan } // Name.Variable.Class
|
137
|
-
.vg { color: $sol-cyan } // Name.Variable.Global
|
138
|
-
.vi { color: $sol-cyan } // Name.Variable.Instance
|
139
|
-
.il { color: $sol-cyan } // Literal.Number.Integer.Long
|
140
|
-
}
|
1
|
+
@charset "utf-8";
|
2
|
+
|
3
|
+
// Solarized skin
|
4
|
+
// ==============
|
5
|
+
// Created by Sander Voerman <mailto:sander@savoerman.nl> using the Solarized
|
6
|
+
// color scheme by Ethan Schoonover <https://ethanschoonover.com/solarized>.
|
7
|
+
|
8
|
+
// This style sheet implements two options for the minima.skin setting:
|
9
|
+
// "solarized" for light mode and "solarized-dark" for dark mode.
|
10
|
+
$sol-is-dark: false !default;
|
11
|
+
|
12
|
+
|
13
|
+
// Color scheme
|
14
|
+
// ------------
|
15
|
+
// The inline comments show the canonical L*a*b values for each color.
|
16
|
+
|
17
|
+
$sol-base03: #002b36; // 15 -12 -12
|
18
|
+
$sol-base02: #073642; // 20 -12 -12
|
19
|
+
$sol-base01: #586e75; // 45 -07 -07
|
20
|
+
$sol-base00: #657b83; // 50 -07 -07
|
21
|
+
$sol-base0: #839496; // 60 -06 -03
|
22
|
+
$sol-base1: #93a1a1; // 65 -05 -02
|
23
|
+
$sol-base2: #eee8d5; // 92 -00 10
|
24
|
+
$sol-base3: #fdf6e3; // 97 00 10
|
25
|
+
$sol-yellow: #b58900; // 60 10 65
|
26
|
+
$sol-orange: #cb4b16; // 50 50 55
|
27
|
+
$sol-red: #dc322f; // 50 65 45
|
28
|
+
$sol-magenta: #d33682; // 50 65 -05
|
29
|
+
$sol-violet: #6c71c4; // 50 15 -45
|
30
|
+
$sol-blue: #268bd2; // 55 -10 -45
|
31
|
+
$sol-cyan: #2aa198; // 60 -35 -05
|
32
|
+
$sol-green: #859900; // 60 -20 65
|
33
|
+
|
34
|
+
$sol-mono3: $sol-base3;
|
35
|
+
$sol-mono2: $sol-base2;
|
36
|
+
$sol-mono1: $sol-base1;
|
37
|
+
$sol-mono00: $sol-base00;
|
38
|
+
$sol-mono01: $sol-base01;
|
39
|
+
|
40
|
+
@if $sol-is-dark {
|
41
|
+
$sol-mono3: $sol-base03;
|
42
|
+
$sol-mono2: $sol-base02;
|
43
|
+
$sol-mono1: $sol-base01;
|
44
|
+
$sol-mono00: $sol-base0;
|
45
|
+
$sol-mono01: $sol-base1;
|
46
|
+
}
|
47
|
+
|
48
|
+
|
49
|
+
// Minima color variables
|
50
|
+
// ----------------------
|
51
|
+
|
52
|
+
$brand-color: $sol-mono1 !default;
|
53
|
+
$brand-color-light: mix($sol-mono1, $sol-mono3) !default;
|
54
|
+
$brand-color-dark: $sol-mono00 !default;
|
55
|
+
|
56
|
+
$site-title-color: $sol-mono00 !default;
|
57
|
+
|
58
|
+
$text-color: $sol-mono01 !default;
|
59
|
+
$background-color: $sol-mono3 !default;
|
60
|
+
$code-background-color: $sol-mono2 !default;
|
61
|
+
|
62
|
+
$link-base-color: $sol-blue !default;
|
63
|
+
$link-visited-color: mix($sol-blue, $sol-mono00) !default;
|
64
|
+
$link-hover-color: $sol-mono00 !default;
|
65
|
+
|
66
|
+
$border-color-01: $brand-color-light !default;
|
67
|
+
$border-color-02: $sol-mono1 !default;
|
68
|
+
$border-color-03: $sol-mono00 !default;
|
69
|
+
|
70
|
+
$table-text-color: $sol-mono00 !default;
|
71
|
+
$table-zebra-color: mix($sol-mono2, $sol-mono3) !default;
|
72
|
+
$table-header-bg-color: $sol-mono2 !default;
|
73
|
+
$table-header-border: $sol-mono1 !default;
|
74
|
+
$table-border-color: $sol-mono1 !default;
|
75
|
+
|
76
|
+
|
77
|
+
// Syntax highlighting styles
|
78
|
+
// --------------------------
|
79
|
+
|
80
|
+
.highlight {
|
81
|
+
.c { color: $sol-mono1; font-style: italic } // Comment
|
82
|
+
.err { color: $sol-red } // Error
|
83
|
+
.k { color: $sol-mono01; font-weight: bold } // Keyword
|
84
|
+
.o { color: $sol-mono01; font-weight: bold } // Operator
|
85
|
+
.cm { color: $sol-mono1; font-style: italic } // Comment.Multiline
|
86
|
+
.cp { color: $sol-mono1; font-weight: bold } // Comment.Preproc
|
87
|
+
.c1 { color: $sol-mono1; font-style: italic } // Comment.Single
|
88
|
+
.cs { color: $sol-mono1; font-weight: bold; font-style: italic } // Comment.Special
|
89
|
+
.gd { color: $sol-red } // Generic.Deleted
|
90
|
+
.gd .x { color: $sol-red } // Generic.Deleted.Specific
|
91
|
+
.ge { color: $sol-mono00; font-style: italic } // Generic.Emph
|
92
|
+
.gr { color: $sol-red } // Generic.Error
|
93
|
+
.gh { color: $sol-mono1 } // Generic.Heading
|
94
|
+
.gi { color: $sol-green } // Generic.Inserted
|
95
|
+
.gi .x { color: $sol-green } // Generic.Inserted.Specific
|
96
|
+
.go { color: $sol-mono00 } // Generic.Output
|
97
|
+
.gp { color: $sol-mono00 } // Generic.Prompt
|
98
|
+
.gs { color: $sol-mono01; font-weight: bold } // Generic.Strong
|
99
|
+
.gu { color: $sol-mono1 } // Generic.Subheading
|
100
|
+
.gt { color: $sol-red } // Generic.Traceback
|
101
|
+
.kc { color: $sol-mono01; font-weight: bold } // Keyword.Constant
|
102
|
+
.kd { color: $sol-mono01; font-weight: bold } // Keyword.Declaration
|
103
|
+
.kp { color: $sol-mono01; font-weight: bold } // Keyword.Pseudo
|
104
|
+
.kr { color: $sol-mono01; font-weight: bold } // Keyword.Reserved
|
105
|
+
.kt { color: $sol-violet; font-weight: bold } // Keyword.Type
|
106
|
+
.m { color: $sol-cyan } // Literal.Number
|
107
|
+
.s { color: $sol-magenta } // Literal.String
|
108
|
+
.na { color: $sol-cyan } // Name.Attribute
|
109
|
+
.nb { color: $sol-blue } // Name.Builtin
|
110
|
+
.nc { color: $sol-violet; font-weight: bold } // Name.Class
|
111
|
+
.no { color: $sol-cyan } // Name.Constant
|
112
|
+
.ni { color: $sol-violet } // Name.Entity
|
113
|
+
.ne { color: $sol-violet; font-weight: bold } // Name.Exception
|
114
|
+
.nf { color: $sol-blue; font-weight: bold } // Name.Function
|
115
|
+
.nn { color: $sol-mono00 } // Name.Namespace
|
116
|
+
.nt { color: $sol-blue } // Name.Tag
|
117
|
+
.nv { color: $sol-cyan } // Name.Variable
|
118
|
+
.ow { color: $sol-mono01; font-weight: bold } // Operator.Word
|
119
|
+
.w { color: $sol-mono1 } // Text.Whitespace
|
120
|
+
.mf { color: $sol-cyan } // Literal.Number.Float
|
121
|
+
.mh { color: $sol-cyan } // Literal.Number.Hex
|
122
|
+
.mi { color: $sol-cyan } // Literal.Number.Integer
|
123
|
+
.mo { color: $sol-cyan } // Literal.Number.Oct
|
124
|
+
.sb { color: $sol-magenta } // Literal.String.Backtick
|
125
|
+
.sc { color: $sol-magenta } // Literal.String.Char
|
126
|
+
.sd { color: $sol-magenta } // Literal.String.Doc
|
127
|
+
.s2 { color: $sol-magenta } // Literal.String.Double
|
128
|
+
.se { color: $sol-magenta } // Literal.String.Escape
|
129
|
+
.sh { color: $sol-magenta } // Literal.String.Heredoc
|
130
|
+
.si { color: $sol-magenta } // Literal.String.Interpol
|
131
|
+
.sx { color: $sol-magenta } // Literal.String.Other
|
132
|
+
.sr { color: $sol-green } // Literal.String.Regex
|
133
|
+
.s1 { color: $sol-magenta } // Literal.String.Single
|
134
|
+
.ss { color: $sol-magenta } // Literal.String.Symbol
|
135
|
+
.bp { color: $sol-mono1 } // Name.Builtin.Pseudo
|
136
|
+
.vc { color: $sol-cyan } // Name.Variable.Class
|
137
|
+
.vg { color: $sol-cyan } // Name.Variable.Global
|
138
|
+
.vi { color: $sol-cyan } // Name.Variable.Instance
|
139
|
+
.il { color: $sol-cyan } // Literal.Number.Integer.Long
|
140
|
+
}
|
@@ -1,51 +1,51 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2
|
-
|
3
|
-
<symbol id="dribbble" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12 24C5.385 24 0 18.615 0 12S5.385 0 12 0s12 5.385 12 12-5.385 12-12 12zm10.12-10.358c-.35-.11-3.17-.953-6.384-.438 1.34 3.684 1.887 6.684 1.992 7.308 2.3-1.555 3.936-4.02 4.395-6.87zm-6.115 7.808c-.153-.9-.75-4.032-2.19-7.77l-.066.02c-5.79 2.015-7.86 6.025-8.04 6.4 1.73 1.358 3.92 2.166 6.29 2.166 1.42 0 2.77-.29 4-.814zm-11.62-2.58c.232-.4 3.045-5.055 8.332-6.765.135-.045.27-.084.405-.12-.26-.585-.54-1.167-.832-1.74C7.17 11.775 2.206 11.71 1.756 11.7l-.004.312c0 2.633.998 5.037 2.634 6.855zm-2.42-8.955c.46.008 4.683.026 9.477-1.248-1.698-3.018-3.53-5.558-3.8-5.928-2.868 1.35-5.01 3.99-5.676 7.17zM9.6 2.052c.282.38 2.145 2.914 3.822 6 3.645-1.365 5.19-3.44 5.373-3.702-1.81-1.61-4.19-2.586-6.795-2.586-.825 0-1.63.1-2.4.285zm10.335 3.483c-.218.29-1.935 2.493-5.724 4.04.24.49.47.985.68 1.486.08.18.15.36.22.53 3.41-.43 6.8.26 7.14.33-.02-2.42-.88-4.64-2.31-6.38z"/></symbol>
|
4
|
-
|
5
|
-
<symbol id="facebook" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M23.9981 11.9991C23.9981 5.37216 18.626 0 11.9991 0C5.37216 0 0 5.37216 0 11.9991C0 17.9882 4.38789 22.9522 10.1242 23.8524V15.4676H7.07758V11.9991H10.1242V9.35553C10.1242 6.34826 11.9156 4.68714 14.6564 4.68714C15.9692 4.68714 17.3424 4.92149 17.3424 4.92149V7.87439H15.8294C14.3388 7.87439 13.8739 8.79933 13.8739 9.74824V11.9991H17.2018L16.6698 15.4676H13.8739V23.8524C19.6103 22.9522 23.9981 17.9882 23.9981 11.9991Z"/></symbol>
|
6
|
-
|
7
|
-
<symbol id="flickr" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M0 12c0 3.074 2.494 5.564 5.565 5.564 3.075 0 5.569-2.49 5.569-5.564S8.641 6.436 5.565 6.436C2.495 6.436 0 8.926 0 12zm12.866 0c0 3.074 2.493 5.564 5.567 5.564C21.496 17.564 24 15.074 24 12s-2.492-5.564-5.564-5.564c-3.075 0-5.57 2.49-5.57 5.564z"/></symbol>
|
8
|
-
|
9
|
-
<symbol id="github" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></symbol>
|
10
|
-
|
11
|
-
<symbol id="instagram" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z"/></symbol>
|
12
|
-
|
13
|
-
<symbol id="linkedin" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></symbol>
|
14
|
-
|
15
|
-
<symbol id="pinterest" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z"/></symbol>
|
16
|
-
|
17
|
-
<symbol id="rss" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M19.199 24C19.199 13.467 10.533 4.8 0 4.8V0c13.165 0 24 10.835 24 24h-4.801zM3.291 17.415c1.814 0 3.293 1.479 3.293 3.295 0 1.813-1.485 3.29-3.301 3.29C1.47 24 0 22.526 0 20.71s1.475-3.294 3.291-3.295zM15.909 24h-4.665c0-6.169-5.075-11.245-11.244-11.245V8.09c8.727 0 15.909 7.184 15.909 15.91z"/></symbol>
|
18
|
-
|
19
|
-
<symbol id="stackoverflow" class="svg-icon" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12.658 14.577v-4.27h1.423V16H1.23v-5.693h1.42v4.27h10.006zm-8.583-1.423h7.16V11.73h-7.16v1.424zm.173-3.235l6.987 1.46.3-1.38L4.55 8.54l-.302 1.38zm.906-3.37l6.47 3.02.602-1.3-6.47-3.02-.602 1.29zm1.81-3.19l5.478 4.57.906-1.08L7.87 2.28l-.9 1.078zM10.502 0L9.338.863l4.27 5.735 1.164-.862L10.5 0z"/></symbol>
|
20
|
-
|
21
|
-
<symbol id="twitter" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M23.954 4.569c-.885.389-1.83.654-2.825.775 1.014-.611 1.794-1.574 2.163-2.723-.951.555-2.005.959-3.127 1.184-.896-.959-2.173-1.559-3.591-1.559-2.717 0-4.92 2.203-4.92 4.917 0 .39.045.765.127 1.124C7.691 8.094 4.066 6.13 1.64 3.161c-.427.722-.666 1.561-.666 2.475 0 1.71.87 3.213 2.188 4.096-.807-.026-1.566-.248-2.228-.616v.061c0 2.385 1.693 4.374 3.946 4.827-.413.111-.849.171-1.296.171-.314 0-.615-.03-.916-.086.631 1.953 2.445 3.377 4.604 3.417-1.68 1.319-3.809 2.105-6.102 2.105-.39 0-.779-.023-1.17-.067 2.189 1.394 4.768 2.209 7.557 2.209 9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63.961-.689 1.8-1.56 2.46-2.548l-.047-.02z"/></symbol>
|
22
|
-
|
23
|
-
<symbol id="youtube" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M23.495 6.205a3.007 3.007 0 0 0-2.088-2.088c-1.87-.501-9.396-.501-9.396-.501s-7.507-.01-9.396.501A3.007 3.007 0 0 0 .527 6.205a31.247 31.247 0 0 0-.522 5.805 31.247 31.247 0 0 0 .522 5.783 3.007 3.007 0 0 0 2.088 2.088c1.868.502 9.396.502 9.396.502s7.506 0 9.396-.502a3.007 3.007 0 0 0 2.088-2.088 31.247 31.247 0 0 0 .5-5.783 31.247 31.247 0 0 0-.5-5.805zM9.609 15.601V8.408l6.264 3.602z"/></symbol>
|
24
|
-
|
25
|
-
<symbol id="mail" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M11.585 5.267c1.834 0 3.558.811 4.824 2.08v.004c0-.609.41-1.068.979-1.068h.145c.891 0 1.073.842 1.073 1.109l.005 9.475c-.063.621.64.941 1.029.543 1.521-1.564 3.342-8.038-.946-11.79-3.996-3.497-9.357-2.921-12.209-.955-3.031 2.091-4.971 6.718-3.086 11.064 2.054 4.74 7.931 6.152 11.424 4.744 1.769-.715 2.586 1.676.749 2.457-2.776 1.184-10.502 1.064-14.11-5.188C-.977 13.521-.847 6.093 5.62 2.245 10.567-.698 17.09.117 21.022 4.224c4.111 4.294 3.872 12.334-.139 15.461-1.816 1.42-4.516.037-4.498-2.031l-.019-.678c-1.265 1.256-2.948 1.988-4.782 1.988-3.625 0-6.813-3.189-6.813-6.812 0-3.659 3.189-6.885 6.814-6.885zm4.561 6.623c-.137-2.653-2.106-4.249-4.484-4.249h-.09c-2.745 0-4.268 2.159-4.268 4.61 0 2.747 1.842 4.481 4.256 4.481 2.693 0 4.464-1.973 4.592-4.306l-.006-.536z"/></symbol>
|
26
|
-
|
27
|
-
<symbol id="mastodon" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414">
|
28
|
-
<path transform="scale(0.07)" d="M211.80734 139.0875c-3.18125 16.36625-28.4925 34.2775-57.5625 37.74875-15.15875 1.80875-30.08375 3.47125-45.99875 2.74125-26.0275-1.1925-46.565-6.2125-46.565-6.2125 0 2.53375.15625 4.94625.46875 7.2025 3.38375 25.68625 25.47 27.225 46.39125 27.9425 21.11625.7225 39.91875-5.20625 39.91875-5.20625l.8675 19.09s-14.77 7.93125-41.08125 9.39c-14.50875.7975-32.52375-.365-53.50625-5.91875C9.23234 213.82 1.40609 165.31125.20859 116.09125c-.365-14.61375-.14-28.39375-.14-39.91875 0-50.33 32.97625-65.0825 32.97625-65.0825C49.67234 3.45375 78.20359.2425 107.86484 0h.72875c29.66125.2425 58.21125 3.45375 74.8375 11.09 0 0 32.975 14.7525 32.975 65.0825 0 0 .41375 37.13375-4.59875 62.915"/>
|
29
|
-
<path transform="scale(0.07)" fill="#FFF" d="M177.50984 80.077v60.94125h-24.14375v-59.15c0-12.46875-5.24625-18.7975-15.74-18.7975-11.6025 0-17.4175 7.5075-17.4175 22.3525v32.37625H96.20734V85.42325c0-14.845-5.81625-22.3525-17.41875-22.3525-10.49375 0-15.74 6.32875-15.74 18.7975v59.15H38.90484V80.077c0-12.455 3.17125-22.3525 9.54125-29.675 6.56875-7.3225 15.17125-11.07625 25.85-11.07625 12.355 0 21.71125 4.74875 27.8975 14.2475l6.01375 10.08125 6.015-10.08125c6.185-9.49875 15.54125-14.2475 27.8975-14.2475 10.6775 0 19.28 3.75375 25.85 11.07625 6.36875 7.3225 9.54 17.22 9.54 29.675"/>
|
30
|
-
</symbol>
|
31
|
-
|
32
|
-
<symbol id="microdotblog" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414">
|
33
|
-
<path d="M21.4 17.7c-2 2.6-1 4.8-.3 5.9.3.4-.1.4-.3.4a6 6 0 0 1-4-2.7c-.2-.1-.3-.2-.5-.1-1.4.4-2.8.7-4.3.6C5.4 21.8 0 17 0 11 0 5 5.4 0 12 0s12 4.9 12 11c0 2.5-1 4.8-2.6 6.7zM12 14l3.2 2.2a.4.4 0 0 0 .6-.4L14.6 12l3.1-2.4a.4.4 0 0 0-.2-.6h-3.9l-1.3-3.8a.4.4 0 0 0-.6 0L10.4 9h-4a.4.4 0 0 0-.1.7l3 2.4-1 3.7a.4.4 0 0 0 .5.4L12 14z"/>
|
34
|
-
</symbol>
|
35
|
-
|
36
|
-
<symbol id="telegram" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414">
|
37
|
-
<path d="M23.91 3.79L20.3 20.84c-.25 1.21-.98 1.5-2 .94l-5.5-4.07-2.66 2.57c-.3.3-.55.56-1.1.56-.72 0-.6-.27-.84-.95L6.3 13.7l-5.45-1.7c-1.18-.35-1.19-1.16.26-1.75l21.26-8.2c.97-.43 1.9.24 1.53 1.73z"/>
|
38
|
-
</symbol>
|
39
|
-
|
40
|
-
<symbol id="keybase" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414">
|
41
|
-
<path d="M10.446 21.371c0 .528-.428.953-.954.953-.525 0-.954-.425-.954-.953 0-.526.428-.954.953-.954.524 0 .951.431.951.955m5.922-.001c0 .528-.428.953-.955.953-.526 0-.952-.425-.952-.953 0-.526.423-.954.949-.954s.954.431.954.955M20.904 12.213l-.156-.204c-.046-.06-.096-.116-.143-.175-.045-.061-.094-.113-.141-.169-.104-.12-.209-.239-.319-.359l-.076-.08-.091-.099-.135-.131c-.015-.018-.032-.034-.05-.053-1.16-1.139-2.505-1.986-3.955-2.504l-.23-.078c.012-.027.024-.055.035-.083.41-1.064.367-2.223-.12-3.255-.491-1.035-1.356-1.8-2.438-2.16-.656-.216-1.23-.319-1.711-.305-.033-.105-.1-.577.496-1.848L10.663 0l-.287.399c-.33.455-.648.895-.945 1.328-.328-.345-.766-.552-1.245-.58L6.79 1.061h-.012c-.033-.003-.07-.003-.104-.003-.99 0-1.81.771-1.87 1.755l-.088 1.402v.003c-.061 1.029.727 1.915 1.755 1.979l1.002.061c-.065.84.073 1.62.405 2.306-1.346.562-2.586 1.401-3.66 2.484C.913 14.391.913 18.051.913 20.994v1.775l1.305-1.387c.266.93.652 1.807 1.145 2.615H5.06c-.833-1.114-1.419-2.426-1.68-3.848l1.913-2.03-.985 3.091 1.74-1.268c3.075-2.234 6.744-2.75 10.91-1.529 1.805.532 3.56.039 4.473-1.257l.104-.165c.091.498.141.998.141 1.496 0 1.563-.255 3.687-1.38 5.512h1.611c.776-1.563 1.181-3.432 1.181-5.512-.001-2.199-.786-4.421-2.184-6.274zM8.894 6.191c.123-1.002.578-1.949 1.23-2.97.025.05.054.097.084.144.264.398.713.625 1.199.605.217-.008.605.025 1.233.232.714.236 1.286.744 1.608 1.425s.349 1.442.079 2.149c-.173.445-.454.82-.806 1.109l-.408-.502-.002-.003c-.279-.341-.694-.535-1.134-.535-.335 0-.664.117-.925.33-.334.27-.514.66-.534 1.058-1.2-.541-1.8-1.643-1.628-3.041l.004-.001zm4.304 5.11l-.519.425c-.046.036-.095.053-.146.053-.066 0-.133-.03-.177-.085l-.111-.135c-.083-.1-.067-.25.034-.334l.51-.42-1.055-1.299c-.109-.133-.091-.33.044-.436.058-.048.126-.072.194-.072.091 0 .181.038.24.113l2.963 3.645c.109.135.09.33-.042.436-.039.029-.082.053-.126.063-.023.006-.045.009-.07.009-.09 0-.178-.04-.24-.113l-.295-.365-1.045.854c-.046.037-.1.055-.154.055-.068 0-.139-.03-.186-.09l-.477-.579c-.082-.102-.068-.252.035-.336l1.051-.857-.426-.533-.002.001zM7.753 4.866l-1.196-.075c-.255-.015-.45-.235-.435-.488l.09-1.401c.014-.245.216-.436.461-.436h.024l1.401.091c.123.006.236.06.317.152.083.094.123.21.116.336l-.007.101c-.32.567-.585 1.134-.773 1.72h.002zm12.524 11.481c-.565.805-1.687 1.081-2.924.718-3.886-1.141-7.396-.903-10.468.701l1.636-5.123-5.291 5.609c.099-3.762 2.453-6.966 5.758-8.311.471.373 1.034.66 1.673.841.16.044.322.074.48.102-.183.458-.119.997.21 1.407l.075.09c-.172.45-.105.975.221 1.374l.475.582c.266.325.659.513 1.079.513.321 0 .635-.111.886-.314l.285-.232c.174.074.367.113.566.113.113 0 .222-.01.33-.035.218-.05.424-.15.598-.291.623-.51.72-1.435.209-2.06l-1.67-2.056c.145-.117.281-.244.408-.381.135.037.271.078.4.12.266.097.533.198.795.315 1.005.445 1.954 1.1 2.771 1.897.029.03.059.055.085.083l.17.175c.038.039.076.079.111.12.079.085.16.175.239.267l.126.15c.045.053.086.104.13.16l.114.15c.04.051.079.102.117.154.838 1.149.987 2.329.404 3.157v.005zM7.719 4.115l-.835-.051.053-.835.834.051-.052.835z"/>
|
42
|
-
</symbol>
|
43
|
-
|
44
|
-
<symbol id="devto" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414">
|
45
|
-
<path d="M7.42 10.05c-.18-.16-.46-.23-.84-.23H6l.02 2.44.04 2.45.56-.02c.41 0 .63-.07.83-.26.24-.24.26-.36.26-2.2 0-1.91-.02-1.96-.29-2.18zM0 4.94v14.12h24V4.94H0zM8.56 15.3c-.44.58-1.06.77-2.53.77H4.71V8.53h1.4c1.67 0 2.16.18 2.6.9.27.43.29.6.32 2.57.05 2.23-.02 2.73-.47 3.3zm5.09-5.47h-2.47v1.77h1.52v1.28l-.72.04-.75.03v1.77l1.22.03 1.2.04v1.28h-1.6c-1.53 0-1.6-.01-1.87-.3l-.3-.28v-3.16c0-3.02.01-3.18.25-3.48.23-.31.25-.31 1.88-.31h1.64v1.3zm4.68 5.45c-.17.43-.64.79-1 .79-.18 0-.45-.15-.67-.39-.32-.32-.45-.63-.82-2.08l-.9-3.39-.45-1.67h.76c.4 0 .75.02.75.05 0 .06 1.16 4.54 1.26 4.83.04.15.32-.7.73-2.3l.66-2.52.74-.04c.4-.02.73 0 .73.04 0 .14-1.67 6.38-1.8 6.68z"/>
|
46
|
-
</symbol>
|
47
|
-
|
48
|
-
<symbol id="gitlab" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 1792 1792">
|
49
|
-
<path d="M104 706l792 1015-868-630q-18-13-25-34.5t0-42.5l101-308zm462 0h660l-330 1015zm-198-612l198 612h-462l198-612q8-23 33-23t33 23zm1320 612l101 308q7 21 0 42.5t-25 34.5l-868 630 792-1015zm0 0h-462l198-612q8-23 33-23t33 23z"/>
|
50
|
-
</symbol>
|
51
|
-
</svg>
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2
|
+
|
3
|
+
<symbol id="dribbble" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12 24C5.385 24 0 18.615 0 12S5.385 0 12 0s12 5.385 12 12-5.385 12-12 12zm10.12-10.358c-.35-.11-3.17-.953-6.384-.438 1.34 3.684 1.887 6.684 1.992 7.308 2.3-1.555 3.936-4.02 4.395-6.87zm-6.115 7.808c-.153-.9-.75-4.032-2.19-7.77l-.066.02c-5.79 2.015-7.86 6.025-8.04 6.4 1.73 1.358 3.92 2.166 6.29 2.166 1.42 0 2.77-.29 4-.814zm-11.62-2.58c.232-.4 3.045-5.055 8.332-6.765.135-.045.27-.084.405-.12-.26-.585-.54-1.167-.832-1.74C7.17 11.775 2.206 11.71 1.756 11.7l-.004.312c0 2.633.998 5.037 2.634 6.855zm-2.42-8.955c.46.008 4.683.026 9.477-1.248-1.698-3.018-3.53-5.558-3.8-5.928-2.868 1.35-5.01 3.99-5.676 7.17zM9.6 2.052c.282.38 2.145 2.914 3.822 6 3.645-1.365 5.19-3.44 5.373-3.702-1.81-1.61-4.19-2.586-6.795-2.586-.825 0-1.63.1-2.4.285zm10.335 3.483c-.218.29-1.935 2.493-5.724 4.04.24.49.47.985.68 1.486.08.18.15.36.22.53 3.41-.43 6.8.26 7.14.33-.02-2.42-.88-4.64-2.31-6.38z"/></symbol>
|
4
|
+
|
5
|
+
<symbol id="facebook" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M23.9981 11.9991C23.9981 5.37216 18.626 0 11.9991 0C5.37216 0 0 5.37216 0 11.9991C0 17.9882 4.38789 22.9522 10.1242 23.8524V15.4676H7.07758V11.9991H10.1242V9.35553C10.1242 6.34826 11.9156 4.68714 14.6564 4.68714C15.9692 4.68714 17.3424 4.92149 17.3424 4.92149V7.87439H15.8294C14.3388 7.87439 13.8739 8.79933 13.8739 9.74824V11.9991H17.2018L16.6698 15.4676H13.8739V23.8524C19.6103 22.9522 23.9981 17.9882 23.9981 11.9991Z"/></symbol>
|
6
|
+
|
7
|
+
<symbol id="flickr" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M0 12c0 3.074 2.494 5.564 5.565 5.564 3.075 0 5.569-2.49 5.569-5.564S8.641 6.436 5.565 6.436C2.495 6.436 0 8.926 0 12zm12.866 0c0 3.074 2.493 5.564 5.567 5.564C21.496 17.564 24 15.074 24 12s-2.492-5.564-5.564-5.564c-3.075 0-5.57 2.49-5.57 5.564z"/></symbol>
|
8
|
+
|
9
|
+
<symbol id="github" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></symbol>
|
10
|
+
|
11
|
+
<symbol id="instagram" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z"/></symbol>
|
12
|
+
|
13
|
+
<symbol id="linkedin" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></symbol>
|
14
|
+
|
15
|
+
<symbol id="pinterest" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z"/></symbol>
|
16
|
+
|
17
|
+
<symbol id="rss" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M19.199 24C19.199 13.467 10.533 4.8 0 4.8V0c13.165 0 24 10.835 24 24h-4.801zM3.291 17.415c1.814 0 3.293 1.479 3.293 3.295 0 1.813-1.485 3.29-3.301 3.29C1.47 24 0 22.526 0 20.71s1.475-3.294 3.291-3.295zM15.909 24h-4.665c0-6.169-5.075-11.245-11.244-11.245V8.09c8.727 0 15.909 7.184 15.909 15.91z"/></symbol>
|
18
|
+
|
19
|
+
<symbol id="stackoverflow" class="svg-icon" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12.658 14.577v-4.27h1.423V16H1.23v-5.693h1.42v4.27h10.006zm-8.583-1.423h7.16V11.73h-7.16v1.424zm.173-3.235l6.987 1.46.3-1.38L4.55 8.54l-.302 1.38zm.906-3.37l6.47 3.02.602-1.3-6.47-3.02-.602 1.29zm1.81-3.19l5.478 4.57.906-1.08L7.87 2.28l-.9 1.078zM10.502 0L9.338.863l4.27 5.735 1.164-.862L10.5 0z"/></symbol>
|
20
|
+
|
21
|
+
<symbol id="twitter" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M23.954 4.569c-.885.389-1.83.654-2.825.775 1.014-.611 1.794-1.574 2.163-2.723-.951.555-2.005.959-3.127 1.184-.896-.959-2.173-1.559-3.591-1.559-2.717 0-4.92 2.203-4.92 4.917 0 .39.045.765.127 1.124C7.691 8.094 4.066 6.13 1.64 3.161c-.427.722-.666 1.561-.666 2.475 0 1.71.87 3.213 2.188 4.096-.807-.026-1.566-.248-2.228-.616v.061c0 2.385 1.693 4.374 3.946 4.827-.413.111-.849.171-1.296.171-.314 0-.615-.03-.916-.086.631 1.953 2.445 3.377 4.604 3.417-1.68 1.319-3.809 2.105-6.102 2.105-.39 0-.779-.023-1.17-.067 2.189 1.394 4.768 2.209 7.557 2.209 9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63.961-.689 1.8-1.56 2.46-2.548l-.047-.02z"/></symbol>
|
22
|
+
|
23
|
+
<symbol id="youtube" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M23.495 6.205a3.007 3.007 0 0 0-2.088-2.088c-1.87-.501-9.396-.501-9.396-.501s-7.507-.01-9.396.501A3.007 3.007 0 0 0 .527 6.205a31.247 31.247 0 0 0-.522 5.805 31.247 31.247 0 0 0 .522 5.783 3.007 3.007 0 0 0 2.088 2.088c1.868.502 9.396.502 9.396.502s7.506 0 9.396-.502a3.007 3.007 0 0 0 2.088-2.088 31.247 31.247 0 0 0 .5-5.783 31.247 31.247 0 0 0-.5-5.805zM9.609 15.601V8.408l6.264 3.602z"/></symbol>
|
24
|
+
|
25
|
+
<symbol id="mail" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M11.585 5.267c1.834 0 3.558.811 4.824 2.08v.004c0-.609.41-1.068.979-1.068h.145c.891 0 1.073.842 1.073 1.109l.005 9.475c-.063.621.64.941 1.029.543 1.521-1.564 3.342-8.038-.946-11.79-3.996-3.497-9.357-2.921-12.209-.955-3.031 2.091-4.971 6.718-3.086 11.064 2.054 4.74 7.931 6.152 11.424 4.744 1.769-.715 2.586 1.676.749 2.457-2.776 1.184-10.502 1.064-14.11-5.188C-.977 13.521-.847 6.093 5.62 2.245 10.567-.698 17.09.117 21.022 4.224c4.111 4.294 3.872 12.334-.139 15.461-1.816 1.42-4.516.037-4.498-2.031l-.019-.678c-1.265 1.256-2.948 1.988-4.782 1.988-3.625 0-6.813-3.189-6.813-6.812 0-3.659 3.189-6.885 6.814-6.885zm4.561 6.623c-.137-2.653-2.106-4.249-4.484-4.249h-.09c-2.745 0-4.268 2.159-4.268 4.61 0 2.747 1.842 4.481 4.256 4.481 2.693 0 4.464-1.973 4.592-4.306l-.006-.536z"/></symbol>
|
26
|
+
|
27
|
+
<symbol id="mastodon" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414">
|
28
|
+
<path transform="scale(0.07)" d="M211.80734 139.0875c-3.18125 16.36625-28.4925 34.2775-57.5625 37.74875-15.15875 1.80875-30.08375 3.47125-45.99875 2.74125-26.0275-1.1925-46.565-6.2125-46.565-6.2125 0 2.53375.15625 4.94625.46875 7.2025 3.38375 25.68625 25.47 27.225 46.39125 27.9425 21.11625.7225 39.91875-5.20625 39.91875-5.20625l.8675 19.09s-14.77 7.93125-41.08125 9.39c-14.50875.7975-32.52375-.365-53.50625-5.91875C9.23234 213.82 1.40609 165.31125.20859 116.09125c-.365-14.61375-.14-28.39375-.14-39.91875 0-50.33 32.97625-65.0825 32.97625-65.0825C49.67234 3.45375 78.20359.2425 107.86484 0h.72875c29.66125.2425 58.21125 3.45375 74.8375 11.09 0 0 32.975 14.7525 32.975 65.0825 0 0 .41375 37.13375-4.59875 62.915"/>
|
29
|
+
<path transform="scale(0.07)" fill="#FFF" d="M177.50984 80.077v60.94125h-24.14375v-59.15c0-12.46875-5.24625-18.7975-15.74-18.7975-11.6025 0-17.4175 7.5075-17.4175 22.3525v32.37625H96.20734V85.42325c0-14.845-5.81625-22.3525-17.41875-22.3525-10.49375 0-15.74 6.32875-15.74 18.7975v59.15H38.90484V80.077c0-12.455 3.17125-22.3525 9.54125-29.675 6.56875-7.3225 15.17125-11.07625 25.85-11.07625 12.355 0 21.71125 4.74875 27.8975 14.2475l6.01375 10.08125 6.015-10.08125c6.185-9.49875 15.54125-14.2475 27.8975-14.2475 10.6775 0 19.28 3.75375 25.85 11.07625 6.36875 7.3225 9.54 17.22 9.54 29.675"/>
|
30
|
+
</symbol>
|
31
|
+
|
32
|
+
<symbol id="microdotblog" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414">
|
33
|
+
<path d="M21.4 17.7c-2 2.6-1 4.8-.3 5.9.3.4-.1.4-.3.4a6 6 0 0 1-4-2.7c-.2-.1-.3-.2-.5-.1-1.4.4-2.8.7-4.3.6C5.4 21.8 0 17 0 11 0 5 5.4 0 12 0s12 4.9 12 11c0 2.5-1 4.8-2.6 6.7zM12 14l3.2 2.2a.4.4 0 0 0 .6-.4L14.6 12l3.1-2.4a.4.4 0 0 0-.2-.6h-3.9l-1.3-3.8a.4.4 0 0 0-.6 0L10.4 9h-4a.4.4 0 0 0-.1.7l3 2.4-1 3.7a.4.4 0 0 0 .5.4L12 14z"/>
|
34
|
+
</symbol>
|
35
|
+
|
36
|
+
<symbol id="telegram" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414">
|
37
|
+
<path d="M23.91 3.79L20.3 20.84c-.25 1.21-.98 1.5-2 .94l-5.5-4.07-2.66 2.57c-.3.3-.55.56-1.1.56-.72 0-.6-.27-.84-.95L6.3 13.7l-5.45-1.7c-1.18-.35-1.19-1.16.26-1.75l21.26-8.2c.97-.43 1.9.24 1.53 1.73z"/>
|
38
|
+
</symbol>
|
39
|
+
|
40
|
+
<symbol id="keybase" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414">
|
41
|
+
<path d="M10.446 21.371c0 .528-.428.953-.954.953-.525 0-.954-.425-.954-.953 0-.526.428-.954.953-.954.524 0 .951.431.951.955m5.922-.001c0 .528-.428.953-.955.953-.526 0-.952-.425-.952-.953 0-.526.423-.954.949-.954s.954.431.954.955M20.904 12.213l-.156-.204c-.046-.06-.096-.116-.143-.175-.045-.061-.094-.113-.141-.169-.104-.12-.209-.239-.319-.359l-.076-.08-.091-.099-.135-.131c-.015-.018-.032-.034-.05-.053-1.16-1.139-2.505-1.986-3.955-2.504l-.23-.078c.012-.027.024-.055.035-.083.41-1.064.367-2.223-.12-3.255-.491-1.035-1.356-1.8-2.438-2.16-.656-.216-1.23-.319-1.711-.305-.033-.105-.1-.577.496-1.848L10.663 0l-.287.399c-.33.455-.648.895-.945 1.328-.328-.345-.766-.552-1.245-.58L6.79 1.061h-.012c-.033-.003-.07-.003-.104-.003-.99 0-1.81.771-1.87 1.755l-.088 1.402v.003c-.061 1.029.727 1.915 1.755 1.979l1.002.061c-.065.84.073 1.62.405 2.306-1.346.562-2.586 1.401-3.66 2.484C.913 14.391.913 18.051.913 20.994v1.775l1.305-1.387c.266.93.652 1.807 1.145 2.615H5.06c-.833-1.114-1.419-2.426-1.68-3.848l1.913-2.03-.985 3.091 1.74-1.268c3.075-2.234 6.744-2.75 10.91-1.529 1.805.532 3.56.039 4.473-1.257l.104-.165c.091.498.141.998.141 1.496 0 1.563-.255 3.687-1.38 5.512h1.611c.776-1.563 1.181-3.432 1.181-5.512-.001-2.199-.786-4.421-2.184-6.274zM8.894 6.191c.123-1.002.578-1.949 1.23-2.97.025.05.054.097.084.144.264.398.713.625 1.199.605.217-.008.605.025 1.233.232.714.236 1.286.744 1.608 1.425s.349 1.442.079 2.149c-.173.445-.454.82-.806 1.109l-.408-.502-.002-.003c-.279-.341-.694-.535-1.134-.535-.335 0-.664.117-.925.33-.334.27-.514.66-.534 1.058-1.2-.541-1.8-1.643-1.628-3.041l.004-.001zm4.304 5.11l-.519.425c-.046.036-.095.053-.146.053-.066 0-.133-.03-.177-.085l-.111-.135c-.083-.1-.067-.25.034-.334l.51-.42-1.055-1.299c-.109-.133-.091-.33.044-.436.058-.048.126-.072.194-.072.091 0 .181.038.24.113l2.963 3.645c.109.135.09.33-.042.436-.039.029-.082.053-.126.063-.023.006-.045.009-.07.009-.09 0-.178-.04-.24-.113l-.295-.365-1.045.854c-.046.037-.1.055-.154.055-.068 0-.139-.03-.186-.09l-.477-.579c-.082-.102-.068-.252.035-.336l1.051-.857-.426-.533-.002.001zM7.753 4.866l-1.196-.075c-.255-.015-.45-.235-.435-.488l.09-1.401c.014-.245.216-.436.461-.436h.024l1.401.091c.123.006.236.06.317.152.083.094.123.21.116.336l-.007.101c-.32.567-.585 1.134-.773 1.72h.002zm12.524 11.481c-.565.805-1.687 1.081-2.924.718-3.886-1.141-7.396-.903-10.468.701l1.636-5.123-5.291 5.609c.099-3.762 2.453-6.966 5.758-8.311.471.373 1.034.66 1.673.841.16.044.322.074.48.102-.183.458-.119.997.21 1.407l.075.09c-.172.45-.105.975.221 1.374l.475.582c.266.325.659.513 1.079.513.321 0 .635-.111.886-.314l.285-.232c.174.074.367.113.566.113.113 0 .222-.01.33-.035.218-.05.424-.15.598-.291.623-.51.72-1.435.209-2.06l-1.67-2.056c.145-.117.281-.244.408-.381.135.037.271.078.4.12.266.097.533.198.795.315 1.005.445 1.954 1.1 2.771 1.897.029.03.059.055.085.083l.17.175c.038.039.076.079.111.12.079.085.16.175.239.267l.126.15c.045.053.086.104.13.16l.114.15c.04.051.079.102.117.154.838 1.149.987 2.329.404 3.157v.005zM7.719 4.115l-.835-.051.053-.835.834.051-.052.835z"/>
|
42
|
+
</symbol>
|
43
|
+
|
44
|
+
<symbol id="devto" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414">
|
45
|
+
<path d="M7.42 10.05c-.18-.16-.46-.23-.84-.23H6l.02 2.44.04 2.45.56-.02c.41 0 .63-.07.83-.26.24-.24.26-.36.26-2.2 0-1.91-.02-1.96-.29-2.18zM0 4.94v14.12h24V4.94H0zM8.56 15.3c-.44.58-1.06.77-2.53.77H4.71V8.53h1.4c1.67 0 2.16.18 2.6.9.27.43.29.6.32 2.57.05 2.23-.02 2.73-.47 3.3zm5.09-5.47h-2.47v1.77h1.52v1.28l-.72.04-.75.03v1.77l1.22.03 1.2.04v1.28h-1.6c-1.53 0-1.6-.01-1.87-.3l-.3-.28v-3.16c0-3.02.01-3.18.25-3.48.23-.31.25-.31 1.88-.31h1.64v1.3zm4.68 5.45c-.17.43-.64.79-1 .79-.18 0-.45-.15-.67-.39-.32-.32-.45-.63-.82-2.08l-.9-3.39-.45-1.67h.76c.4 0 .75.02.75.05 0 .06 1.16 4.54 1.26 4.83.04.15.32-.7.73-2.3l.66-2.52.74-.04c.4-.02.73 0 .73.04 0 .14-1.67 6.38-1.8 6.68z"/>
|
46
|
+
</symbol>
|
47
|
+
|
48
|
+
<symbol id="gitlab" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 1792 1792">
|
49
|
+
<path d="M104 706l792 1015-868-630q-18-13-25-34.5t0-42.5l101-308zm462 0h660l-330 1015zm-198-612l198 612h-462l198-612q8-23 33-23t33 23zm1320 612l101 308q7 21 0 42.5t-25 34.5l-868 630 792-1015zm0 0h-462l198-612q8-23 33-23t33 23z"/>
|
50
|
+
</symbol>
|
51
|
+
</svg>
|
data/assets/css/style.scss
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
---
|
2
|
-
# Only the main Sass file needs front matter (the dashes are enough)
|
3
|
-
---
|
4
|
-
|
5
|
-
@import
|
6
|
-
"minima/skins/{{ site.minima.skin | default: 'classic' }}",
|
7
|
-
"minima/initialize";
|
1
|
+
---
|
2
|
+
# Only the main Sass file needs front matter (the dashes are enough)
|
3
|
+
---
|
4
|
+
|
5
|
+
@import
|
6
|
+
"minima/skins/{{ site.minima.skin | default: 'classic' }}",
|
7
|
+
"minima/initialize";
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: better-minima
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Keshiba Ryan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -128,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
128
128
|
- !ruby/object:Gem::Version
|
129
129
|
version: '0'
|
130
130
|
requirements: []
|
131
|
-
rubygems_version: 3.
|
131
|
+
rubygems_version: 3.1.2
|
132
132
|
signing_key:
|
133
133
|
specification_version: 4
|
134
134
|
summary: A better, minimal theme for Jekyll.
|