Finish migrating posts
This commit is contained in:
		
							parent
							
								
									508c7f9af0
								
							
						
					
					
						commit
						20fb231a0a
					
				| @ -2,6 +2,7 @@ | ||||
| 
 | ||||
| layout:     post | ||||
| title:      "Arch on a Lenovo ThinkPad x140e" | ||||
| slug:       arch-thinkpad-x140e | ||||
| date:       2014-12-26 22:37:00 | ||||
| categories: linux | ||||
| 
 | ||||
|  | ||||
| @ -2,6 +2,7 @@ | ||||
| 
 | ||||
| layout:     post | ||||
| title:      "Getting Candle Wax Off an LCD Monitor" | ||||
| slug:       remove-wax-from-lcd | ||||
| date:       2015-01-03 22:16:00 | ||||
| categories: life | ||||
| 
 | ||||
|  | ||||
| @ -2,6 +2,7 @@ | ||||
| 
 | ||||
| layout:     post | ||||
| title:      "Connecting to University of Cincinnati's Securewireless with netctl" | ||||
| slug:       uc-netctl | ||||
| date:       2015-01-13 17:14:00 | ||||
| categories: linux | ||||
| 
 | ||||
|  | ||||
| @ -2,6 +2,7 @@ | ||||
| 
 | ||||
| layout:     post | ||||
| title:      "Idea for Part-time Agile Development Shop" | ||||
| slug:       "part-time-agile" | ||||
| date:       2015-02-25 10:34:00 | ||||
| categories: life | ||||
| 
 | ||||
|  | ||||
| @ -2,6 +2,7 @@ | ||||
| 
 | ||||
| layout:     post | ||||
| title:      "Hexaflexago: the friendly hexaflexagon template generator" | ||||
| slug:       hexaflexago | ||||
| date:       2017-05-25 12:05:00 | ||||
| categories: projects | ||||
| 
 | ||||
|  | ||||
| @ -2,6 +2,7 @@ | ||||
| 
 | ||||
| layout:     post | ||||
| title:      "🦆.to" | ||||
| slug:       duck-dot-to | ||||
| date:       2017-05-25 12:05:00 | ||||
| categories: projects | ||||
| 
 | ||||
|  | ||||
| @ -2,6 +2,7 @@ | ||||
| 
 | ||||
| layout:     post | ||||
| title:      "mintwise" | ||||
| slug:       "mintwise" | ||||
| date:       2020-06-08 12:05:00 | ||||
| categories: projects | ||||
| 
 | ||||
|  | ||||
| @ -1,45 +0,0 @@ | ||||
| --- | ||||
| author: "lee.so" | ||||
| title: "Emoji Support" | ||||
| date: "2019-03-05" | ||||
| description: "Guide to emoji usage in Hugo" | ||||
| tags:  | ||||
| - emoji | ||||
| --- | ||||
| 
 | ||||
| Emoji can be enabled in a Hugo project in a number of ways.  | ||||
| <!--more--> | ||||
| The [`emojify`](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).  | ||||
| 
 | ||||
| To enable emoji globally, set `enableEmoji` to `true` in your site's [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g. | ||||
| 
 | ||||
| <p><span class="nowrap"><span class="emojify">🙈</span> <code>:see_no_evil:</code></span>  <span class="nowrap"><span class="emojify">🙉</span> <code>:hear_no_evil:</code></span>  <span class="nowrap"><span class="emojify">🙊</span> <code>:speak_no_evil:</code></span></p> | ||||
| <br> | ||||
| 
 | ||||
| The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes. | ||||
| 
 | ||||
| *** | ||||
| 
 | ||||
| **N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.  | ||||
| 
 | ||||
| {{< highlight html >}} | ||||
| .emoji { | ||||
|   font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols; | ||||
| } | ||||
| {{< /highlight >}} | ||||
| 
 | ||||
