Add initial assets
assets/css/gitile.css unknown status 1
1 | + | :root { | |
2 | + | --blue: #6eaee6; | |
3 | + | --darkblue: #176ECB; | |
4 | + | --lightblue: #a1d9f4; | |
5 | + | --darkwhite: #faf5f0; | |
6 | + | --black: #333; | |
7 | + | --white: #fff; | |
8 | + | --darkgreen: #2cae0e; | |
9 | + | --gray: #ccc; | |
10 | + | --darkerwhite: #eae5e0; | |
11 | + | } | |
12 | + | ||
13 | + | html, body { | |
14 | + | margin: 0; | |
15 | + | padding: 0; | |
16 | + | min-height: 100%; | |
17 | + | background: var(--darkwhite); | |
18 | + | } | |
19 | + | ||
20 | + | body { | |
21 | + | display: flex; | |
22 | + | flex-direction: column; | |
23 | + | color: var(--black); | |
24 | + | height: 100%; | |
25 | + | } | |
26 | + | ||
27 | + | #content { | |
28 | + | flex: 1; | |
29 | + | width: 1200px; | |
30 | + | margin: auto; | |
31 | + | text-align: justify; | |
32 | + | line-height: 1.5em; | |
33 | + | padding: 2em; | |
34 | + | } | |
35 | + | ||
36 | + | header { | |
37 | + | background: var(--blue); | |
38 | + | } | |
39 | + | ||
40 | + | footer { | |
41 | + | background: var(--darkerwhite); | |
42 | + | } | |
43 | + | ||
44 | + | header, footer { | |
45 | + | text-align: center; | |
46 | + | } | |
47 | + | ||
48 | + | a { | |
49 | + | text-decoration: none; | |
50 | + | } | |
51 | + | ||
52 | + | header ul { | |
53 | + | list-style: none; | |
54 | + | margin: 0; | |
55 | + | } | |
56 | + | ||
57 | + | header li { | |
58 | + | display: inline-block; | |
59 | + | } | |
60 | + | ||
61 | + | header li a { | |
62 | + | display: inline-block; | |
63 | + | padding: 1em; | |
64 | + | color: var(--white); | |
65 | + | } | |
66 | + | ||
67 | + | header li a:hover { | |
68 | + | background-color: var(--darkblue); | |
69 | + | } | |
70 | + | ||
71 | + | header li.first { | |
72 | + | margin-right: 2em; | |
73 | + | } | |
74 | + | ||
75 | + | footer a { | |
76 | + | color: var(--darkgreen); | |
77 | + | } | |
78 | + | ||
79 | + | .content { | |
80 | + | display: flex; | |
81 | + | flex-direction: row; | |
82 | + | align-items: center; | |
83 | + | } | |
84 | + | ||
85 | + | .content p:first-child { | |
86 | + | flex: 1; | |
87 | + | } | |
88 | + | ||
89 | + | .content img { | |
90 | + | max-height: 1.5em; | |
91 | + | max-width: 1.5em; | |
92 | + | } | |
93 | + | ||
94 | + | .content p { | |
95 | + | margin: 0; | |
96 | + | } | |
97 | + | ||
98 | + | .content, thead { | |
99 | + | background: var(--darkerwhite); | |
100 | + | padding: 0.5em; | |
101 | + | margin: 0; | |
102 | + | border: 1px solid var(--gray); | |
103 | + | border-bottom: none; | |
104 | + | } | |
105 | + | ||
106 | + | pre { | |
107 | + | border: 1px solid var(--gray); | |
108 | + | border-top: none; | |
109 | + | padding: 0.5em; | |
110 | + | margin: 0; | |
111 | + | background: var(--white); | |
112 | + | line-height: 1em; | |
113 | + | font-size: 0.85em; | |
114 | + | font-family: monospace, monospace; | |
115 | + | } | |
116 | + | ||
117 | + | table { | |
118 | + | background: var(--white); | |
119 | + | border-collapse: collapse; | |
120 | + | width: 100%; | |
121 | + | border: 1px solid var(--gray); | |
122 | + | } | |
123 | + | ||
124 | + | tbody tr { | |
125 | + | transition-duration: 300ms; | |
126 | + | } | |
127 | + | ||
128 | + | tbody tr:hover { | |
129 | + | background: var(--lightblue); | |
130 | + | } | |
131 | + | ||
132 | + | td { | |
133 | + | padding: 0.5em; | |
134 | + | } | |
135 | + | ||
136 | + | .commit-info { | |
137 | + | border: 1px solid var(--gray); | |
138 | + | margin-top: 1em; | |
139 | + | margin-bottom: 1em; | |
140 | + | padding: 1em; | |
141 | + | display: flex; | |
142 | + | flex-direction: row; | |
143 | + | justify-content: center; | |
144 | + | align-content: center; | |
145 | + | background: var(--white); | |
146 | + | } | |
147 | + | ||
148 | + | .commit-info .commit { | |
149 | + | flex: 1 | |
150 | + | } | |
151 | + | ||
152 | + | .commit-info .message { | |
153 | + | font-weight: bold; | |
154 | + | } | |
155 | + | ||
156 | + | .commit-info .author, .commit-info .date { | |
157 | + | display: inline-block; | |
158 | + | padding: 0.5em 0; | |
159 | + | } | |
160 | + | ||
161 | + | .commit-info img { | |
162 | + | max-width: 64px; | |
163 | + | max-height: 64px; | |
164 | + | margin-right: 1em; | |
165 | + | } | |
166 | + | ||
167 | + | .commit-info .commit-id { | |
168 | + | margin-left: 1em; | |
169 | + | border: 1px solid var(--gray); | |
170 | + | border-radius: 10px; | |
171 | + | padding: 0; | |
172 | + | background: var(--darkerwhite); | |
173 | + | height: 2.5em; | |
174 | + | display: flex; | |
175 | + | flex-direction: row; | |
176 | + | align-items: center; | |
177 | + | } | |
178 | + | ||
179 | + | .commit-info .commit-id .short-id { | |
180 | + | background: var(--darkwhite); | |
181 | + | display: inline-block; | |
182 | + | padding: 0.5em; | |
183 | + | border-bottom-left-radius: 10px; | |
184 | + | border-top-left-radius: 10px; | |
185 | + | border-right: 1px solid var(--gray); | |
186 | + | font-family: monospace, monospace; | |
187 | + | font-size: 0.85em; | |
188 | + | } | |
189 | + | ||
190 | + | .commit-info p { | |
191 | + | margin: 0; | |
192 | + | } | |
193 | + | ||
194 | + | .commit-info .commit-id button { | |
195 | + | background: none; | |
196 | + | border: none; | |
197 | + | cursor: pointer; | |
198 | + | } | |
199 | + | ||
200 | + | .commit-info .commit-id img { | |
201 | + | max-width: 1.5em; | |
202 | + | max-height: 1.5em; | |
203 | + | margin-right: 0.3em; | |
204 | + | } | |
205 | + | ||
206 | + | .commit-info .date { | |
207 | + | font-style: italic; | |
208 | + | margin-left: 1em; | |
209 | + | } | |
210 | + | ||
211 | + | .commit-info .author::before { | |
212 | + | content: "Authored by: "; | |
213 | + | } | |
214 | + | ||
215 | + | h1 { | |
216 | + | text-align: center; | |
217 | + | } | |
218 | + | ||
219 | + | code { | |
220 | + | background: var(--darkerwhite); | |
221 | + | display: inline-block; | |
222 | + | padding: 3px; | |
223 | + | font-family: monospace, monospace; | |
224 | + | font-size: 0.85em; | |
225 | + | } | |
226 | + | ||
227 | + | .clone { | |
228 | + | text-align: right; | |
229 | + | } | |
230 | + | ||
231 | + | .icon-link { | |
232 | + | display: flex; | |
233 | + | flex-direction: row; | |
234 | + | align-content: center; | |
235 | + | } | |
236 | + | ||
237 | + | .icon-link img { | |
238 | + | height: 1em; | |
239 | + | width: 1em; | |
240 | + | margin-right: 0.3em; | |
241 | + | } | |
242 | + | ||
243 | + | .path-box a { | |
244 | + | display: inline-block; | |
245 | + | padding: 0.5em; | |
246 | + | } | |
247 | + | ||
248 | + | .button-row a { | |
249 | + | display: inline-block; | |
250 | + | background: var(--white); | |
251 | + | padding: 0.5em; | |
252 | + | border: 1px solid var(--gray); | |
253 | + | margin: 0.5em; | |
254 | + | } | |
255 | + | ||
256 | + | ||
257 | + | @media screen and (max-width: 1250px) { | |
258 | + | #content { | |
259 | + | width: auto; | |
260 | + | } | |
261 | + | } |
assets/images/copy.svg unknown status 1
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 | + | sodipodi:docname="clipboard.svg" | |
11 | + | inkscape:version="1.0 (4035a4fb49, 2020-05-01)" | |
12 | + | id="svg8" | |
13 | + | version="1.1" | |
14 | + | viewBox="0 0 45.246742 65.77195" | |
15 | + | height="65.77195mm" | |
16 | + | width="45.246742mm"> | |
17 | + | <defs | |
18 | + | id="defs2" /> | |
19 | + | <sodipodi:namedview | |
20 | + | inkscape:window-maximized="1" | |
21 | + | inkscape:window-y="0" | |
22 | + | inkscape:window-x="0" | |
23 | + | inkscape:window-height="1079" | |
24 | + | inkscape:window-width="1920" | |
25 | + | fit-margin-bottom="0" | |
26 | + | fit-margin-right="0" | |
27 | + | fit-margin-left="0" | |
28 | + | fit-margin-top="0" | |
29 | + | showgrid="false" | |
30 | + | inkscape:document-rotation="0" | |
31 | + | inkscape:current-layer="layer1" | |
32 | + | inkscape:document-units="mm" | |
33 | + | inkscape:cy="86.741725" | |
34 | + | inkscape:cx="130.31807" | |
35 | + | inkscape:zoom="1.979899" | |
36 | + | inkscape:pageshadow="2" | |
37 | + | inkscape:pageopacity="0.0" | |
38 | + | borderopacity="1.0" | |
39 | + | bordercolor="#666666" | |
40 | + | pagecolor="#ffffff" | |
41 | + | id="base" /> | |
42 | + | <metadata | |
43 | + | id="metadata5"> | |
44 | + | <rdf:RDF> | |
45 | + | <cc:Work | |
46 | + | rdf:about=""> | |
47 | + | <dc:format>image/svg+xml</dc:format> | |
48 | + | <dc:type | |
49 | + | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
50 | + | <dc:title></dc:title> | |
51 | + | </cc:Work> | |
52 | + | </rdf:RDF> | |
53 | + | </metadata> | |
54 | + | <g | |
55 | + | transform="translate(-80.682907,-133.33238)" | |
56 | + | id="layer1" | |
57 | + | inkscape:groupmode="layer" | |
58 | + | inkscape:label="Calque 1"> | |
59 | + | <rect | |
60 | + | ry="4.2414484" | |
61 | + | y="140.56821" | |
62 | + | x="81.682907" | |
63 | + | height="52.248264" | |
64 | + | width="36.89867" | |
65 | + | id="rect973" | |
66 | + | style="fill:none;fill-opacity:1;stroke:#2cae0e;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |
67 | + | <rect | |
68 | + | ry="3.5669465" | |
69 | + | y="137.22325" | |
70 | + | x="89.185425" | |
71 | + | height="7.133893" | |
72 | + | width="23.0937" | |
73 | + | id="rect975" | |
74 | + | style="fill:#2cae0e;fill-opacity:1;stroke:#2cae0e;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |
75 | + | <rect | |
76 | + | ry="1.8847523" | |
77 | + | y="134.33238" | |
78 | + | x="97.599472" | |
79 | + | height="3.949157" | |
80 | + | width="6.7447758" | |
81 | + | id="rect977" | |
82 | + | style="fill:#2cae0e;fill-opacity:1;stroke:#2cae0e;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |
83 | + | <rect | |
84 | + | ry="6.2843814" | |
85 | + | y="165.28798" | |
86 | + | x="97.940529" | |
87 | + | height="32.811432" | |
88 | + | width="26.984816" | |
89 | + | id="rect979" | |
90 | + | style="fill:none;fill-opacity:1;stroke:#2cae0e;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:1" /> | |
91 | + | </g> | |
92 | + | </svg> |
assets/images/file-type-2.svg unknown status 1
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 | + | sodipodi:docname="folder.svg" | |
11 | + | inkscape:version="1.0 (4035a4fb49, 2020-05-01)" | |
12 | + | id="svg8" | |
13 | + | version="1.1" | |
14 | + | viewBox="0 0 66.581749 53.249016" | |
15 | + | height="53.249016mm" | |
16 | + | width="66.581749mm"> | |
17 | + | <defs | |
18 | + | id="defs2" /> | |
19 | + | <sodipodi:namedview | |
20 | + | inkscape:window-maximized="1" | |
21 | + | inkscape:window-y="0" | |
22 | + | inkscape:window-x="0" | |
23 | + | inkscape:window-height="1079" | |
24 | + | inkscape:window-width="1920" | |
25 | + | fit-margin-bottom="0" | |
26 | + | fit-margin-right="0" | |
27 | + | fit-margin-left="0" | |
28 | + | fit-margin-top="0" | |
29 | + | showgrid="false" | |
30 | + | inkscape:document-rotation="0" | |
31 | + | inkscape:current-layer="layer1" | |
32 | + | inkscape:document-units="mm" | |
33 | + | inkscape:cy="66.886058" | |
34 | + | inkscape:cx="128.76462" | |
35 | + | inkscape:zoom="1.4" | |
36 | + | inkscape:pageshadow="2" | |
37 | + | inkscape:pageopacity="0.0" | |
38 | + | borderopacity="1.0" | |
39 | + | bordercolor="#666666" | |
40 | + | pagecolor="#ffffff" | |
41 | + | id="base" /> | |
42 | + | <metadata | |
43 | + | id="metadata5"> | |
44 | + | <rdf:RDF> | |
45 | + | <cc:Work | |
46 | + | rdf:about=""> | |
47 | + | <dc:format>image/svg+xml</dc:format> | |
48 | + | <dc:type | |
49 | + | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
50 | + | <dc:title></dc:title> | |
51 | + | </cc:Work> | |
52 | + | </rdf:RDF> | |
53 | + | </metadata> | |
54 | + | <g | |
55 | + | transform="translate(-62.761623,-140.46764)" | |
56 | + | id="layer1" | |
57 | + | inkscape:groupmode="layer" | |
58 | + | inkscape:label="Calque 1"> | |
59 | + | <rect | |
60 | + | ry="4.4925799" | |
61 | + | y="150.09967" | |
62 | + | x="62.781353" | |
63 | + | height="43.616982" | |
64 | + | width="66.562019" | |
65 | + | id="rect847" | |
66 | + | style="fill:#2cae0e;fill-opacity:1;stroke-width:0.264999;stroke-linejoin:round" /> | |
67 | + | <rect | |
68 | + | ry="0" | |
69 | + | y="150.09967" | |
70 | + | x="62.781353" | |
71 | + | height="11.579222" | |
72 | + | width="17.606394" | |
73 | + | id="rect852" | |
74 | + | style="fill:#2cae0e;fill-opacity:1;stroke-width:0.264999;stroke-linejoin:round" /> | |
75 | + | <rect | |
76 | + | ry="2.9856691" | |
77 | + | y="140.46764" | |
78 | + | x="62.761623" | |
79 | + | height="5.9713383" | |
80 | + | width="26.741352" | |
81 | + | id="rect854" | |
82 | + | style="fill:#2caf0e;fill-opacity:1;stroke-width:0.264999;stroke-linejoin:round" /> | |
83 | + | <rect | |
84 | + | ry="0" | |
85 | + | y="143.70033" | |
86 | + | x="62.761623" | |
87 | + | height="2.7386401" | |
88 | + | width="26.729761" | |
89 | + | id="rect856" | |
90 | + | style="fill:#2caf0e;fill-opacity:1;stroke-width:0.264999;stroke-linejoin:round" /> | |
91 | + | <rect | |
92 | + | style="fill:#2caf0e;fill-opacity:1;stroke-width:0.264999;stroke-linejoin:round" | |
93 | + | id="rect854-3" | |
94 | + | width="18.143814" | |
95 | + | height="4.9880414" | |
96 | + | x="62.761623" | |
97 | + | y="140.46764" | |
98 | + | ry="1.4767896" /> | |
99 | + | </g> | |
100 | + | </svg> |
assets/images/file-type-3.svg unknown status 1
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 | + | sodipodi:docname="file.svg" | |
11 | + | inkscape:version="1.0 (4035a4fb49, 2020-05-01)" | |
12 | + | id="svg8" | |
13 | + | version="1.1" | |
14 | + | viewBox="0 0 37.561699 53.541161" | |
15 | + | height="53.541161mm" | |
16 | + | width="37.561699mm"> | |
17 | + | <defs | |
18 | + | id="defs2" /> | |
19 | + | <sodipodi:namedview | |
20 | + | inkscape:window-maximized="1" | |
21 | + | inkscape:window-y="0" | |
22 | + | inkscape:window-x="0" | |
23 | + | inkscape:window-height="1079" | |
24 | + | inkscape:window-width="1920" | |
25 | + | fit-margin-bottom="0" | |
26 | + | fit-margin-right="0" | |
27 | + | fit-margin-left="0" | |
28 | + | fit-margin-top="0" | |
29 | + | showgrid="false" | |
30 | + | inkscape:document-rotation="0" | |
31 | + | inkscape:current-layer="layer1" | |
32 | + | inkscape:document-units="mm" | |
33 | + | inkscape:cy="102.83288" | |
34 | + | inkscape:cx="76.050073" | |
35 | + | inkscape:zoom="3.959798" | |
36 | + | inkscape:pageshadow="2" | |
37 | + | inkscape:pageopacity="0.0" | |
38 | + | borderopacity="1.0" | |
39 | + | bordercolor="#666666" | |
40 | + | pagecolor="#ffffff" | |
41 | + | id="base" /> | |
42 | + | <metadata | |
43 | + | id="metadata5"> | |
44 | + | <rdf:RDF> | |
45 | + | <cc:Work | |
46 | + | rdf:about=""> | |
47 | + | <dc:format>image/svg+xml</dc:format> | |
48 | + | <dc:type | |
49 | + | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
50 | + | <dc:title></dc:title> | |
51 | + | </cc:Work> | |
52 | + | </rdf:RDF> | |
53 | + | </metadata> | |
54 | + | <g | |
55 | + | transform="translate(-81.254841,-140.27409)" | |
56 | + | id="layer1" | |
57 | + | inkscape:groupmode="layer" | |
58 | + | inkscape:label="Calque 1"> | |
59 | + | <path | |
60 | + | style="fill:none;stroke:#2cae0e;stroke-width:1.99407;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | |
61 | + | d="m 85.451845,164.59147 27.998285,-0.0353" | |
62 | + | id="path913-7" /> | |
63 | + | <path | |
64 | + | id="path913-7-5" | |
65 | + | d="m 85.451845,170.12064 27.998265,-0.0353" | |
66 | + | style="fill:none;stroke:#2cae0e;stroke-width:1.99407;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |
67 | + | <path | |
68 | + | id="path913-7-3" | |
69 | + | d="m 85.451845,175.64981 27.998265,-0.0353" | |
70 | + | style="fill:none;stroke:#2cae0e;stroke-width:1.99407;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |
71 | + | <path | |
72 | + | id="path913-7-56" | |
73 | + | d="m 85.451845,181.17898 27.998265,-0.0353" | |
74 | + | style="fill:none;stroke:#2cae0e;stroke-width:1.99407;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |
75 | + | <path | |
76 | + | id="path913-7-2" | |
77 | + | d="m 85.451845,186.70815 27.998265,-0.0353" | |
78 | + | style="fill:none;stroke:#2cae0e;stroke-width:1.99407;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |
79 | + | <path | |
80 | + | sodipodi:nodetypes="cccccc" | |
81 | + | id="path969" | |
82 | + | d="m 82.208571,141.19171 25.131989,0.10846 10.3582,11.47361 0.20016,40.01131 -35.726459,0.11254 z" | |
83 | + | style="fill:none;stroke:#2cae0e;stroke-width:1.83524;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |
84 | + | <path | |
85 | + | sodipodi:nodetypes="ccc" | |
86 | + | id="path971" | |
87 | + | d="m 107.34056,141.30017 -0.0454,11.50525 10.40358,-0.0316" | |
88 | + | style="fill:none;stroke:#2cae0e;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | |
89 | + | </g> | |
90 | + | </svg> |
assets/images/go.svg unknown status 1
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 | + | sodipodi:docname="folder-open.svg" | |
11 | + | inkscape:version="1.0 (4035a4fb49, 2020-05-01)" | |
12 | + | id="svg8" | |
13 | + | version="1.1" | |
14 | + | viewBox="0 0 75.637878 52.095314" | |
15 | + | height="52.095314mm" | |
16 | + | width="75.637878mm"> | |
17 | + | <defs | |
18 | + | id="defs2" /> | |
19 | + | <sodipodi:namedview | |
20 | + | inkscape:window-maximized="1" | |
21 | + | inkscape:window-y="0" | |
22 | + | inkscape:window-x="0" | |
23 | + | inkscape:window-height="1079" | |
24 | + | inkscape:window-width="1920" | |
25 | + | fit-margin-bottom="0" | |
26 | + | fit-margin-right="0" | |
27 | + | fit-margin-left="0" | |
28 | + | fit-margin-top="0" | |
29 | + | showgrid="false" | |
30 | + | inkscape:document-rotation="0" | |
31 | + | inkscape:current-layer="layer1" | |
32 | + | inkscape:document-units="mm" | |
33 | + | inkscape:cy="42.356461" | |
34 | + | inkscape:cx="182.54351" | |
35 | + | inkscape:zoom="2.8" | |
36 | + | inkscape:pageshadow="2" | |
37 | + | inkscape:pageopacity="0.0" | |
38 | + | borderopacity="1.0" | |
39 | + | bordercolor="#666666" | |
40 | + | pagecolor="#ffffff" | |
41 | + | id="base" /> | |
42 | + | <metadata | |
43 | + | id="metadata5"> | |
44 | + | <rdf:RDF> | |
45 | + | <cc:Work | |
46 | + | rdf:about=""> | |
47 | + | <dc:format>image/svg+xml</dc:format> | |
48 | + | <dc:type | |
49 | + | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
50 | + | <dc:title></dc:title> | |
51 | + | </cc:Work> | |
52 | + | </rdf:RDF> | |
53 | + | </metadata> | |
54 | + | <g | |
55 | + | transform="translate(-62.781353,-141.62132)" | |
56 | + | id="layer1" | |
57 | + | inkscape:groupmode="layer" | |
58 | + | inkscape:label="Calque 1"> | |
59 | + | <rect | |
60 | + | ry="4.4925799" | |
61 | + | y="158.8174" | |
62 | + | x="62.781353" | |
63 | + | height="34.899239" | |
64 | + | width="66.562012" | |
65 | + | id="rect847" | |
66 | + | style="fill:#2cae0e;fill-opacity:1;stroke-width:0.264999;stroke-linejoin:round" /> | |
67 | + | <rect | |
68 | + | ry="0" | |
69 | + | y="158.8174" | |
70 | + | x="62.781353" | |
71 | + | height="11.579222" | |
72 | + | width="17.606394" | |
73 | + | id="rect852" | |
74 | + | style="fill:#2cae0e;fill-opacity:1;stroke-width:0.264999;stroke-linejoin:round" /> | |
75 | + | <rect | |
76 | + | ry="2.9856691" | |
77 | + | y="141.62132" | |
78 | + | x="71.255142" | |
79 | + | height="5.9713383" | |
80 | + | width="26.741352" | |
81 | + | id="rect854" | |
82 | + | style="fill:#2caf0e;fill-opacity:1;stroke-width:0.264999;stroke-linejoin:round" /> | |
83 | + | <rect | |
84 | + | ry="0" | |
85 | + | y="143.88824" | |
86 | + | x="71.266739" | |
87 | + | height="4.2335682" | |
88 | + | width="26.729761" | |
89 | + | id="rect856" | |
90 | + | style="fill:#2caf0e;fill-opacity:1;stroke-width:0.329481;stroke-linejoin:round" /> | |
91 | + | <rect | |
92 | + | style="fill:#2caf0e;fill-opacity:1;stroke-width:0.264999;stroke-linejoin:round" | |
93 | + | id="rect854-3" | |
94 | + | width="18.143814" | |
95 | + | height="4.9880414" | |
96 | + | x="71.255142" | |
97 | + | y="141.62132" | |
98 | + | ry="1.4767896" /> | |
99 | + | <rect | |
100 | + | style="fill:#2cae0e;stroke:#2cae0e;stroke-width:2;stroke-linejoin:round" | |
101 | + | id="rect1678" | |
102 | + | width="65.172218" | |
103 | + | height="9.9800997" | |
104 | + | x="72.24501" | |
105 | + | y="144.8932" | |
106 | + | ry="2.2473481" /> | |
107 | + | <rect | |
108 | + | ry="1.4343877" | |
109 | + | y="149.47058" | |
110 | + | x="133.15836" | |
111 | + | height="36.595394" | |
112 | + | width="4.2608795" | |
113 | + | id="rect2357" | |
114 | + | style="fill:#2cae0e;stroke:#2cae0e;stroke-width:2;stroke-linejoin:round" /> | |
115 | + | </g> | |
116 | + | </svg> |