r-jekyll-theme 0.1.1
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 +21 -0
- data/README.md +55 -0
- data/_config.yml +59 -0
- data/_includes/content/multipage.html +10 -0
- data/_includes/content/singlepage.html +7 -0
- data/_includes/footer.html +17 -0
- data/_includes/glossary.md +21 -0
- data/_includes/head.html +20 -0
- data/_includes/header.html +24 -0
- data/_includes/print/cover_back.html +20 -0
- data/_includes/print/cover_front.html +12 -0
- data/_includes/print/print_button.html +1 -0
- data/_includes/toc/pages.html +21 -0
- data/_includes/toc/sections.html +170 -0
- data/_layouts/default.html +21 -0
- data/_layouts/singlepage_dev.html +20 -0
- data/_sass/_variables.scss +30 -0
- data/_sass/r.scss +40 -0
- data/_sass/r/content/abbr.scss +61 -0
- data/_sass/r/content/code.scss +123 -0
- data/_sass/r/content/image.scss +32 -0
- data/_sass/r/content/link.scss +22 -0
- data/_sass/r/content/list.scss +64 -0
- data/_sass/r/content/note.scss +41 -0
- data/_sass/r/content/paragraph.scss +16 -0
- data/_sass/r/content/quote.scss +27 -0
- data/_sass/r/content/table.scss +76 -0
- data/_sass/r/content/title.scss +64 -0
- data/_sass/r/layout/columns.scss +36 -0
- data/_sass/r/layout/desktop.scss +187 -0
- data/_sass/r/layout/mobile.scss +242 -0
- data/_sass/r/layout/print.scss +204 -0
- data/_sass/r/styling/animations.scss +43 -0
- data/_sass/r/styling/button.scss +26 -0
- data/_sass/r/styling/formatting.scss +10 -0
- data/_sass/r/styling/selection.scss +5 -0
- data/_sass/r/styling/shadow.scss +33 -0
- data/assets/bicycle.jpg +0 -0
- data/assets/favicon.svg +52 -0
- data/assets/icons/500px.svg +83 -0
- data/assets/icons/500px_dark.svg +83 -0
- data/assets/icons/email.svg +52 -0
- data/assets/icons/email_dark.svg +52 -0
- data/assets/icons/github.svg +79 -0
- data/assets/icons/github_dark.svg +79 -0
- data/assets/icons/linkedin.svg +53 -0
- data/assets/icons/linkedin_dark.svg +53 -0
- data/assets/icons/twitter.svg +46 -0
- data/assets/icons/twitter_dark.svg +46 -0
- data/assets/main.scss +3 -0
- metadata +107 -0
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
/*** General - START */
|
|
2
|
+
html {
|
|
3
|
+
font-size: 75%;
|
|
4
|
+
}
|
|
5
|
+
* {
|
|
6
|
+
font-family: $main-font;
|
|
7
|
+
line-height: 1.6em;
|
|
8
|
+
text-align: left;
|
|
9
|
+
color: $text-dark;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
div#site-logo-container,
|
|
13
|
+
div#site-nav-page,
|
|
14
|
+
footer#site-footer,
|
|
15
|
+
.screen {
|
|
16
|
+
display: none;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@page {
|
|
20
|
+
margin: 3.5rem 5rem;
|
|
21
|
+
}
|
|
22
|
+
/*** General - END */
|
|
23
|
+
|
|
24
|
+
/*** Front Cover - START */
|
|
25
|
+
div#cover-front {
|
|
26
|
+
break-after: always;
|
|
27
|
+
break-inside: avoid;
|
|
28
|
+
display: block;
|
|
29
|
+
page-break-after: always;
|
|
30
|
+
}
|
|
31
|
+
div#cover-front-content {
|
|
32
|
+
position: absolute;
|
|
33
|
+
top: 25vh;
|
|
34
|
+
width: 100%;
|
|
35
|
+
margin: 0 auto;
|
|
36
|
+
}
|
|
37
|
+
a#site-logo {
|
|
38
|
+
display: block;
|
|
39
|
+
width: 100%;
|
|
40
|
+
text-align: center;
|
|
41
|
+
font-size: 18rem;
|
|
42
|
+
font-weight: normal;
|
|
43
|
+
color: $primary-color;
|
|
44
|
+
text-decoration: none;
|
|
45
|
+
line-height: 0.8em;
|
|
46
|
+
font-family: $logo-font;
|
|
47
|
+
}
|
|
48
|
+
div#site-reference-container {
|
|
49
|
+
display: block;
|
|
50
|
+
width: 100%;
|
|
51
|
+
text-align: center;
|
|
52
|
+
}
|
|
53
|
+
a#site-reference {
|
|
54
|
+
color: $secondary-color;
|
|
55
|
+
text-decoration: none;
|
|
56
|
+
font-size: 2.4rem;
|
|
57
|
+
font-weight: bold;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
div.copyright{
|
|
61
|
+
font-size: 1rem;
|
|
62
|
+
display: block;
|
|
63
|
+
color: $background-middle;
|
|
64
|
+
font-weight: bold;
|
|
65
|
+
width: 100%;
|
|
66
|
+
text-align: center;
|
|
67
|
+
a {
|
|
68
|
+
text-decoration: none;
|
|
69
|
+
color: inherit;
|
|
70
|
+
font-weight: inherit;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
/*** Cover - END */
|
|
74
|
+
|
|
75
|
+
/*** TOC - START */
|
|
76
|
+
header#site-header {
|
|
77
|
+
display: block;
|
|
78
|
+
}
|
|
79
|
+
div#site-nav-section {
|
|
80
|
+
break-after: always;
|
|
81
|
+
}
|
|
82
|
+
div#toc-sections ul {
|
|
83
|
+
margin: 0;
|
|
84
|
+
}
|
|
85
|
+
div#toc-sections li {
|
|
86
|
+
color: $text-dark;
|
|
87
|
+
margin: 0.8rem 0;
|
|
88
|
+
font-size: 1.8rem;
|
|
89
|
+
}
|
|
90
|
+
#toc-sections a.nav-link {
|
|
91
|
+
text-decoration: none;
|
|
92
|
+
color: $secondary-color;
|
|
93
|
+
font-weight: bold;
|
|
94
|
+
}
|
|
95
|
+
/*** TOC - END */
|
|
96
|
+
|
|
97
|
+
/*** Avoid breaking elements - START */
|
|
98
|
+
h1,
|
|
99
|
+
h2,
|
|
100
|
+
h3,
|
|
101
|
+
h4,
|
|
102
|
+
h5,
|
|
103
|
+
h6,
|
|
104
|
+
img,
|
|
105
|
+
p,
|
|
106
|
+
ul,
|
|
107
|
+
ol,
|
|
108
|
+
section {
|
|
109
|
+
break-inside: avoid;
|
|
110
|
+
}
|
|
111
|
+
/*** Avoid breaking elements - END */
|
|
112
|
+
|
|
113
|
+
/*** Titles - START */
|
|
114
|
+
h1 {
|
|
115
|
+
font-size: 2.8rem;
|
|
116
|
+
page-break-before: always;
|
|
117
|
+
}
|
|
118
|
+
h2 {
|
|
119
|
+
font-size: 2.2rem;
|
|
120
|
+
}
|
|
121
|
+
h3 {
|
|
122
|
+
font-size: 2.0rem;
|
|
123
|
+
}
|
|
124
|
+
h4,
|
|
125
|
+
h5,
|
|
126
|
+
h6 {
|
|
127
|
+
font-size: 1.8rem;
|
|
128
|
+
}
|
|
129
|
+
h1.print-header {
|
|
130
|
+
margin: 0;
|
|
131
|
+
font-size: 3.8rem;
|
|
132
|
+
font-weight: bold;
|
|
133
|
+
color: $primary-color;
|
|
134
|
+
}
|
|
135
|
+
/*** Titles - END */
|
|
136
|
+
|
|
137
|
+
/*** Links - START */
|
|
138
|
+
main#page-content {
|
|
139
|
+
a {
|
|
140
|
+
border-bottom: none !important;
|
|
141
|
+
color: $text-dark;
|
|
142
|
+
}
|
|
143
|
+
a.expand {
|
|
144
|
+
color: $secondary-color;
|
|
145
|
+
}
|
|
146
|
+
a.expand::after {
|
|
147
|
+
content: " (" attr(href) ") ";
|
|
148
|
+
font-weight: normal;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
li,
|
|
152
|
+
p {
|
|
153
|
+
abbr,
|
|
154
|
+
abbr[title] {
|
|
155
|
+
border-bottom: none !important;
|
|
156
|
+
color: $text-dark;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
/*** Links - END */
|
|
161
|
+
|
|
162
|
+
/*** Back Cover - START */
|
|
163
|
+
div.print#cover-back {
|
|
164
|
+
page-break-before: always;
|
|
165
|
+
break-inside: avoid;
|
|
166
|
+
display: block;
|
|
167
|
+
font-size: 1.6rem;
|
|
168
|
+
|
|
169
|
+
div#cover-back-content {
|
|
170
|
+
width: 100%;
|
|
171
|
+
margin: 0 auto;
|
|
172
|
+
display: block;
|
|
173
|
+
page-break-inside: avoid;
|
|
174
|
+
|
|
175
|
+
div.footer-contact {
|
|
176
|
+
display: block;
|
|
177
|
+
|
|
178
|
+
ul {
|
|
179
|
+
margin: 0;
|
|
180
|
+
list-style: none;
|
|
181
|
+
padding: 0;
|
|
182
|
+
}
|
|
183
|
+
li {
|
|
184
|
+
display: flex;
|
|
185
|
+
flex-direction: row;
|
|
186
|
+
align-items: center;
|
|
187
|
+
margin: 0.8rem 0;
|
|
188
|
+
}
|
|
189
|
+
a {
|
|
190
|
+
text-decoration: none;
|
|
191
|
+
display: inline-block;
|
|
192
|
+
color: $secondary-color;
|
|
193
|
+
font-size: 1.8rem;
|
|
194
|
+
font-weight: bold;
|
|
195
|
+
}
|
|
196
|
+
img.footer-icon {
|
|
197
|
+
height: 2.8rem;
|
|
198
|
+
width: 2.8rem;
|
|
199
|
+
margin: 0 $margin 0 $margin-small;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
/*** Back Cover - END */
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/*** Page-level animations - START*/
|
|
2
|
+
main,
|
|
3
|
+
#toc-sections li {
|
|
4
|
+
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
|
|
5
|
+
-moz-animation: fadein 1s; /* Firefox < 16 */
|
|
6
|
+
-ms-animation: fadein 1s; /* Internet Explorer */
|
|
7
|
+
-o-animation: fadein 1s; /* Opera < 12.1 */
|
|
8
|
+
animation: fadein 1s;
|
|
9
|
+
}
|
|
10
|
+
@keyframes fadein {
|
|
11
|
+
from { opacity: 0.25; }
|
|
12
|
+
to { opacity: 1; }
|
|
13
|
+
}
|
|
14
|
+
/* Firefox < 16 */
|
|
15
|
+
@-moz-keyframes fadein {
|
|
16
|
+
from { opacity: 0.25; }
|
|
17
|
+
to { opacity: 1; }
|
|
18
|
+
}
|
|
19
|
+
/* Safari, Chrome and Opera > 12.1 */
|
|
20
|
+
@-webkit-keyframes fadein {
|
|
21
|
+
from { opacity: 0.25; }
|
|
22
|
+
to { opacity: 1; }
|
|
23
|
+
}
|
|
24
|
+
/* Internet Explorer */
|
|
25
|
+
@-ms-keyframes fadein {
|
|
26
|
+
from { opacity: 0.25; }
|
|
27
|
+
to { opacity: 1; }
|
|
28
|
+
}
|
|
29
|
+
/* Opera < 12.1 */
|
|
30
|
+
@-o-keyframes fadein {
|
|
31
|
+
from { opacity: 0.25; }
|
|
32
|
+
to { opacity: 1; }
|
|
33
|
+
}
|
|
34
|
+
/*** Page-level animations - END*/
|
|
35
|
+
|
|
36
|
+
a:hover,
|
|
37
|
+
a:active,
|
|
38
|
+
a:focus,
|
|
39
|
+
abbr[title]:hover,
|
|
40
|
+
abbr[title]:focus,
|
|
41
|
+
abbr[title]:active {
|
|
42
|
+
transition-duration: 0.5s;
|
|
43
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
input {
|
|
2
|
+
display: inline-block;
|
|
3
|
+
font-weight: bold;
|
|
4
|
+
border: none;
|
|
5
|
+
|
|
6
|
+
font-size: 1.8rem;
|
|
7
|
+
list-style: none;
|
|
8
|
+
padding: 0.25em 0.75em;
|
|
9
|
+
background-color: $background-middle;
|
|
10
|
+
color: $text-dark;
|
|
11
|
+
border-radius: $border-radius;
|
|
12
|
+
width: auto;
|
|
13
|
+
text-align: center;
|
|
14
|
+
display: inline;
|
|
15
|
+
text-decoration: none;
|
|
16
|
+
|
|
17
|
+
display: table;
|
|
18
|
+
margin: 6.5rem auto $margin;
|
|
19
|
+
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
input:hover,
|
|
23
|
+
input:active,
|
|
24
|
+
input:focus {
|
|
25
|
+
color: $primary-color;
|
|
26
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/* Define shadows */
|
|
2
|
+
.shadow_small {
|
|
3
|
+
--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
4
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
5
|
+
}
|
|
6
|
+
.shadow {
|
|
7
|
+
--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
8
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
9
|
+
}
|
|
10
|
+
.shadow_medium {
|
|
11
|
+
--tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
12
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
13
|
+
}
|
|
14
|
+
.shadow_large {
|
|
15
|
+
--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
16
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
17
|
+
}
|
|
18
|
+
.shadow_extralarge {
|
|
19
|
+
--tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
20
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
21
|
+
}
|
|
22
|
+
.shadow_huge {
|
|
23
|
+
--tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
|
|
24
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
25
|
+
}
|
|
26
|
+
.shadow_inner {
|
|
27
|
+
--tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
|
|
28
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
29
|
+
}
|
|
30
|
+
.shadow_none {
|
|
31
|
+
--tw-shadow: 0 0 #0000;
|
|
32
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
33
|
+
}
|
data/assets/bicycle.jpg
ADDED
|
Binary file
|
data/assets/favicon.svg
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
id="Layer_1"
|
|
11
|
+
style="enable-background:new 0 0 128 128;"
|
|
12
|
+
version="1.1"
|
|
13
|
+
viewBox="0 0 128 128"
|
|
14
|
+
xml:space="preserve"
|
|
15
|
+
sodipodi:docname="favicon.svg"
|
|
16
|
+
inkscape:version="1.0beta2 (2b71d25, 2019-12-03)"><metadata
|
|
17
|
+
id="metadata865"><rdf:RDF><cc:Work
|
|
18
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
19
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
|
20
|
+
id="defs863"><rect
|
|
21
|
+
id="rect844"
|
|
22
|
+
height="73.411765"
|
|
23
|
+
width="81.882353"
|
|
24
|
+
y="34.823529"
|
|
25
|
+
x="23.058824" /></defs><sodipodi:namedview
|
|
26
|
+
pagecolor="#ffffff"
|
|
27
|
+
bordercolor="#666666"
|
|
28
|
+
inkscape:document-rotation="0"
|
|
29
|
+
borderopacity="1"
|
|
30
|
+
objecttolerance="10"
|
|
31
|
+
gridtolerance="10"
|
|
32
|
+
guidetolerance="10"
|
|
33
|
+
inkscape:pageopacity="0"
|
|
34
|
+
inkscape:pageshadow="2"
|
|
35
|
+
inkscape:window-width="1404"
|
|
36
|
+
inkscape:window-height="855"
|
|
37
|
+
id="namedview861"
|
|
38
|
+
showgrid="false"
|
|
39
|
+
inkscape:zoom="2.125"
|
|
40
|
+
inkscape:cx="5.4117647"
|
|
41
|
+
inkscape:cy="77.647059"
|
|
42
|
+
inkscape:window-x="36"
|
|
43
|
+
inkscape:window-y="23"
|
|
44
|
+
inkscape:window-maximized="1"
|
|
45
|
+
inkscape:current-layer="Layer_1" /><style
|
|
46
|
+
type="text/css"
|
|
47
|
+
id="style850">
|
|
48
|
+
.st0{fill:#FFFFFF;}
|
|
49
|
+
</style><path
|
|
50
|
+
d="M 128,64 A 64,64 0 0 1 64,128 64,64 0 0 1 0,64 64,64 0 0 1 64,0 64,64 0 0 1 128,64"
|
|
51
|
+
style="fill:#5f0f40;fill-opacity:1"
|
|
52
|
+
id="circle852" /></svg>
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
height="58.425198"
|
|
11
|
+
version="1.1"
|
|
12
|
+
viewBox="0 0 60 58.425198"
|
|
13
|
+
width="60"
|
|
14
|
+
id="svg844"
|
|
15
|
+
sodipodi:docname="500px.svg"
|
|
16
|
+
inkscape:version="1.0beta2 (2b71d25, 2019-12-03)">
|
|
17
|
+
<metadata
|
|
18
|
+
id="metadata848">
|
|
19
|
+
<rdf:RDF>
|
|
20
|
+
<cc:Work
|
|
21
|
+
rdf:about="">
|
|
22
|
+
<dc:format>image/svg+xml</dc:format>
|
|
23
|
+
<dc:type
|
|
24
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
25
|
+
<dc:title />
|
|
26
|
+
</cc:Work>
|
|
27
|
+
</rdf:RDF>
|
|
28
|
+
</metadata>
|
|
29
|
+
<sodipodi:namedview
|
|
30
|
+
pagecolor="#ffffff"
|
|
31
|
+
bordercolor="#666666"
|
|
32
|
+
inkscape:document-rotation="0"
|
|
33
|
+
borderopacity="1"
|
|
34
|
+
objecttolerance="10"
|
|
35
|
+
gridtolerance="10"
|
|
36
|
+
guidetolerance="10"
|
|
37
|
+
inkscape:pageopacity="0"
|
|
38
|
+
inkscape:pageshadow="2"
|
|
39
|
+
inkscape:window-width="1404"
|
|
40
|
+
inkscape:window-height="855"
|
|
41
|
+
id="namedview846"
|
|
42
|
+
showgrid="false"
|
|
43
|
+
inkscape:zoom="6.6338646"
|
|
44
|
+
inkscape:cx="19.209726"
|
|
45
|
+
inkscape:cy="42.9194"
|
|
46
|
+
inkscape:window-x="36"
|
|
47
|
+
inkscape:window-y="23"
|
|
48
|
+
inkscape:window-maximized="1"
|
|
49
|
+
inkscape:current-layer="layer1"
|
|
50
|
+
lock-margins="true"
|
|
51
|
+
fit-margin-top="0"
|
|
52
|
+
fit-margin-left="0"
|
|
53
|
+
fit-margin-right="0"
|
|
54
|
+
fit-margin-bottom="0" />
|
|
55
|
+
<desc
|
|
56
|
+
id="desc835" />
|
|
57
|
+
<defs
|
|
58
|
+
id="defs837">
|
|
59
|
+
<inkscape:path-effect
|
|
60
|
+
effect="powerclip"
|
|
61
|
+
id="path-effect2090"
|
|
62
|
+
is_visible="true"
|
|
63
|
+
lpeversion="1"
|
|
64
|
+
inverse="true"
|
|
65
|
+
flatten="false"
|
|
66
|
+
hide_clip="false"
|
|
67
|
+
message="Use fill-rule evenodd on <b>fill and stroke</b> dialog if no flatten result after convert clip to paths." />
|
|
68
|
+
</defs>
|
|
69
|
+
<g
|
|
70
|
+
inkscape:groupmode="layer"
|
|
71
|
+
id="layer1"
|
|
72
|
+
inkscape:label="Layer 1"
|
|
73
|
+
style="display:inline;mix-blend-mode:normal">
|
|
74
|
+
<path
|
|
75
|
+
d="M 30 0 A 30 29.212599 0 0 0 0 29.212891 A 30 29.212599 0 0 0 30 58.425781 A 30 29.212599 0 0 0 60 29.212891 A 30 29.212599 0 0 0 30 0 z M 10.732422 18.828125 L 22.158203 18.828125 L 22.158203 22.224609 L 21.873047 22.224609 C 19.244605 22.224609 16.614722 22.228203 13.986328 22.220703 C 13.774062 22.22007 13.703638 22.279413 13.667969 22.490234 C 13.431486 23.887825 13.178072 25.281787 12.931641 26.677734 C 12.919991 26.743784 12.922109 26.811836 12.912109 26.962891 C 14.463007 25.406509 16.310135 25.111305 18.296875 25.476562 C 20.32501 25.849459 21.726177 27.066729 22.623047 28.9375 C 22.716417 28.720106 22.786325 28.534684 22.873047 28.357422 C 24.070069 25.910817 26.06331 24.674297 28.763672 24.533203 C 30.822769 24.425618 32.590912 25.16562 34.175781 26.421875 C 35.175969 27.214717 36.002981 28.175842 36.835938 29.130859 C 36.899028 29.203149 36.960675 29.276003 37.044922 29.373047 C 37.125872 29.280697 37.198484 29.199436 37.269531 29.117188 C 38.034255 28.231509 38.785838 27.331995 39.689453 26.578125 C 40.855659 25.605218 42.148324 24.863572 43.667969 24.634766 C 46.093801 24.269509 48.278254 24.781473 50.011719 26.617188 C 51.119059 27.78989 51.68063 29.227029 51.857422 30.814453 C 52.059498 32.628168 51.80782 34.369215 50.921875 35.986328 C 49.744361 38.135273 47.893442 39.248604 45.464844 39.439453 C 43.512318 39.593022 41.787096 38.975288 40.207031 37.876953 C 39.124247 37.124196 38.217484 36.184754 37.337891 35.214844 C 37.245931 35.113496 37.15596 35.010382 37.013672 34.849609 C 36.950192 34.942159 36.906863 35.030397 36.839844 35.097656 C 36.093803 35.846545 35.371347 36.623904 34.587891 37.332031 C 33.487005 38.327036 32.21789 39.059526 30.738281 39.318359 C 28.209276 39.760787 25.950126 39.216145 24.099609 37.351562 C 23.547588 36.79531 23.13511 36.143279 22.818359 35.429688 C 22.783569 35.351067 22.748673 35.273919 22.699219 35.164062 C 22.340927 35.932873 21.916491 36.6135 21.359375 37.207031 C 19.934944 38.724585 18.175085 39.516928 16.095703 39.589844 C 14.598769 39.642354 13.13193 39.450246 11.767578 38.804688 C 9.4823837 37.72347 8.2238098 35.927389 8.078125 33.388672 C 8.074485 33.325132 8.078125 33.260997 8.078125 33.177734 L 12.216797 33.177734 C 12.246307 33.332414 12.271727 33.496898 12.310547 33.658203 C 12.61303 34.91586 13.356821 35.782637 14.630859 36.097656 C 15.995065 36.435111 17.203766 36.115934 18.148438 35.039062 C 19.290039 33.737693 19.471683 31.555517 18.568359 30.080078 C 17.94534 29.062444 17.019361 28.538649 15.826172 28.466797 C 14.470896 28.385127 13.371531 28.846908 12.5625 29.953125 C 12.51319 30.020575 12.412019 30.089263 12.333984 30.089844 C 11.169428 30.098144 10.004449 30.09525 8.8398438 30.09375 C 8.8100467 30.09375 8.7805521 30.081246 8.7226562 30.066406 C 9.3929424 26.320284 10.061068 22.580547 10.732422 18.828125 z M 28.896484 28.566406 C 27.868555 28.616646 27.013443 29.180607 26.460938 30.203125 C 25.927115 31.191167 25.840541 32.234313 26.183594 33.291016 C 26.553048 34.428807 27.34859 35.125683 28.546875 35.324219 C 29.289664 35.447374 30.013984 35.352135 30.714844 35.082031 C 32.301071 34.4709 33.501246 33.362335 34.607422 32.09375 C 33.778299 31.214405 32.948337 30.377649 31.980469 29.693359 C 31.364778 29.258039 30.714208 28.883879 29.976562 28.689453 C 29.600279 28.590306 29.239127 28.54966 28.896484 28.566406 z M 44.914062 28.568359 C 44.311125 28.558781 43.729222 28.69814 43.166016 28.970703 C 41.673402 29.692949 40.605947 30.908621 39.486328 32.09375 C 40.437599 33.16902 41.43532 34.156924 42.722656 34.806641 C 43.327767 35.112038 43.960973 35.307065 44.640625 35.365234 C 46.139791 35.493465 47.310281 34.823787 47.830078 33.488281 C 48.213847 32.502222 48.220114 31.497999 47.806641 30.519531 C 47.378225 29.505716 46.640982 28.828651 45.525391 28.628906 C 45.320015 28.592134 45.115042 28.571552 44.914062 28.568359 z "
|
|
76
|
+
style="fill:#f4f4f4;fill-opacity:1;stroke-width:1.0447"
|
|
77
|
+
id="path2000" />
|
|
78
|
+
<g
|
|
79
|
+
style="mix-blend-mode:normal;fill:#5f0f40;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1"
|
|
80
|
+
transform="translate(-210.8534,-95.209958)"
|
|
81
|
+
id="slice" />
|
|
82
|
+
</g>
|
|
83
|
+
</svg>
|