| {{< css.inline >}} | ||||
| <style> | ||||
| .emojify { | ||||
| 	font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols; | ||||
| 	font-size: 2rem; | ||||
| 	vertical-align: middle; | ||||
| } | ||||
| @media screen and (max-width:650px) { | ||||
|   .nowrap { | ||||
|     display: block; | ||||
|     margin: 25px 0; | ||||
|   } | ||||
| } | ||||
| </style> | ||||
| {{< /css.inline >}} | ||||
| @ -1,20 +0,0 @@ | ||||
| {{ define "main" }} | ||||
| <style> | ||||
|     .li-flex { | ||||
|         display: flex; | ||||
|         justify-content: space-between; | ||||
|         margin-bottom: 0.25em; | ||||
|     } | ||||
|     .li-flex a { | ||||
|         width: 70%; | ||||
|     } | ||||
|     .li-flex .meta { | ||||
|         width: 20%; | ||||
|     } | ||||
| </style> | ||||
| <li> | ||||
|     <div class="li-flex"> | ||||
|         <a href="{{ .Permalink }}">{{ .Title }}</a> <span class="meta">{{ .Date.Format "02 Jan 2006" }}</span> | ||||
|     </div> | ||||
| </li> | ||||
| {{ end }} | ||||
| @ -15,9 +15,13 @@ | ||||
|       </div> | ||||
|       <hr/> | ||||
|       <div> | ||||
|       <ul> | ||||
|       <ul class="homepage-posts"> | ||||
|       {{ range first 10 .Site.RegularPages }} | ||||
|         {{ .Render "li" }} | ||||
|         <li> | ||||
|             <div class="post"> | ||||
|                 <a href="{{ .Permalink }}">{{ .Title }}</a> <span class="date">{{ .Date.Format "02 Jan 2006" }}</span> | ||||
|             </div> | ||||
|         </li> | ||||
|       {{ end }} | ||||
|       </ul> | ||||
|       </div> | ||||
|  | ||||
							
								
								
									
										107
									
								
								static/images/alcobinder.svg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										107
									
								
								static/images/alcobinder.svg
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							| After Width: | Height: | Size: 578 KiB | 
							
								
								
									
										
											BIN
										
									
								
								static/images/duck_loading.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								static/images/duck_loading.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 35 KiB | 
							
								
								
									
										
											BIN
										
									
								
								static/images/ducks.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								static/images/ducks.gif
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 6.8 MiB | 
							
								
								
									
										
											BIN
										
									
								
								static/images/hexaflexago.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								static/images/hexaflexago.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 180 KiB | 
							
								
								
									
										
											BIN
										
									
								
								static/images/hexaflexagon_business_cards.jpg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								static/images/hexaflexagon_business_cards.jpg
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 273 KiB | 
							
								
								
									
										398
									
								
								static/images/mintwise_logo.svg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										398
									
								
								static/images/mintwise_logo.svg
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,398 @@ | ||||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||||
| <!-- Created with Inkscape (http://www.inkscape.org/) --> | ||||
| 
 | ||||
| <svg | ||||
|    xmlns:dc="http://purl.org/dc/elements/1.1/" | ||||
|    xmlns:cc="http://creativecommons.org/ns#" | ||||
|    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||||
|    xmlns:svg="http://www.w3.org/2000/svg" | ||||
|    xmlns="http://www.w3.org/2000/svg" | ||||
|    xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | ||||
|    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | ||||
|    width="184.44705mm" | ||||
|    height="66.061737mm" | ||||
|    viewBox="0 0 184.44705 66.061737" | ||||
|    version="1.1" | ||||
|    id="svg8" | ||||
|    inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" | ||||
|    sodipodi:docname="mintwise_logo.svg"> | ||||
|   <defs | ||||
|      id="defs2"> | ||||
|     <marker | ||||
|        inkscape:stockid="TriangleOutS" | ||||
|        orient="auto" | ||||
|        refY="0.0" | ||||
|        refX="0.0" | ||||
|        id="marker6689" | ||||
|        style="overflow:visible" | ||||
|        inkscape:isstock="true"> | ||||
|       <path | ||||
|          id="path6687" | ||||
|          d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " | ||||
|          style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" | ||||
|          transform="scale(0.2)" /> | ||||
|     </marker> | ||||
|     <marker | ||||
|        inkscape:stockid="TriangleOutS" | ||||
|        orient="auto" | ||||
|        refY="0.0" | ||||
|        refX="0.0" | ||||
|        id="TriangleOutS" | ||||
|        style="overflow:visible" | ||||
|        inkscape:isstock="true"> | ||||
|       <path | ||||
|          id="path5446" | ||||
|          d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " | ||||
|          style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" | ||||
|          transform="scale(0.2)" /> | ||||
|     </marker> | ||||
|     <marker | ||||
|        inkscape:stockid="Tail" | ||||
|        orient="auto" | ||||
|        refY="0.0" | ||||
|        refX="0.0" | ||||
|        id="Tail" | ||||
|        style="overflow:visible" | ||||
|        inkscape:isstock="true"> | ||||
|       <g | ||||
|          id="g5346" | ||||
|          transform="scale(-1.2)" | ||||
|          style="stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"> | ||||
|         <path | ||||
|            id="path5334" | ||||
|            d="M -3.8048674,-3.9585227 L 0.54352094,0" | ||||
|            style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> | ||||
|         <path | ||||
|            id="path5336" | ||||
|            d="M -1.2866832,-3.9585227 L 3.0617053,0" | ||||
|            style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> | ||||
|         <path | ||||
|            id="path5338" | ||||
|            d="M 1.3053582,-3.9585227 L 5.6537466,0" | ||||
|            style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> | ||||
|         <path | ||||
|            id="path5340" | ||||
|            d="M -3.8048674,4.1775838 L 0.54352094,0.21974226" | ||||
|            style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> | ||||
|         <path | ||||
|            id="path5342" | ||||
|            d="M -1.2866832,4.1775838 L 3.0617053,0.21974226" | ||||
|            style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> | ||||
|         <path | ||||
|            id="path5344" | ||||
|            d="M 1.3053582,4.1775838 L 5.6537466,0.21974226" | ||||
|            style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> | ||||
|       </g> | ||||
|     </marker> | ||||
|     <marker | ||||
|        inkscape:stockid="TriangleOutL" | ||||
|        orient="auto" | ||||
|        refY="0.0" | ||||
|        refX="0.0" | ||||
|        id="TriangleOutL" | ||||
|        style="overflow:visible" | ||||
|        inkscape:isstock="true"> | ||||
|       <path | ||||
|          id="path5440" | ||||
|          d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " | ||||
|          style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" | ||||
|          transform="scale(0.8)" /> | ||||
|     </marker> | ||||
|     <marker | ||||
|        inkscape:stockid="Arrow1Send" | ||||
|        orient="auto" | ||||
|        refY="0" | ||||
|        refX="0" | ||||
|        id="Arrow1Send" | ||||
|        style="overflow:visible" | ||||
|        inkscape:isstock="true"> | ||||
|       <path | ||||
|          id="path5313" | ||||
|          d="M 0,0 5,-5 -12.5,0 5,5 Z" | ||||
|          style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1" | ||||
|          transform="matrix(-0.2,0,0,-0.2,-1.2,0)" | ||||
|          inkscape:connector-curvature="0" /> | ||||
|     </marker> | ||||
|     <marker | ||||
|        inkscape:stockid="Arrow1Lend" | ||||
|        orient="auto" | ||||
|        refY="0" | ||||
|        refX="0" | ||||
|        id="Arrow1Lend" | ||||
|        style="overflow:visible" | ||||
|        inkscape:isstock="true"> | ||||
|       <path | ||||
|          id="path5301" | ||||
|          d="M 0,0 5,-5 -12.5,0 5,5 Z" | ||||
|          style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1" | ||||
|          transform="matrix(-0.8,0,0,-0.8,-10,0)" | ||||
|          inkscape:connector-curvature="0" /> | ||||
|     </marker> | ||||
|     <marker | ||||
|        inkscape:stockid="Arrow2Lstart" | ||||
|        orient="auto" | ||||
|        refY="0" | ||||
|        refX="0" | ||||
|        id="Arrow2Lstart" | ||||
|        style="overflow:visible" | ||||
|        inkscape:isstock="true"> | ||||
|       <path | ||||
|          id="path5316" | ||||
|          style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" | ||||
|          d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" | ||||
|          transform="matrix(1.1,0,0,1.1,1.1,0)" | ||||
|          inkscape:connector-curvature="0" /> | ||||
|     </marker> | ||||
|   </defs> | ||||
|   <sodipodi:namedview | ||||
|      id="base" | ||||
|      pagecolor="#ffffff" | ||||
|      bordercolor="#666666" | ||||
|      borderopacity="1.0" | ||||
|      inkscape:pageopacity="0.0" | ||||
|      inkscape:pageshadow="2" | ||||
|      inkscape:zoom="1" | ||||
|      inkscape:cx="78.044816" | ||||
|      inkscape:cy="109.9509" | ||||
|      inkscape:document-units="mm" | ||||
|      inkscape:current-layer="g5772" | ||||
|      showgrid="false" | ||||
|      inkscape:snap-bbox="false" | ||||
|      inkscape:bbox-paths="true" | ||||
|      inkscape:snap-bbox-edge-midpoints="true" | ||||
|      inkscape:window-width="1920" | ||||
|      inkscape:window-height="1016" | ||||
|      inkscape:window-x="0" | ||||
|      inkscape:window-y="27" | ||||
|      inkscape:window-maximized="1" | ||||
|      inkscape:snap-page="true" | ||||
|      inkscape:snap-nodes="false" | ||||
|      inkscape:snap-grids="false" | ||||
|      inkscape:snap-to-guides="false" /> | ||||
|   <metadata | ||||
|      id="metadata5"> | ||||
|     <rdf:RDF> | ||||
|       <cc:Work | ||||
|          rdf:about=""> | ||||
|         <dc:format>image/svg+xml</dc:format> | ||||
|         <dc:type | ||||
|            rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | ||||
|         <dc:title></dc:title> | ||||
|       </cc:Work> | ||||
|     </rdf:RDF> | ||||
|   </metadata> | ||||
|   <g | ||||
|      inkscape:label="Layer 1" | ||||
|      inkscape:groupmode="layer" | ||||
|      id="layer1" | ||||
|      transform="translate(-11.725705,-45.280089)"> | ||||
|     <g | ||||
|        style="fill:none;fill-rule:evenodd;stroke:none;stroke-width:1" | ||||
|        id="logo-stroke" | ||||
|        transform="matrix(0.26458333,0,0,0.26458333,28.290311,46.042169)" /> | ||||
|     <g | ||||
|        style="fill:none;fill-rule:evenodd;stroke:none;stroke-width:1" | ||||
|        id="sw" | ||||
|        transform="matrix(0.26458333,0,0,0.26458333,145.76963,48.952586)"> | ||||
|       <g | ||||
|          id="logo/primary" | ||||
|          transform="translate(10,0.5)"> | ||||
|         <g | ||||
|            id="g3791"> | ||||
|           <polygon | ||||
|              style="stroke:#ffffff;stroke-width:25" | ||||
|              id="bg" | ||||
|              points="0.89361702,47.520842 84.44585,0 168,47.520842 168,175.1066 0.89361702,175.1066 " /> | ||||
|           <path | ||||
|              style="fill:#1cc29f" | ||||
|              inkscape:connector-curvature="0" | ||||
|              d="M 63.800562,106.80721 83.980817,95.381101 -1.1914894e-4,47.828009 V 94.788644 C 6.2933277,91.461774 14.222689,89.729979 23.301838,89.729979 c 19.768,0 32.278639,8.233624 40.498724,17.077231" | ||||
|              id="Fill-1" /> | ||||
|           <path | ||||
|              style="fill:#1cc29f" | ||||
|              inkscape:connector-curvature="0" | ||||
|              d="m 26.747983,172.35345 c 8.411915,0 14.754213,-2.43293 14.754213,-8.65431 0,-6.35576 -8.13549,-8.78985 -18.201192,-11.22395 -7.493276,-1.88254 -16.0934465,-3.77092 -23.30076570213,-7.33267 v 12.06531 C 6.0673021,166.80983 16.133004,172.35345 26.747983,172.35345" | ||||
|              id="Fill-4" /> | ||||
|           <polygon | ||||
|              style="fill:#52595f" | ||||
|              id="Fill-6" | ||||
|              points="167.96163,142.93314 167.96163,47.828126 83.980698,95.381218 " /> | ||||
|           <polygon | ||||
|              style="fill:#ace4d6" | ||||
|              id="Fill-9" | ||||
|              points="83.980698,95.380283 167.96044,47.82836 83.980698,0.27526873 -0.00023829787,47.82836 " /> | ||||
|           <path | ||||
|              style="fill:#373b3f" | ||||
|              inkscape:connector-curvature="0" | ||||
|              d="M 83.980221,95.379582 63.799966,106.80686 42.168477,119.0568 c -5.52732,-4.31079 -12.557107,-7.42031 -19.004256,-7.42031 -7.860255,0 -11.858893,2.56731 -11.858893,7.30229 0,5.477 5.470127,8.08755 13.049191,10.2038 1.590638,0.44405 3.268255,0.86823 5.013787,1.29008 16.684426,3.92167 39.021277,8.92541 39.021277,31.37214 0,4.71278 -1.011574,9.40919 -3.227745,13.69427 H 167.95997 v -32.5664 z" | ||||
|              id="Fill-12" /> | ||||
|           <path | ||||
|              style="fill:#ffffff" | ||||
|              inkscape:connector-curvature="0" | ||||
|              d="m 29.368306,130.43278 c -1.745532,-0.42185 -3.423149,-0.84603 -5.013787,-1.29008 -7.579064,-2.11625 -13.049191,-4.7268 -13.049191,-10.20381 0,-4.73497 3.998638,-7.30228 11.858893,-7.30228 6.447149,0 13.476936,3.10952 19.004256,7.42031 L 63.799966,106.80698 C 55.578689,97.963369 43.069243,89.728577 23.301243,89.728577 c -9.080341,0 -17.0073196,1.731795 -23.30076640426,5.059834 v 48.144379 2.20973 C 7.2066043,148.70427 15.807966,150.59148 23.301243,152.47402 c 10.06451,2.43527 18.201191,4.86819 18.201191,11.22512 0,6.22138 -6.343489,8.65431 -14.754213,8.65431 -10.61617,0 -20.6818721,-5.54362 -26.74774440426,-15.14562 v 18.29136 H 65.161838 c 2.216171,-4.28508 3.227745,-8.9815 3.227745,-13.69427 0,-22.44673 -22.336851,-27.45165 -39.021277,-31.37214" | ||||
|              id="Fill-14" /> | ||||
|         </g> | ||||
|       </g> | ||||
|       <g | ||||
|          id="g5276" | ||||
|          transform="translate(-5.4847019,-14.142136)"> | ||||
|         <g | ||||
|            transform="translate(5.9924604,210.70379)" | ||||
|            id="assets/wordmark/primary" | ||||
|            style="fill:#ffffff"> | ||||
|           <g | ||||
|              id="Group-16"> | ||||
|             <path | ||||
|                style="fill:#52595f;fill-opacity:1" | ||||
|                id="Combined-Shape" | ||||
|                d="m 4.9807,31.0602 c -2.066,-0.6 -3.727,-1.38 -4.98,-2.34 l 2.201,-4.88 c 1.199,0.88 2.625,1.587 4.279,2.12 1.652,0.534 3.307,0.8 4.959,0.8 1.842,0 3.201,-0.273 4.08,-0.82 0.881,-0.546 1.32,-1.274 1.32,-2.18 0,-0.667 -0.259,-1.221 -0.779,-1.66 -0.519,-0.44 -1.187,-0.793 -2,-1.061 -0.814,-0.265 -1.914,-0.559 -3.301,-0.879 -2.133,-0.506 -3.879,-1.013 -5.24,-1.52 -1.359,-0.507 -2.525,-1.32 -3.5,-2.44 -0.973,-1.12 -1.459,-2.614 -1.459,-4.48 0,-1.627 0.44,-3.1 1.32,-4.42 0.879,-1.32 2.205,-2.366 3.981,-3.14 1.771,-0.773 3.939,-1.161 6.5,-1.161 1.785,0 3.531,0.214 5.238,0.641 1.707,0.427 3.201,1.04 4.481,1.84 l -2,4.92 c -2.586,-1.466 -5.174,-2.2 -7.76,-2.2 -1.815,0 -3.154,0.294 -4.02,0.88 -0.867,0.586 -1.3,1.36 -1.3,2.32 0,0.96 0.5,1.674 1.5,2.139 1,0.468 2.527,0.928 4.58,1.381 2.132,0.507 3.88,1.014 5.24,1.52 1.359,0.507 2.525,1.307 3.5,2.4 0.972,1.094 1.461,2.574 1.461,4.44 0,1.6 -0.447,3.06 -1.342,4.38 -0.893,1.32 -2.232,2.367 -4.02,3.14 -1.787,0.773 -3.959,1.16 -6.519,1.16 -2.213,0 -4.354,-0.3 -6.42,-0.9 z m 37.3203,-6 c 1.027,-1.08 1.541,-2.526 1.541,-4.34 0,-1.813 -0.514,-3.26 -1.541,-4.34 -1.025,-1.08 -2.34,-1.62 -3.939,-1.62 -1.6,0 -2.915,0.54 -3.94,1.62 -1.027,1.08 -1.541,2.527 -1.541,4.34 0,1.814 0.514,3.26 1.541,4.34 1.025,1.08 2.34,1.62 3.94,1.62 1.599,0 2.914,-0.54 3.939,-1.62 z m 2.6,-14.04 c 1.64,0.92 2.927,2.214 3.861,3.88 0.934,1.667 1.4,3.607 1.4,5.82 0,2.214 -0.466,4.153 -1.4,5.819 -0.934,1.667 -2.221,2.96 -3.861,3.881 -1.639,0.92 -3.459,1.38 -5.459,1.38 -2.746,0 -4.907,-0.866 -6.481,-2.6 v 10.04 h -6.24 v -29.28 h 5.961 v 2.48 c 1.547,-1.866 3.799,-2.8 6.76,-2.8 2,0 3.82,0.46 5.459,1.38 z m 9.419,20.4604 v -29.68 h 6.24 v 29.68 z m 12.04,0 v -21.52 h 6.24 v 21.52 z m 0.32,-25.52 c -0.719,-0.667 -1.08,-1.493 -1.08,-2.481 0,-0.986 0.361,-1.813 1.08,-2.48 0.721,-0.666 1.654,-1 2.801,-1 1.146,0 2.08,0.32 2.798,0.961 0.721,0.64 1.081,1.439 1.081,2.399 0,1.04 -0.36,1.901 -1.081,2.58 -0.718,0.68 -1.652,1.021 -2.798,1.021 -1.147,0 -2.08,-0.334 -2.801,-1 z M 92.2795,30.44 c -0.613,0.454 -1.365,0.794 -2.26,1.021 -0.892,0.225 -1.834,0.339 -2.82,0.339 -2.559,0 -4.539,-0.653 -5.94,-1.96 -1.4,-1.306 -2.099,-3.226 -2.099,-5.76 v -9.32 h -3.32 V 9.961 h 3.32 V 5.2 h 6.24 v 4.761 h 5.359 v 4.799 h -5.359 V 24 c 0,0.907 0.233,1.607 0.699,2.1 0.467,0.493 1.127,0.74 1.981,0.74 0.986,0 1.826,-0.266 2.519,-0.8 z m 38.3183,-20.4794 -7.801,21.52 h -6 l -4.84,-13.361 -5,13.361 h -6 l -7.759,-21.52 h 5.88 l 5.081,14.56 5.279,-14.56 h 5.279 l 5.121,14.56 5.24,-14.56 z m 2.9202,21.52 v -21.52 h 6.24 v 21.52 z m 0.32,-25.52 c -0.719,-0.667 -1.08,-1.493 -1.08,-2.481 0,-0.986 0.361,-1.813 1.08,-2.48 0.721,-0.666 1.654,-1 2.801,-1 1.146,0 2.08,0.32 2.799,0.961 0.72,0.64 1.08,1.439 1.08,2.399 0,1.04 -0.36,1.901 -1.08,2.58 -0.719,0.68 -1.653,1.021 -2.799,1.021 -1.147,0 -2.08,-0.334 -2.801,-1 z m 13.7188,25.1796 c -1.707,-0.44 -3.066,-0.993 -4.08,-1.66 l 2.08,-4.481 c 0.961,0.615 2.121,1.115 3.48,1.5 1.36,0.388 2.694,0.58 4,0.58 2.641,0 3.961,-0.652 3.961,-1.96 0,-0.612 -0.361,-1.052 -1.08,-1.319 -0.72,-0.266 -1.828,-0.493 -3.32,-0.681 -1.76,-0.265 -3.215,-0.573 -4.361,-0.919 -1.147,-0.346 -2.139,-0.96 -2.979,-1.84 -0.84,-0.88 -1.26,-2.133 -1.26,-3.76 0,-1.36 0.393,-2.566 1.18,-3.62 0.785,-1.053 1.934,-1.873 3.44,-2.46 1.505,-0.586 3.287,-0.88 5.339,-0.88 1.52,0 3.034,0.167 4.541,0.5 1.506,0.334 2.752,0.794 3.739,1.38 l -2.078,4.44 c -1.895,-1.066 -3.961,-1.6 -6.202,-1.6 -1.334,0 -2.334,0.186 -3,0.56 -0.666,0.373 -1,0.854 -1,1.44 0,0.667 0.36,1.134 1.08,1.4 0.721,0.267 1.868,0.52 3.44,0.76 1.76,0.294 3.201,0.606 4.32,0.94 1.121,0.333 2.094,0.94 2.92,1.82 0.826,0.88 1.24,2.107 1.24,3.68 0,1.333 -0.4,2.52 -1.199,3.56 -0.801,1.04 -1.967,1.847 -3.5,2.42 -1.535,0.573 -3.353,0.86 -5.461,0.86 -1.787,0 -3.533,-0.221 -5.24,-0.66 z m 25.6016,-15.58 c -0.961,0.8 -1.547,1.894 -1.76,3.28 h 10.6 c -0.215,-1.36 -0.801,-2.446 -1.76,-3.26 -0.961,-0.813 -2.135,-1.22 -3.521,-1.22 -1.413,0 -2.6,0.4 -3.559,1.2 z m 14.6,6.92 h -16.282 c 0.295,1.334 0.987,2.387 2.08,3.16 1.094,0.774 2.454,1.16 4.081,1.16 1.121,0 2.113,-0.167 2.98,-0.5 0.867,-0.333 1.674,-0.86 2.42,-1.58 l 3.32,3.6 c -2.027,2.32 -4.986,3.48 -8.881,3.48 -2.425,0 -4.572,-0.473 -6.439,-1.42 -1.867,-0.946 -3.307,-2.26 -4.32,-3.94 -1.014,-1.68 -1.52,-3.586 -1.52,-5.72 0,-2.106 0.5,-4.007 1.5,-5.7 1,-1.693 2.373,-3.013 4.121,-3.96 1.746,-0.946 3.699,-1.42 5.86,-1.42 2.105,0 4.013,0.453 5.72,1.359 1.705,0.908 3.045,2.207 4.02,3.901 0.972,1.693 1.459,3.66 1.459,5.9 0,0.08 -0.039,0.64 -0.119,1.68 z" | ||||
|                inkscape:connector-curvature="0" /> | ||||
|             <path | ||||
|                transform="translate(-45.924008,-397.01765)" | ||||
|                inkscape:connector-curvature="0" | ||||
|                id="path5240" | ||||
|                d="m 53.632287,428.56295 c -2.567283,-0.43089 -5.770311,-1.59366 -7.062797,-2.56395 -0.43421,-0.32596 -0.417643,-0.42849 0.339834,-2.10321 0.437962,-0.96829 0.895346,-2.01384 1.016409,-2.32345 l 0.220115,-0.56292 1.207819,0.73837 c 2.079115,1.27102 4.189733,1.83823 7.337893,1.972 3.21213,0.1365 4.702275,-0.23162 5.610235,-1.3859 0.756707,-0.962 0.67461,-2.34766 -0.186689,-3.15099 -1.009529,-0.94158 -1.301695,-1.05428 -5.745242,-2.21623 -4.661186,-1.21886 -5.852859,-1.69395 -7.372626,-2.93929 -1.733308,-1.42031 -2.21986,-2.57574 -2.222012,-5.27664 -0.0016,-2.04946 0.07186,-2.40586 0.747759,-3.62615 1.860777,-3.35951 5.461106,-4.96566 10.993453,-4.90428 3.226043,0.0358 5.877686,0.59528 8.058335,1.7003 l 1.288236,0.6528 -0.40338,0.94209 c -0.22186,0.51815 -0.635977,1.53871 -0.920262,2.26791 -0.284284,0.72921 -0.593406,1.32583 -0.686937,1.32583 -0.09353,0 -0.658213,-0.23585 -1.254848,-0.52412 -2.018276,-0.97512 -4.994233,-1.57362 -7.105192,-1.42893 -3.121458,0.21395 -4.632806,1.30488 -4.632806,3.34408 0,1.63271 0.985645,2.2324 5.656854,3.44178 6.646575,1.72081 8.603412,2.74272 9.834304,5.1357 1.410728,2.74261 0.611819,6.67899 -1.797259,8.85545 -1.274662,1.15158 -3.635984,2.25033 -5.627294,2.61844 -1.689869,0.31239 -5.465191,0.31824 -7.293902,0.0113 z" | ||||
|                style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" /> | ||||
|             <path | ||||
|                transform="translate(-45.924008,-397.01765)" | ||||
|                inkscape:connector-curvature="0" | ||||
|                id="path5242" | ||||
|                d="m 72.784843,421.63018 v -14.52094 h 2.904188 2.904189 v 1.29265 1.29266 l 0.806933,-0.78893 c 1.386551,-1.35561 2.83238,-1.89172 5.406899,-2.00489 2.870769,-0.1262 4.546538,0.32252 6.69475,1.79261 1.741893,1.19203 2.937825,2.74771 3.783399,4.92148 0.442246,1.13691 0.567691,1.9938 0.581881,3.97475 0.02085,2.91084 -0.417755,4.5248 -1.800512,6.62539 -1.784766,2.7113 -4.479997,4.1525 -8.068137,4.31421 -2.814329,0.12683 -4.631962,-0.36129 -6.134508,-1.64742 l -1.018167,-0.87151 v 5.07044 5.07044 H 75.8153 72.784843 Z m 13.43301,1.84967 c 1.222199,-0.36618 2.843127,-1.9441 3.277568,-3.19061 0.507625,-1.45649 0.383219,-4.27598 -0.242745,-5.5015 -1.698846,-3.32601 -5.927887,-4.16328 -8.64227,-1.71099 -1.28809,1.16371 -1.899068,2.78474 -1.861348,4.9385 0.07259,4.14497 3.500992,6.65339 7.468795,5.4646 z" | ||||
|                style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" /> | ||||
|             <path | ||||
|                transform="translate(-45.924008,-397.01765)" | ||||
|                inkscape:connector-curvature="0" | ||||
|                id="path5244" | ||||
|                d="m 100.3115,413.67523 v -14.64721 h 3.03046 3.03045 v 14.64721 14.64721 h -3.03045 -3.03046 z" | ||||
|                style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" /> | ||||
|             <path | ||||
|                transform="translate(-45.924008,-397.01765)" | ||||
|                inkscape:connector-curvature="0" | ||||
|                id="path5246" | ||||
|                d="m 112.43333,417.71584 v -10.6066 h 3.03046 3.03046 v 10.6066 10.6066 h -3.03046 -3.03046 z" | ||||
|                style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" /> | ||||
|             <path | ||||
|                transform="translate(-45.924008,-397.01765)" | ||||
|                inkscape:connector-curvature="0" | ||||
|                id="path5248" | ||||
|                d="m 113.47416,403.39443 c -2.321,-1.14341 -2.3533,-4.55429 -0.0544,-5.74311 1.16269,-0.60125 3.30911,-0.50913 4.34265,0.18637 2.15531,1.45039 1.65515,4.7651 -0.86298,5.71919 -1.02614,0.3888 -2.44267,0.32161 -3.42528,-0.16245 z" | ||||
|                style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" /> | ||||
|             <path | ||||
|                transform="translate(-45.924008,-397.01765)" | ||||
|                inkscape:connector-curvature="0" | ||||
|                id="path5250" | ||||
|                d="m 129.78219,428.21033 c -1.59411,-0.56861 -2.84528,-1.60436 -3.61424,-2.99197 l -0.72891,-1.31534 -0.0794,-6.12405 -0.0794,-6.12405 h -1.75151 -1.75151 v -2.27284 -2.27284 h 1.76777 1.76777 v -2.39911 -2.39912 h 2.90418 2.90419 v 2.39912 2.39911 h 2.77792 2.77792 v 2.27284 2.27284 h -2.7962 -2.79621 l 0.0814,5.25214 c 0.0931,6.00296 0.19886,6.36725 2.00655,6.90885 0.87538,0.26227 1.22161,0.24845 2.15123,-0.0858 0.60936,-0.21912 1.15517,-0.32198 1.21291,-0.22856 0.38636,0.62514 1.39602,3.71722 1.29757,3.97378 -0.36468,0.95035 -6.00497,1.46523 -8.05207,0.73504 z" | ||||
|                style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" /> | ||||
|             <path | ||||
|                transform="translate(-45.924008,-397.01765)" | ||||
|                inkscape:connector-curvature="0" | ||||
|                id="path5252" | ||||
|                d="m 143.17592,417.90006 c -2.05087,-5.72661 -3.72709,-10.49725 -3.72494,-10.60142 0.002,-0.10417 1.23678,-0.1894 2.74361,-0.1894 h 2.73967 l 2.49991,7.19734 c 1.37494,3.95853 2.56768,7.19733 2.65052,7.19733 0.0828,0 1.32248,-3.2388 2.75474,-7.19733 l 2.60412,-7.19734 h 2.55722 2.55723 l 2.5173,7.19399 c 1.38452,3.9567 2.588,7.1955 2.6744,7.19734 0.1394,0.003 0.87424,-1.96658 4.40363,-11.80282 l 0.9288,-2.58851 h 2.64272 c 1.45349,0 2.60484,0.0965 2.55854,0.21452 -0.0463,0.11799 -1.77866,4.89096 -3.84969,10.6066 l -3.76551,10.39208 h -2.94482 -2.94482 l -2.36781,-6.56599 c -1.3023,-3.6113 -2.43991,-6.56599 -2.52802,-6.56599 -0.0881,0 -0.93387,2.07397 -1.87945,4.60882 -0.94558,2.53485 -2.05422,5.48955 -2.46365,6.56599 l -0.7444,1.95717 -2.94522,-0.005 -2.94521,-0.005 z" | ||||
|                style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" /> | ||||
|             <path | ||||
|                transform="translate(-45.924008,-397.01765)" | ||||
|                inkscape:connector-curvature="0" | ||||
|                id="path5254" | ||||
|                d="m 179.60847,417.71584 v -10.6066 h 3.03046 3.03046 v 10.6066 10.6066 h -3.03046 -3.03046 z" | ||||
|                style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" /> | ||||
|             <path | ||||
|                transform="translate(-45.924008,-397.01765)" | ||||
|                inkscape:connector-curvature="0" | ||||
|                id="path5256" | ||||
|                d="m 180.64931,403.39443 c -1.68472,-0.82996 -2.28731,-2.93022 -1.3036,-4.54356 1.30335,-2.13756 5.02879,-2.18101 6.50331,-0.0758 0.55602,0.79383 0.49576,2.67909 -0.11218,3.50906 -1.05935,1.44627 -3.37829,1.95237 -5.08753,1.11034 z" | ||||
|                style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" /> | ||||
|             <path | ||||
|                transform="translate(-45.924008,-397.01765)" | ||||
|                inkscape:connector-curvature="0" | ||||
|                id="path5258" | ||||
|                d="m 193.87688,428.10821 c -0.97227,-0.25121 -2.35422,-0.71314 -3.07099,-1.02651 l -1.30323,-0.56978 0.90206,-1.93579 c 1.12951,-2.42392 1.14649,-2.44191 1.8668,-1.97964 2.01128,1.2908 7.60261,2.01157 9.47551,1.22149 0.99398,-0.41931 1.51997,-1.51991 1.10075,-2.30324 -0.38207,-0.71391 -0.90208,-0.88881 -4.5855,-1.54235 -4.8739,-0.86475 -6.43698,-1.60719 -7.54942,-3.58585 -0.80855,-1.43815 -0.82984,-3.88746 -0.0469,-5.39896 0.71552,-1.38138 2.25988,-2.67155 4.03986,-3.37491 1.77953,-0.70318 6.29996,-0.97603 8.70899,-0.52566 1.79228,0.33506 4.47797,1.2543 4.47797,1.53268 0,0.1024 -0.40545,1.06371 -0.90099,2.13624 -0.71789,1.55379 -0.98731,1.9167 -1.32582,1.78588 -2.38211,-0.9206 -3.62143,-1.18122 -5.64761,-1.18763 -3.05491,-0.01 -4.54223,0.85951 -4.14934,2.42487 0.22221,0.88539 1.05452,1.22848 4.60634,1.89878 4.09688,0.77317 5.29367,1.18841 6.46092,2.24167 1.29403,1.16767 1.71563,2.15917 1.70856,4.01824 -0.0103,2.70944 -1.53269,4.7079 -4.48516,5.88768 -2.02062,0.80742 -7.65269,0.96231 -10.28277,0.28279 z" | ||||
|                style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" /> | ||||
|             <path | ||||
|                transform="translate(-45.924008,-397.01765)" | ||||
|                inkscape:connector-curvature="0" | ||||
|                id="path5260" | ||||
|                d="m 219.46225,428.20381 c -4.34591,-1.19696 -7.36635,-4.48442 -8.08064,-8.79502 -0.89939,-5.42761 2.58681,-10.76814 7.96379,-12.19982 0.71529,-0.19045 2.24165,-0.34762 3.39193,-0.34927 6.43621,-0.009 10.88468,4.44378 10.90813,10.91927 l 0.006,1.70464 h -8.21088 -8.21088 l 0.39559,0.94702 c 0.92958,2.22533 2.94934,3.42211 5.79837,3.43574 2.01461,0.01 3.41614,-0.37931 4.62713,-1.28411 l 0.83906,-0.62691 0.63839,0.59503 c 0.35111,0.32727 1.08489,1.12618 1.63061,1.77537 l 0.99223,1.18034 -1.44376,1.03385 c -2.09039,1.4969 -4.08069,2.04012 -7.37339,2.01246 -1.47851,-0.0124 -3.22084,-0.16929 -3.87186,-0.34859 z m 8.63355,-12.34432 c 0,-0.0487 -0.12934,-0.47488 -0.28742,-0.94702 -0.74471,-2.22426 -2.60273,-3.55454 -4.99618,-3.57708 -1.84882,-0.0174 -3.03343,0.39621 -4.00259,1.39758 -0.72907,0.7533 -1.57295,2.33835 -1.57295,2.95445 0,0.1711 1.86557,0.26065 5.42957,0.26065 2.98626,0 5.42957,-0.0399 5.42957,-0.0886 z" | ||||
|                style="fill:#373b3f;fill-opacity:1;stroke-width:0.25253814" /> | ||||
|           </g> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g4371" | ||||
|        transform="matrix(0.78086208,0,0,0.78086208,-556.19328,59.324167)"> | ||||
|       <g | ||||
|          transform="translate(3.1797752)" | ||||
|          id="g1165"> | ||||
|         <g | ||||
|            id="g4417"> | ||||
|           <g | ||||
|              transform="matrix(2.3453744,0,0,2.3453744,727.37608,2.1513774)" | ||||
|              id="Wordmark-12"> | ||||
|             <path | ||||
|                inkscape:connector-curvature="0" | ||||
|                d="M 22.8,6.7 C 21.9,6.7 21.1,7.2 20.6,7.9 20.2,7.1 19.3,6.7 18.4,6.7 17.5,6.8 16.8,7.2 16.3,7.9 v 0 -1 h -1.8 v 6.9 h 1.9 V 10 c 0,-0.8 0.5,-1.7 1.4,-1.7 0.6,0 1.1,0.5 1.2,1.2 v 4.2 h 1.9 V 10 c -0.1,-0.8 0.5,-1.6 1.3,-1.7 0,0 0,0 0,0 h 0.1 c 0.9,0 1.1,0.8 1.1,1.6 v 3.8 h 1.9 V 9.5 C 25.4,8.1 24.4,6.9 23.1,6.7 v 0 z m 4.4,7.1 H 29 V 6.9 H 27.1 Z M 34.6,6.7 C 33.7,6.8 33,7.2 32.5,7.9 v 0 -1 h -1.8 v 6.9 h 1.9 V 10 C 32.5,9.2 33.2,8.4 34,8.3 v 0 c 0.9,0 1.2,0.8 1.2,1.6 v 3.8 H 37 V 9.5 C 37.2,8.2 36.3,6.9 34.9,6.7 Z m 8.2,1.7 V 6.9 H 41.1 V 5 H 39.2 V 6.9 H 38 v 1.5 h 1.2 v 3 c 0,1.1 0.3,2.5 2.3,2.5 0.4,0 0.8,-0.1 1.2,-0.2 v -1.5 c -0.3,0.1 -0.5,0.1 -0.8,0.1 -0.5,0 -0.8,-0.4 -0.8,-1 v -3 z" | ||||
|                id="mint-3" /> | ||||
|           </g> | ||||
|           <g | ||||
|              transform="matrix(2.5700935,0,0,2.5700935,724.11766,3.7544174)" | ||||
|              id="_Group_2"> | ||||
|             <path | ||||
|                style="fill:#189e7d" | ||||
|                inkscape:connector-curvature="0" | ||||
|                d="M 5.7,13.3 11.4,9.5 C 11.3,8.7 11.1,7.9 10.8,7.2 l -5.2,3.4 z" | ||||
|                class="st0" | ||||
|                id="_Path_6" /> | ||||
|             <path | ||||
|                style="fill:#45cae6" | ||||
|                inkscape:connector-curvature="0" | ||||
|                d="M 5.7,10.7 10.9,7.3 C 10.6,6.6 10.3,5.9 9.9,5.3 L 5.7,8 Z" | ||||
|                class="st1" | ||||
|                id="_Path_7" /> | ||||
|             <path | ||||
|                style="fill:#0ac775" | ||||
|                inkscape:connector-curvature="0" | ||||
|                d="m 5.7,13.3 v 2.7 0 c 3.5,-2.3 5.7,-3.3 5.7,-6.1 V 9.5 Z" | ||||
|                class="st2" | ||||
|                id="_Path_8" /> | ||||
|             <path | ||||
|                style="fill:#0ac775" | ||||
|                inkscape:connector-curvature="0" | ||||
|                d="M 7.2,1.6 C 6.5,0.8 5.9,0.2 5.7,0 V 0 8 L 9.9,5.2 C 9.5,4.6 9.1,4 8.7,3.4 8.3,2.8 7.7,2.1 7.2,1.6" | ||||
|                class="st2" | ||||
|                id="_Path_9" /> | ||||
|             <path | ||||
|                style="fill:#a6ed5f" | ||||
|                inkscape:connector-curvature="0" | ||||
|                d="M 5.7,10.7 V 0 C 5,0.7 0,5.9 0,9.9 0,12.8 2.3,13.7 5.7,16 Z" | ||||
|                class="st3" | ||||
|                id="_Path_10" /> | ||||
|           </g> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g5772" | ||||
|        transform="matrix(0.91213157,0,0,0.91213157,37.493849,7.953608)"> | ||||
|       <path | ||||
|          inkscape:connector-curvature="0" | ||||
|          id="path5292" | ||||
|          d="M 62.553851,84.172301 H 113.98707" | ||||
|          style="fill:none;stroke:#000000;stroke-width:3.21370983;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker6689)" /> | ||||
|       <circle | ||||
|          r="5.302053" | ||||
|          cy="78.851875" | ||||
|          cx="89.713661" | ||||
|          id="path5294" | ||||
|          style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> | ||||
|     </g> | ||||
|   </g> | ||||
|   <style | ||||
|      id="style2" | ||||
|      type="text/css"> | ||||
| 	.st0{fill:#189E7D;} | ||||
| 	.st1{fill:#45CAE6;} | ||||
| 	.st2{fill:#0AC775;} | ||||
| 	.st3{fill:#A6ED5F;} | ||||
| 	.st4{fill:#FFFFFF;} | ||||
| </style> | ||||
| </svg> | ||||
| After Width: | Height: | Size: 26 KiB | 
| @ -2,16 +2,41 @@ body { | ||||
| 	background-color: DarkSlateGray; | ||||
| 	color: Gainsboro; | ||||
| 	font-family: courier; | ||||
| 	max-width: 650px; | ||||
| 	max-width: 700px; | ||||
| 	margin-left: 100px; | ||||
| } | ||||
| a { | ||||
| 	color: LightGray; | ||||
| } | ||||
| 
 | ||||
| img { | ||||
| 	max-width: 100%; | ||||
| } | ||||
| 
 | ||||
| li { | ||||
| 	margin-bottom: .5em; | ||||
| } | ||||
| 
 | ||||
| #title { | ||||
| 	display: inline; | ||||
| } | ||||
| span.subtitle { | ||||
| 	font-style: italic; | ||||
| } | ||||
| 
 | ||||
| 
 | ||||
| ul.homepage-posts { | ||||
| 	padding-left: 1em;; | ||||
| } | ||||
| ul.homepage-posts .post { | ||||
| 	display: flex; | ||||
| 	justify-content: space-between; | ||||
| 	margin-bottom: 1em; | ||||
| } | ||||
| ul.homepage-posts .post a { | ||||
| 	width: 75%; | ||||
| } | ||||
| ul.homepage-posts .post .date{ | ||||
| 	width: 20%; | ||||
| 	text-align: right; | ||||
| } | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user