New commit

This commit is contained in:
vladocar 2020-05-27 01:55:05 +02:00
parent e2e717c94a
commit 508b1330c8
15 changed files with 1347 additions and 0 deletions

37
Headings.htm Normal file
View File

@ -0,0 +1,37 @@
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Headings</title>
<link rel="stylesheet" href="css/basic.css" type="text/css">
<style>
.main { margin:0 auto; width:620px; }
</style>
</head>
<body>
<div class="main">
<br />
<h1>Sed scelerisque sagittis lorem. Phasellus sodales. Nulla urna justo, vehicula in, suscipit nec, molestie sed, tellus. Quisque justo. Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Etiam viverra augue non enim.
</h1>
<h2>Sed scelerisque sagittis lorem. Phasellus sodales. Nulla urna justo, vehicula in, suscipit nec, molestie sed, tellus. Quisque justo. Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Etiam viverra augue non enim.
</h2>
<h3>Sed scelerisque sagittis lorem. Phasellus sodales. Nulla urna justo, vehicula in, suscipit nec, molestie sed, tellus. Quisque justo. Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Etiam viverra augue non enim.
</h3>
<h4>Sed scelerisque sagittis lorem. Phasellus sodales. Nulla urna justo, vehicula in, suscipit nec, molestie sed, tellus. Quisque justo. Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Etiam viverra augue non enim.
</h4>
<h5>Sed scelerisque sagittis lorem. Phasellus sodales. Nulla urna justo, vehicula in, suscipit nec, molestie sed, tellus. Quisque justo. Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Etiam viverra augue non enim.
</h5>
</div>
</body>
</html>

29
Looking-Glass.html Normal file

File diff suppressed because one or more lines are too long

87
README.md Normal file
View File

@ -0,0 +1,87 @@
Basic.css
=======================================
Classless CSS Starter File
* * *
Basic.css gives you basic CSS formatting and ability to make basic grids with only HTML5 syntax.
### List of features
* Lightweight 1kb minified and gzipped.
* Basic Typography.
* Basic Forms.
* Custom colors.
* Dark theme.
* Round corners.
* Flex Grid without classes.
* Flex Grid cards.
This project uses the best parts from my previous projects:
https://github.com/vladocar/Basic-CSS-Typography-Reset
https://github.com/vladocar/infinity-css-grid
https://github.com/vladocar/Simple-Button
##### Change root css variables with your color palette
```css
:root{
--c1:#0074d9;
--c2:#eee;
--c3:#fff;
--c4:#000;
--c5:#fff;
}
```
##### Adjust the round corners
By default are 8px, use --rc: 0px; if you don't like round corners.
```css
:root{
--rc: 8px;
}
```
##### Override the colors in the dark mode:
```css
@media (prefers-color-scheme: dark) {
:root {
--c2:#333;
--c3:#1e1f20;
--c4:#fff;
}
}
```
##### How you can use the infinity flex grid?
Use the HTML5 tags selection and aside to make flex grid.
```html
<section>
<aside> 1 </aside>
<aside> 2 </aside>
<aside> 3 </aside>
</section>
<section>
<aside> 1 </aside>
<aside> 2 </aside>
<aside> 3 </aside>
<aside> 4 </aside>
</section>
```
Use the HTML5 tags selection and article to make cards.
```html
<section>
<article> 1 </article>
<article> 2 </article>
<article> 3 </article>
</section>
```

49
cards.html Normal file
View File

@ -0,0 +1,49 @@
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title> Lorem Ipsum Crash Test </title>
<meta name="author" content="Vladimir Carrer">
<link rel="stylesheet" href="css/basic.css" type="text/css">
<style>
main {
margin: 0 auto;
width: 82%;
text-align: left;
padding: 0 20px;
}
</style>
</head>
<body>
<main>
<section>
<article> 1 </article>
<article> 2 </article>
<article> 3 </article>
</section>
<section>
<article>1</article>
<article>2</article>
<article>3</article>
<article>4</article>
</section>
<section>
<article> 1 </article>
<article> 2 </article>
<article> 3 </article>
<article> 4 </article>
<article> 5 </article>
</section>
</main>
</body>
</html>

102
css/basic.css Normal file
View File

@ -0,0 +1,102 @@
/* Basic.css */
* {box-sizing: border-box}
:root{
--mono:'Courier New', Courier, 'Ubuntu Mono', 'Liberation Mono', monospace;
--c1:#0074d9;
--c2:#eee;
--c3:#fff;
--c4:#000;
--c5:#fff;
--m1: 8px;
--rc: 8px;
}
@media (prefers-color-scheme: dark) {
:root {
--c2:#333;
--c3:#1e1f20;
--c4:#fff;
}
}
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
/* General settings */
body {
margin: 0;
font: 1em/1.6 system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue, Fira Sans, sans-serif;
font-weight: 400;
font-style: normal;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
background-color: var(--c3);
color: var(--c4)
}
img, iframe {border: none; max-width: 100%}
a {color: var(--c1); text-decoration:none}
a:hover {color: var(--c1); text-decoration: underline}
pre {font: 1em/1.6 var(--mono); background: var(--c2); padding: 1em;}
code {font: 1em/1.6 var(--mono);}
blockquote {border-left: 5px solid var(--c2); padding: 1em 1.5em; margin: 0}
hr {border:0; border-bottom: 1px solid var(--c4)}
/* Headlines */
h1,h2,h3,h4,h5,h6 {margin: 0.6em 0; font-weight: normal}
h1 {font-size: 2.625em; line-height: 1.2}
h2 {font-size: 1.625em; line-height: 1.2}
h3 {font-size: 1.3125em; line-height: 1.24}
h4 {font-size: 1.1875em; line-height: 1.23}
h5,h6 {font-size: 1em; font-weight:bold}
/* Table */
table {border-collapse: collapse; border-spacing: 0; margin:1em 0}
th, td {text-align: left; vertical-align: top;border: 1px solid; padding: 0.4em}
thead,tfoot{background: var(--c2)}
/* Rounded Corners*/
pre,code,input,select,textarea,button,img {border-radius: var(--rc)}
/* Forms */
input,select,textarea{font-size: 1em; color:var(--c4); background: var(--c2); border: 0; padding: 0.6em}
button {font-size: 1em; display: inline-block; color: var(--c5); background: var(--c1); border: 0; margin: 0 4px; padding: 0.6em; cursor: pointer; text-align: center}
button:hover,button:focus,input:hover,textarea:hover,select:hover {opacity: 0.8}
/* Infinite Grid */
section{display: flex; flex-flow: row wrap}
aside,article {flex:1; margin:var(--m1)}
/* Cards */
article {background: var(--c2); border-radius: var(--rc); padding: 1em; box-shadow: 0px 1px 0px rgba(0,0,0,0.3)}
aside:first-child, article:first-child {margin-left:0}
aside:last-child, article:last-child {margin-left:0}

1
css/basic.min.css vendored Normal file
View File

@ -0,0 +1 @@
*{box-sizing:border-box}:root{--mono:'Courier New',Courier,'Ubuntu Mono','Liberation Mono',monospace;--c1:#0074d9;--c2:#eee;--c3:#fff;--c4:#000;--c5:#fff;--m1:8px;--rc:8px}@media (prefers-color-scheme:dark){:root{--c2:#333;--c3:#1e1f20;--c4:#fff}}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0;font:1em/1.6 system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Droid Sans,Helvetica Neue,Fira Sans,sans-serif;font-weight:400;font-style:normal;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;background-color:var(--c3);color:var(--c4)}iframe,img{border:none;max-width:100%}a{color:var(--c1);text-decoration:none}a:hover{color:var(--c1);text-decoration:underline}pre{font:1em/1.6 var(--mono);background:var(--c2);padding:1em}code{font:1em/1.6 var(--mono)}blockquote{border-left:5px solid var(--c2);padding:1em 1.5em;margin:0}hr{border:0;border-bottom:1px solid var(--c4)}h1,h2,h3,h4,h5,h6{margin:.6em 0;font-weight:400}h1{font-size:2.625em;line-height:1.2}h2{font-size:1.625em;line-height:1.2}h3{font-size:1.3125em;line-height:1.24}h4{font-size:1.1875em;line-height:1.23}h5,h6{font-size:1em;font-weight:700}table{border-collapse:collapse;border-spacing:0;margin:1em 0}td,th{text-align:left;vertical-align:top;border:1px solid;padding:.4em}tfoot,thead{background:var(--c2)}button,code,img,input,pre,select,textarea{border-radius:var(--rc)}input,select,textarea{font-size:1em;color:var(--c4);background:var(--c2);border:0;padding:.6em}button{font-size:1em;display:inline-block;color:var(--c5);background:var(--c1);border:0;margin:0 4px;padding:.6em;cursor:pointer;text-align:center}button:focus,button:hover,input:hover,select:hover,textarea:hover{opacity:.8}section{display:flex;flex-flow:row wrap}article,aside{flex:1;margin:var(--m1)}article{background:var(--c2);border-radius:var(--rc);padding:1em;box-shadow:0 1px 0 rgba(0,0,0,.3)}article:first-child,aside:first-child{margin-left:0}article:last-child,aside:last-child{margin-left:0}

55
grid.html Normal file
View File

@ -0,0 +1,55 @@
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title> Lorem Ipsum Crash Test </title>
<meta name="author" content="Vladimir Carrer">
<link rel="stylesheet" href="css/basic.css" type="text/css">
<style>
main {
margin: 0 auto;
width: 82%;
text-align: left;
padding: 0 20px;
}
aside{
color: #fff;
background-color: #00bbeb;
padding: 15px;
margin: 10px 8px 10px 8px;
text-align: center;
}
</style>
</head>
<body>
<main>
<section>
<aside> 1 </aside>
<aside> 2 </aside>
<aside> 3 </aside>
</section>
<section>
<aside>1</aside>
<aside>2</aside>
<aside>3</aside>
<aside>4</aside>
</section>
<section>
<aside> 1 </aside>
<aside> 2 </aside>
<aside> 3 </aside>
<aside> 4 </aside>
<aside> 5 </aside>
</section>
</main>
</body>
</html>

243
img/font.svg Normal file
View File

@ -0,0 +1,243 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="b8c64dc2-e86a-49bc-92bf-164106d9e7fb"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="887.9px" height="569.7px"
viewBox="0 0 887.9 569.7" style="enable-background:new 0 0 887.9 569.7;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E6E6E6;}
.st1{fill:#FFFFFF;}
.st2{fill:#0074D9;}
.st3{fill:#CCCCCC;}
.st4{fill:#3F3D56;}
.st5{fill:url(#SVGID_1_);}
.st6{fill:#464353;}
.st7{opacity:0.1;enable-background:new ;}
.st8{fill:#514E7F;}
.st9{fill:#A1616A;}
.st10{opacity:5.000000e-02;enable-background:new ;}
.st11{opacity:0.1;}
</style>
<title>proud_coder</title>
<rect x="276.4" y="0.3" class="st0" width="611.5" height="391.6"/>
<rect x="293.9" y="49.5" class="st1" width="576.5" height="319.3"/>
<rect x="276.2" class="st2" width="611.5" height="26"/>
<circle class="st1" cx="295.5" cy="13.3" r="4.8"/>
<circle class="st1" cx="313.7" cy="13.3" r="4.8"/>
<circle class="st1" cx="332" cy="13.3" r="4.8"/>
<path class="st3" d="M707.3,79.4H519.6c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h187.7c0.9,0.1,1.6,1,1.4,1.9
C708.6,78.7,708,79.3,707.3,79.4z"/>
<path class="st3" d="M577.2,97.5H457.9c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C578.6,96.9,578,97.4,577.2,97.5z"/>
<path class="st3" d="M707.3,97.9H587.9c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C708.6,97.2,708,97.8,707.3,97.9z"/>
<path class="st3" d="M577.5,115.7H458.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C578.8,115,578.3,115.6,577.5,115.7z"/>
<path class="st3" d="M577.8,133.9H458.5c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C579.1,133.2,578.5,133.8,577.8,133.9z"/>
<path class="st3" d="M632,115.7h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4H632c0.9,0.1,1.6,1,1.4,1.9
C633.3,115,632.7,115.6,632,115.7L632,115.7z"/>
<path class="st3" d="M632,133.5h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4H632c0.9,0.1,1.6,1,1.4,1.9
C633.3,132.9,632.7,133.4,632,133.5L632,133.5z"/>
<path class="st3" d="M689.3,133.5h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h34.2c0.9,0.1,1.6,1,1.4,1.9
C690.6,132.9,690.1,133.4,689.3,133.5z"/>
<path class="st3" d="M491.2,79.4H457c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h34.2c0.9,0.1,1.6,1,1.4,1.9
C492.5,78.7,491.9,79.3,491.2,79.4z"/>
<path class="st3" d="M576.8,287.7H457.5c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C578.1,287,577.5,287.6,576.8,287.7L576.8,287.7z"/>
<path class="st3" d="M576.2,324H456.9c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C577.5,323.3,577,323.9,576.2,324z"/>
<path class="st3" d="M576.5,342.2H457.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C577.8,341.5,577.2,342.1,576.5,342.2L576.5,342.2z"/>
<path class="st3" d="M627.5,324.3h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h34.2c0.9,0.1,1.6,1,1.4,1.9
C628.8,323.7,628.2,324.2,627.5,324.3L627.5,324.3z"/>
<path class="st3" d="M627.5,342.2h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h34.2c0.9,0.1,1.6,1,1.4,1.9
C628.8,341.5,628.2,342.1,627.5,342.2L627.5,342.2z"/>
<path class="st3" d="M684.8,324.3h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h34.2c0.9,0.1,1.6,1,1.4,1.9
C686.2,323.7,685.6,324.2,684.8,324.3z"/>
<path class="st3" d="M707.4,305.8H519.7c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h187.7c0.9,0.1,1.6,1,1.4,1.9
C708.7,305.2,708.2,305.7,707.4,305.8z"/>
<path class="st3" d="M491.3,305.8h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h34.2c0.9,0.1,1.6,1,1.4,1.9
C492.7,305.2,492.1,305.7,491.3,305.8z"/>
<path class="st0" d="M470.6,546c14.4,19.3,44.4,21.3,44.4,21.3s6.6-29.3-7.9-48.6s-44.4-21.3-44.4-21.3S456.2,526.7,470.6,546z"/>
<path class="st0" d="M544.1,553.3c-9.5,12.7-29.3,14.1-29.3,14.1s-4.3-19.3,5.2-32.1s29.3-14.1,29.3-14.1S553.6,540.6,544.1,553.3z"
/>
<rect y="567.4" class="st4" width="702.9" height="2.2"/>
<g>
<circle class="st4" cx="645.7" cy="245.6" r="8.7"/>
<circle class="st4" cx="676.2" cy="245.6" r="8.7"/>
<circle class="st4" cx="706.8" cy="245.6" r="8.7"/>
<path class="st2" d="M531.8,233.7h-42.3l-8.7,20.3H465l39.1-86.5h12.8l39.2,86.5h-15.7L531.8,233.7z M526.6,221.5l-15.9-37.1
l-15.9,37.1H526.6z"/>
<path class="st2" d="M623.1,192.6V254h-14.9v-9.8c-1.8,3.4-4.6,6.1-8,8c-3.5,1.9-7.5,2.9-11.9,2.9c-5.3,0-10.1-1.3-14.2-3.9
c-4.1-2.6-7.3-6.3-9.6-11.1c-2.3-4.8-3.4-10.3-3.4-16.6c0-6.3,1.2-11.9,3.5-16.8c2.3-4.9,5.5-8.7,9.7-11.4
c4.1-2.7,8.8-4.1,14.1-4.1c4.5,0,8.4,1,11.9,2.9c3.4,1.8,6.2,4.6,8,8v-9.2H623.1z M604,237.8c2.8-3.5,4.1-8.4,4.1-14.7
c0-6.5-1.4-11.5-4.1-14.9c-2.8-3.5-6.7-5.2-11.8-5.2c-5,0-8.9,1.8-11.7,5.4c-2.8,3.6-4.2,8.6-4.2,15c0,6.3,1.4,11.2,4.2,14.6
c2.8,3.4,6.7,5.1,11.8,5.1C597.4,243,601.2,241.3,604,237.8z"/>
</g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="183.0309" y1="-107.3062" x2="183.0309" y2="370.5871" gradientTransform="matrix(1 0 0 -1 -24.78 457.78)">
<stop offset="0" style="stop-color:#808080;stop-opacity:0.25"/>
<stop offset="0.54" style="stop-color:#808080;stop-opacity:0.12"/>
<stop offset="1" style="stop-color:#808080;stop-opacity:0.1"/>
</linearGradient>
<path class="st5" d="M295.4,237.2l-0.3-0.6c1.9,0.6,3.7,1.5,5.4,2.5c-0.7-6.4-25.5-24.6-29.9-24.6c-4.5,0-9.4-7.7-9.4-7.7
s-12.9-2-14.8-4.1c-2-2.1-15.3-0.9-18.6-0.1c-3.2,0.7-8.2-2-8.2-2s-2.7-4.5-6.2-4.5s-7.2-5-7.2-5s-3.2-3-6.2-3.5
c-3-0.5-6.7-3.7-8.4-6.2c-1.7-2.5-10.4-3.7-15.3-3s-18.3-1-18.3-1c5.4-2.5,6.8-8.4,6.8-8.4c-4.9-0.3-17.7-11-17.7-11
s0.5,3.5,1.1,8.3l-0.8-1.1l-0.1,0.1c-0.3-3.5-0.3-6.9-0.1-10.4c0-0.3,0-0.5,0.1-0.8c6.5-5.7,9.2-14.4,7.2-22.8
c-0.1-0.6-0.3-1.1-0.5-1.7c0.9,0.4,1.9,0.6,3,0.7h0.5c1.2,0,2.4-0.5,3.3-1.4l0,0c0.1-0.2,0.3-0.4,0.4-0.6c0,0,0-0.1,0.1-0.1
c0.1-0.2,0.2-0.4,0.2-0.6c0-0.1,0-0.1,0.1-0.2c0-0.2,0.1-0.3,0.1-0.5c0-0.1,0-0.3,0-0.4s0-0.2,0-0.3c0-1.1-0.3-2.3-0.7-3.3
c-0.8-1.9-1.9-3.8-1.8-5.9c0-0.2,0-0.3,0.1-0.5c0.2-1.6,1.1-3.1,1.6-4.7v-0.1c0.1-0.2,0.1-0.5,0.2-0.7c0-0.1,0-0.1,0.1-0.2
c0.1-0.3,0.1-0.5,0.1-0.8c0,0,0,0,0-0.1c0.2-3.1-2.3-5.8-5.1-7.1c-2.5-1.1-5.4-1.4-7.8-3c-2.6-1.7-4.1-4.8-6.1-7.3
c-2.8-3.6-7.3-6.4-11.9-5.8c-2.8,0.3-5.4,1.8-8.2,2.4c-4.3,0.9-8.7-0.4-13,0.6c-1,0.2-2,0.7-2.6,1.5c-0.3,0.4-0.5,0.9-0.5,1.3l0,0
c-0.1,0.4-0.1,0.9,0,1.4v0c0,0.4,0.1,0.9,0.2,1.3l0.1,0.3c0,0.1,0,0.2,0.1,0.3s0.1,0.3,0.1,0.5c0.1,0.3,0.1,0.6,0.2,0.9v0.1
c0.1,0.3,0.1,0.6,0.2,0.9l0,0c0.1,0.6,0.2,1.3,0.2,1.9l0,0c0.2,1.8-0.2,3.7-1.1,5.3c-1.9,3-5.8,4.3-7.5,7.4
c-0.4,0.7-0.7,1.6-0.7,2.4l0,0c0,0.3,0,0.6,0,0.8v0.1c0,0.2,0,0.5,0.1,0.7c0,0.1,0,0.1,0,0.2c0,0.2,0.1,0.4,0.1,0.7
c0,0.1,0,0.1,0.1,0.2c0.1,0.3,0.2,0.5,0.3,0.7l0,0c0.8,1.7,2.3,3,2.6,4.8l0,0c0,0.1,0,0.1,0,0.2c0.2,1.4-0.4,2.7-0.7,4
c0,0.2-0.1,0.3-0.1,0.5l0,0c0,0.1,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c0,0.1,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c0,0.1,0,0.1,0,0.2
c0,0.1,0,0.2,0,0.3c0,0.1,0,0.1,0,0.2c0,0.1,0,0.2,0.1,0.3l0.1,0.2c0,0.1,0.1,0.2,0.1,0.3l0.1,0.2c0.1,0.1,0.1,0.2,0.2,0.3
c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.2,0.2,0.3,0.3c1,0.7,2.6,0.5,3.5,1.5c0.1,0.1,0.2,0.2,0.2,0.4l0,0.1c0.1,0.1,0.1,0.3,0.1,0.4l0,0
c0.1,0.6,0.1,1.1,0,1.7c-0.3,1.5-0.9,2.8-1.3,4.3c-0.1,0.3-0.1,0.6-0.1,0.9l0,0c0,0.1,0,0.3,0,0.4v0.1c0,0.1,0,0.3,0,0.4
c0,0.1,0,0.1,0,0.1c0,0.2,0,0.4,0,0.6c0,0.2,0,0.2,0,0.3l0,0.2c0,0.1,0.1,0.2,0.1,0.3l0.1,0.2c0,0.1,0.1,0.2,0.1,0.3
c0,0,0,0.1,0.1,0.1c0.1,0.2,0.2,0.3,0.3,0.4c0.9,1.2,2.4,1.6,3.9,1.6c0.9,0,1.8-0.1,2.6-0.3c0.2,0.5,0.4,0.9,0.6,1.3
c1.1,2.2,2.5,4.1,4.2,5.9c0,0.2,0,0.5-0.1,0.7c-0.2,1.7-0.4,3.5-0.6,5.3c-1.9-0.9-3.4-1.2-4-0.6c-2.5,2.7,0,12.2,0,12.2
s-12.1,0-15.1,2.7s-8.4,0-8.4,0s-11.1,1.2-10.4,3.5c0.7,2.2-5.9,0-5.9,0s-4.7,0.5-4.5,3.7c0.3,3.2-7.2,4.7-6.2,6.9
c1,2.2-4.5,3.7-4.5,3.7s-5.4-0.2-3.5,3l0,0c0,0-3,6.9-5.4,7.4c-2.5,0.5-5.7,6.2-5.7,6.2s-9.5,1.7-9.1,4.7
c0.4,3-14.6,24.3-14.6,24.3S12.5,247,16,254.4s5.9,12.4,6.7,15.1s9.7,14.7,9.7,16.9c0,0.7,2.2,4.5,5.3,9.2l-0.9,0.9l-2,2
c0,0-6.2,15.4,1.2,16.1c6.3,0.6,10.8,1.1,13.1,0.5c0.4-0.1,0.7-0.2,1-0.5l0.1-0.1c2.7,4,4.6,6.8,4.6,6.8s0.3-0.4,0.7-1.1l0.7,1.1
c0,0,0.6-0.8,1.6-2.2c-0.3,6.7-0.4,13.4-0.4,13.4s3.2-0.5,1.7,14.4c-1.5,14.9,8.9,27,8.9,27v22.1l0,0c0,0,0,0.6,0.1,1.5
c0.3,3.2,1.2,10.6,3.9,15.6c3.5,6.4,0,23.3,0,23.3s-0.2,13.8,0.6,30.9c0,0.5,0.1,0.9,0.1,1.4c-15,12.5-31.1,29.2-31.1,29.2
c0.8,0.2,1.5,0.6,2.2,1l-0.9,1.2l-4.1,5l0,0l-3.2,3.9l0,0l5,15.4l5.5-2.1c0,0,3,5.1,2.3,8.6c-0.1,0.6-0.4,1.2-0.7,1.7
c-0.2,0.3-0.3,0.5-0.4,0.9c-1.4,5.6,4.5,29.7,14,30.7c0,0,3.2,1.1,4.2-1.8c0.5-1.4,0.5-3.7-0.6-7.5c0,0-5-6-1.8-12.5
c1.9-3.8,5-8.9,7.3-12.5l0.9-1.5c2,2.6,3.3,4.2,3.3,4.2l7.3-7.8c0.2,0.3,0.3,0.7,0.5,1c0.5,1.1,1.2,2.1,1.9,3.1l4.9,19.6l2-0.4
c0,0.5-0.1,1-0.1,1.5c-0.2,3.5,0,8.1,1.6,11.3c1.2,2.5,3.3,4.2,6.6,4.1c11.5-0.3,14.8-6.5,14.8-6.5V543l4-0.9
c0,0-0.3-34.2-1.3-53.3c0-0.4,0-0.8-0.1-1.2c0-0.1,0-0.1,0-0.2l25.4-27.3l2-0.8c16.3-6.4,16.6-23.1,16.6-23.1s0-9.2,2-16.9
s0.3-47.6-3.5-57.5c-3.7-9.9-4.9-21.1-4.9-21.1s3.7-5.2,0-9.5c-1-1.3-1.9-2.7-2.6-4.2l4.8-0.8l2.8-0.5l1.5-0.3
c-0.7,6.6-0.9,11.6,0.9,12.8c5.4,3.7,23.7-8.7,23.7-8.7c-6.7,0-10.4-49.8-9-51.1c1.4-1.2,3.4-26.2,1.6-30.7
c-1.8-4.5,6.2-24.3,6.2-24.3l1.2-1.8l0,0c0,0,29.2,12.7,32.4,15.2c3.2,2.4,13.4-5.9,15.1-2.7c1.7,3.2,12.6,8.1,12.6,8.1
s16.1-1.6,17.8,2.3c1.7,4,12.1,13.3,12.1,13.3c0-2.2,0.1-4.4,0.4-6.5c0.2,0.5,0.4,1,0.6,1.6c4.9,11.7,13.1,26.4,20.7,18.5
C306.1,262.3,299.6,245.6,295.4,237.2z M75.3,289.9v0.1V289.9L75.3,289.9z M69.6,232.7l-3.1,33.2l-6.2,6.4l-0.7,0.8l-6.4-7
c0,0-3.2-1.5,0-4.2s-5.4-8.9-5.4-8.9s-0.3-4.5,3-5.7s7.4-9.4,7.4-9.4l11.6-5.9l0,0l0,0L69.6,232.7z M111,402.5
c0.2-0.2,0.5-0.4,0.7-0.5c1.4-0.8,2.3,0.1,2.7,1.6c0.6,2.5,0.4,5.2-0.5,7.6c-1.7,4,2.5,19.8,2.5,19.8s-5.4,2.5-6.4,7.2
c-0.1,0.6-0.4,1.1-0.7,1.6c-0.1-0.4-0.1-0.8-0.2-1.2c-0.5-3-0.7-4.9-0.7-4.9c-0.9-3.8-1.1-7.8-0.5-11.7c0.8-4.8,2.4-14.5,3-18.1
C110.9,403.1,111,402.6,111,402.5L111,402.5z"/>
<path class="st6" d="M145.5,160.9l1.6-1.1l4.5,9.5l-1.7,2h-5.3c0,0,0.2-5.2,0.3-5.4C145,165.9,145.5,160.9,145.5,160.9z"/>
<path class="st4" d="M114.4,538.9v20.4c0,0-3.3,6.2-14.8,6.5c-2.9,0.2-5.5-1.5-6.6-4.1c-1.6-3.3-1.8-7.8-1.6-11.3
c0.1-1.8,0.3-3.5,0.6-5.2L114.4,538.9z"/>
<path class="st7" d="M114.4,538.9v6.3l-23.1,5.1c0.1-1.8,0.3-3.5,0.6-5.2L114.4,538.9z"/>
<path class="st8" d="M118.4,542.9l-28.9,6.4l-4.9-19.5c-0.7-1-1.3-2-1.9-3.1c-0.3-0.6-0.6-1.3-0.9-2c-5.4-12.3-7.8-34.6-8.8-53.5
c-0.1-1-0.1-1.9-0.1-2.8c-0.8-17.1-0.6-30.8-0.6-30.8s3.5-16.8,0-23.2c-2.7-5-3.6-12.4-3.9-15.6c-0.1-0.9-0.1-1.5-0.1-1.5l0.5-1.4
l2.2-5.8h24l14,11.8l2.1,1.8l-0.2,1.5c-0.6,3.7-2.2,13.4-3,18.1c-0.6,3.9-0.4,7.8,0.5,11.6c0,0,0.3,1.9,0.7,4.9
c0.1,0.7,0.2,1.5,0.4,2.4c1.8,11,5.1,31,6.5,35.8c0.4,1.3,0.7,4.6,1,9.1c0.1,0.9,0.1,1.8,0.2,2.8
C118.1,508.7,118.4,542.9,118.4,542.9z"/>
<path class="st7" d="M114.4,559.1v0.2c0,0-3.3,6.2-14.8,6.5c-2.9,0.2-5.5-1.5-6.6-4.1C98.1,563,106.5,563.8,114.4,559.1z"/>
<path class="st9" d="M297.5,272.8c-7.6,7.9-15.8-6.8-20.7-18.4c-2.8-6.5-4.5-12.1-4.5-12.1l20.3-8.6c0,0,1.2,2,2.8,5.1
C299.6,247.1,306.1,263.8,297.5,272.8z"/>
<path class="st9" d="M147.2,156.8c-0.3,7.3,0.2,14.7,1.6,21.9c0,0-41.3,4.5-37.6-2c2.2-3.8,3.6-13.7,4.4-21.3
c0.6-5.4,0.8-9.6,0.8-9.6S156,130,150,143.4C148.3,147.4,147.4,152.1,147.2,156.8z"/>
<polygon class="st6" points="150.7,263.1 145.1,329.4 170.6,325.2 166.1,270.5 167.6,255.9 "/>
<polygon class="st7" points="170.6,325.3 159.5,327.1 145.1,329.5 146.1,317.4 150.7,263.2 156.4,260.8 160.5,259 167.6,256
166.1,270.6 "/>
<path class="st4" d="M63.3,543.2c-3.2,6.5,1.8,12.5,1.8,12.5c1.1,3.8,1.1,6.1,0.6,7.4c-1,2.9-4.2,1.8-4.2,1.8
c-10.1-1.1-16.2-28.4-13.6-31.5c2.6-3.1-1.6-10.3-1.6-10.3l-5.5,2.1l-5-15.4l3.2-3.9l4.1-5l2.8-3.4l27.6,28.8c0,0-1.2,1.8-2.8,4.3
C68.3,534.3,65.2,539.4,63.3,543.2z"/>
<path class="st7" d="M117.1,489.7l-34.5,37c-6-11.8-8.6-35.5-9.7-55.5c6.4-5.3,12.6-9.9,17.3-12.2c0,0,15.9-11.5,19.2-17
c1.8,11,5.1,31,6.5,35.8C116.4,479.4,116.8,483.8,117.1,489.7z"/>
<polygon class="st7" points="108.8,401.8 68.7,395.8 70.9,390 94.9,390 "/>
<path class="st7" d="M116.9,486.9l-35.2,37.8c-5.4-12.3-7.8-34.6-8.8-53.5c-0.1-1-0.1-1.9-0.1-2.8c6.5-5.4,12.7-10,17.5-12.3
c0,0,14.8-10.7,18.8-16.4c0.1,0.7,0.2,1.5,0.4,2.4c1.8,11,5.1,31,6.5,35.8C116.3,479.1,116.6,482.4,116.9,486.9z"/>
<path class="st7" d="M73.4,526.4c0,0-1.2,1.8-2.8,4.3c-5.9-7.5-19.9-24.6-27.6-29.8l2.8-3.4L73.4,526.4z"/>
<path class="st8" d="M162.9,420.4c-2,7.7-2,16.8-2,16.8s-0.3,16.6-16.6,23l-2,0.7l-67.5,72.4c0,0-25-32.7-33.1-34.6
c0,0,32.9-33.9,48.5-41.3c0,0,18.8-13.6,19.8-18.3c1-4.7,6.4-7.2,6.4-7.2s-4.2-15.8-2.5-19.8c0.9-2.4,1.1-5.1,0.5-7.6
c-0.5-1.5-1.4-2.4-2.7-1.6c-0.3,0.2-0.5,0.3-0.7,0.5l-42.8-6.4v-22c0,0-10.4-12.1-8.9-27s-1.7-14.3-1.7-14.3s0.2-25.1,2.3-27.2
C62,304.6,82.3,295,82.3,295l63.7,11.3l2.6,12.2c0,0,2.2,9.7,5.9,14c3.7,4.3,0,9.5,0,9.5s1.2,11.1,4.9,21
C163.2,372.9,164.9,412.8,162.9,420.4z"/>
<path class="st7" d="M150,143.4c-1.8,4-2.6,8.7-2.9,13.4c-9.2,8-23.1,7.4-31.6-1.4c0.6-5.4,0.8-9.6,0.8-9.6S156,130,150,143.4z"/>
<path class="st9" d="M155.1,138.7c0,12.7-10.3,23-23,23c-12.7,0-23-10.3-23-23c0-12.7,10.3-23,23-23c10.6,0,19.9,7.3,22.4,17.6
C154.9,135.1,155.1,136.9,155.1,138.7z"/>
<path class="st7" d="M136.4,178.8c0,0-16.5-7.7-17.6-8.7c-1-1-35.3,87.1-35.3,87.1L73.9,301c0,0,51.4,22,62.6,19s12.1,0,12.1,0
s11.4-63.8,15.1-69.5c3.7-5.7-3.5-63.6-3.5-63.6l-12.9-16.8L136.4,178.8z"/>
<path class="st7" d="M136.4,175.8c0,0-16.5-7.7-17.6-8.7c-1-1-35.3,87.1-35.3,87.1L73.9,298c0,0,51.4,22,62.6,19s12.1,0,12.1,0
s11.4-63.8,15.1-69.5c3.7-5.7-3.5-63.6-3.5-63.6l-12.9-16.8L136.4,175.8z"/>
<path class="st2" d="M163.6,249c-0.7,1.2-1.9,4.8-3.1,9.9c-0.9,3.5-1.8,7.7-2.8,12.3c-4.4,20.4-9.2,47.3-9.2,47.3s-0.3-0.9-2.4-1.2
c-1.7-0.3-4.7-0.1-9.6,1.2c-11.1,3-62.6-19-62.6-19l1.5-6.7l8.2-37.1c0,0,34.4-88.1,35.4-87.1c0.6,0.6,7,3.7,11.9,6
c3.1,1.5,5.6,2.6,5.6,2.6l10.4-8.2l0.6-0.5l12.8,16.8C160.2,185.4,167.4,243.3,163.6,249z"/>
<path class="st7" d="M124.3,185.9c1.5,5.7-2,15.1-2,15.1s-11.9,29.2-15.3,42.7c-3.5,13.5-23.3,40.7-23.3,40.7s-2.9,2.9-7,7
c-0.5,0.5-0.9,0.9-1.4,1.4l8.2-37.1c0,0,34.4-88.1,35.4-87.1c0.6,0.6,7,3.7,11.9,6C127.7,177.4,123.3,182.2,124.3,185.9z"/>
<path class="st6" d="M122.8,185.9c1.5,5.7-2,15.1-2,15.1s-11.9,29.2-15.3,42.7c-3.5,13.5-23.3,40.7-23.3,40.7s-2.9,2.9-7,7
c-0.5,0.5-1,1-1.5,1.5c-8,7.9-19.1,19-22.6,22.3c-0.5,0.5-0.9,0.8-1,0.9c-0.3,0.2-0.7,0.4-1,0.5c-2.3,0.6-6.8,0.2-13.1-0.5
c-7.4-0.7-1.2-16.1-1.2-16.1l2-2l1.8-1.8l20.2-20.8l1.5-1.6l6.2-6.4l3.1-33.1l0.1-0.8c0,0-0.9-2.1-2.3-5.3
c-3.8-8.7-11.2-25.4-13.9-30.8c-0.3-0.6-0.6-1.1-0.7-1.4c0,0,0-0.1-0.1-0.1c-2-3.2,3.5-3,3.5-3s5.4-1.5,4.5-3.7s6.4-3.7,6.2-6.9
c-0.2-3.2,4.5-3.7,4.5-3.7s6.7,2.2,5.9,0s10.4-3.5,10.4-3.5s5.4,2.7,8.4,0c3-2.7,15.1-2.7,15.1-2.7s-2.5-9.4,0-12.1
c2.5-2.7,21.1,12.1,21.1,12.1S121.3,180.2,122.8,185.9z"/>
<path class="st7" d="M61,312.6c0,0,20.5,28.9,34.9,19.5c14.3-9.4-19.3-33.9-19.3-33.9L61,312.6z"/>
<path class="st9" d="M61,311.1c0,0,20.5,28.9,34.9,19.5c14.3-9.4-19.3-33.9-19.3-33.9L61,311.1z"/>
<path class="st7" d="M159.5,327c1.6-13.7,6.1-34.2,2.4-40.4c-1.8-3.1-3.2-9-4.2-15.4c-0.5-3.5-1-7.1-1.3-10.5
c-0.9-9.1-1.2-17-1.2-17s-8.9-39.7-7.2-47.9c1.1-5.1-0.2-17.9-1.2-26.8l0.6-0.5l12.8,16.8c0,0,7.2,57.9,3.5,63.6
c-0.7,1.2-1.9,4.8-3.1,9.9l7.1-3l-1.5,14.6l4.5,54.7L159.5,327z"/>
<path class="st6" d="M147.1,159.9c0,0,12.8,10.7,17.7,11c0,0-1.3,5.9-6.8,8.4c0,0,13.4,1.8,18.3,1s13.6,0.5,15.3,3s5.5,5.7,8.5,6.2
c3,0.5,6.2,3.5,6.2,3.5L184.5,225c0,0-7.9,19.8-6.2,24.2s-0.3,29.4-1.6,30.7c-1.4,1.2,2.4,51,9,51c0,0-18.3,12.4-23.7,8.7
s6.9-43.8,1.5-52.9s-6.7-42.9-6.7-42.9s-8.9-39.7-7.2-47.9C151.3,187.7,147.1,159.9,147.1,159.9z"/>
<path class="st7" d="M295.4,238.7c-6.6-2.1-16.7-2.1-18.6,15.6c-2.8-6.5-4.5-12.1-4.5-12.1l20.3-8.6
C292.5,233.6,293.8,235.6,295.4,238.7z"/>
<path class="st6" d="M194.1,191.4l12.1,1.5c0,0,3.7,4.9,7.2,4.9s6.2,4.5,6.2,4.5s4.9,2.7,8.2,2s16.6-2,18.6,0.1
c2,2.1,14.8,4.1,14.8,4.1s4.9,7.7,9.4,7.7c4.5,0,29.2,18.1,29.9,24.5c0,0-24.5-15.6-24.7,18.7c0,0-10.4-9.3-12.1-13.2
s-17.8-2.3-17.8-2.3s-10.9-4.8-12.6-8c-1.7-3.2-11.9,5.1-15.1,2.7c-3.2-2.4-32.4-15.1-32.4-15.1l-9-17L194.1,191.4z"/>
<circle class="st4" cx="138.2" cy="219.3" r="2.1"/>
<circle class="st4" cx="136.1" cy="263.2" r="2.1"/>
<circle class="st4" cx="138.2" cy="240.1" r="2.1"/>
<circle class="st4" cx="132.1" cy="286.3" r="2.1"/>
<path class="st7" d="M65.7,563.1c-1,2.9-4.2,1.8-4.2,1.8c-10.1-1.1-16.2-28.4-13.6-31.5s-1.6-10.3-1.6-10.3l-5.5,2.1l-5-15.4
l3.2-3.9c3.1,5.5,7.7,13.3,8.7,15.3c2,4.2,3,8.7,2.8,13.4C50.2,539.5,55.8,562.5,65.7,563.1z"/>
<path class="st7" d="M154.5,133.3c-0.5-0.2-1-0.4-1.5-0.6c-1.7-0.7-3.5-1.5-4.5-3c-0.9-1.4-1.2-3.3-2.7-4.1
c-1.7-0.9-3.7,0.3-5.5,0.7c-2.2,0.5-4.5-0.1-6.6-0.9c-3.2-1.2-7.6-3.3-10.8-1.1c-2.5,1.7-1.5,5.4-2.2,8c-1,4-5.3,6.7-6.1,10.8
c-0.4,1.8-0.1,4-1.6,5.1c-0.4,0.3-0.9,0.5-1.4,0.6c-5.6-11.4-1-25.2,10.4-30.8c11.4-5.6,25.2-1,30.8,10.4
C153.5,130.1,154.1,131.7,154.5,133.3L154.5,133.3z"/>
<path class="st6" d="M133.6,124c2.1,0.8,4.4,1.4,6.6,0.9c1.9-0.4,3.8-1.7,5.5-0.7c1.5,0.8,1.8,2.7,2.7,4.1c1,1.5,2.8,2.3,4.5,3
c1.3,0.6,2.6,1,4,1.1c1.4,0.1,2.8-0.4,3.8-1.4c1.3-1.6,0.9-4,0.1-5.9s-1.9-3.8-1.8-5.9c0.1-2.4,1.9-4.6,2-7c0.2-3.1-2.3-5.8-5.1-7
c-2.5-1.1-5.4-1.4-7.8-3c-2.6-1.7-4.1-4.7-6.1-7.2c-2.8-3.6-7.3-6.3-11.9-5.8c-2.8,0.3-5.4,1.8-8.2,2.4c-4.3,0.9-8.7-0.4-13,0.6
c-1,0.2-2,0.7-2.6,1.4c-1,1.4-0.5,3.3,0,5c0.8,3,1.2,6.4-0.5,9.1c-1.9,3-5.8,4.3-7.5,7.4c-1,1.8-1.1,4-0.2,5.9
c0.8,1.7,2.4,3.1,2.6,5c0.2,1.4-0.4,2.7-0.7,4c-0.3,1.3-0.2,3,0.9,3.7c1.1,0.7,2.6,0.6,3.5,1.5c0.5,0.7,0.7,1.7,0.4,2.6
c-0.3,1.5-0.9,2.8-1.3,4.3c-0.4,1.4-0.2,3,0.6,4.3c1.4,1.9,4.3,1.8,6.7,1.3c0.7-0.1,1.3-0.4,1.9-0.7c1.5-1.1,1.2-3.3,1.6-5.1
c0.8-4.1,5.1-6.7,6.1-10.8c0.6-2.6-0.3-6.3,2.2-8C126,120.7,130.5,122.9,133.6,124z"/>
<path class="st7" d="M130,392.5c0,0,23.3,14.8,24,20.5L130,392.5z"/>
<path class="st7" d="M128.8,404.3c0,0,26.7,12.9,25.2,17.3L128.8,404.3z"/>
<path class="st7" d="M127,415.7c0,0,15.1,7.9,16.1,12.6L127,415.7z"/>
<path class="st7" d="M133.5,433.5c0,0,9.9,8.7,11.9,6.4S133.5,433.5,133.5,433.5z"/>
<path class="st7" d="M119.6,439c0,0,7.7,12.4,4,13.1C119.9,452.8,119.6,439,119.6,439z"/>
<path class="st7" d="M85.8,219.3c0,0-13.1,7.9-9.2,9.9C80.6,231.2,85.8,219.3,85.8,219.3z"/>
<path class="st7" d="M85.8,190.1c0,0-13.4,24.5-7.2,22.8C84.8,211.2,85.8,190.1,85.8,190.1z"/>
<path class="st7" d="M227.7,214.6c0,0-8.2,9.6-6.7,14.8L227.7,214.6z"/>
<path class="st7" d="M249,219.3c0,0-12.3,10.9-10.5,12.1L249,219.3z"/>
<path class="st7" d="M256.7,232.7c0,0-1.2,7.2,0.7,7.4L256.7,232.7z"/>
<path class="st10" d="M123,383.6c-3.2,4.1-3.2,11.3-4.6,14.3c-0.8,1.6-2.5,4.5-3.9,6.7c-0.5-1.5-1.4-2.4-2.7-1.6
c-0.9-6.8-2.5-18.6-3-20.9c-0.7-3.3,7.4-12.2,7.4-12.2s8,1.7,10,5.8C128.2,379.7,126.1,379.5,123,383.6z"/>
<path class="st7" d="M81.8,297.7c-8.9,1.2-25.5,25-25.5,25s-2.2-3.2-5.2-7.6c-3.8-5.6-8.9-13.2-12.6-19l21.7-22.4l4,4.3
c0,0,7.7,7.7,7.7,9.1c0,0.6,1.5,2.3,3.4,4.3C78.1,294.3,81.8,297.7,81.8,297.7z"/>
<path class="st7" d="M53.4,197.3c-0.3-0.6-0.6-1.1-0.7-1.4l9.6,0.6l5.1,31.6C63.5,219.5,56.1,202.7,53.4,197.3z"/>
<path class="st7" d="M73.8,292.9c-8,7.9-19.1,19-22.6,22.3c-0.5,0.5-0.9,0.8-1,0.9c-0.3,0.2-0.7,0.4-1,0.5
c-3.5-5.1-8.5-12.5-12.3-18.6l1.8-1.8l20.2-20.8l2.5,2.7c0,0,7.7,7.7,7.7,9.1C68.9,287.8,71.3,290.4,73.8,292.9z"/>
<path class="st6" d="M63.7,196.6l-11.1-0.7c0,0-3,6.9-5.4,7.4c-2.5,0.5-5.7,6.2-5.7,6.2s-9.5,1.7-9.1,4.7
c0.4,3-14.6,24.2-14.6,24.2s-4.9,10.2-1.5,17.6s5.9,12.4,6.7,15.1s9.5,14.6,9.5,16.8c-0.1,2.2,22.5,34.9,22.5,34.9
s16.6-23.7,25.5-25c0,0-9.9-9.1-9.9-10.6s-7.6-9.1-7.6-9.1l-9.6-10.4c0,0-3.2-1.5,0-4.2s-5.4-8.9-5.4-8.9s-0.3-4.5,3-5.7
s7.4-9.4,7.4-9.4l11.6-5.9L63.7,196.6z"/>
<path class="st7" d="M21.2,245.8c0,0,13.4-2.7,13.6-1C35.1,246.5,21.2,245.8,21.2,245.8z"/>
<path class="st7" d="M32.3,259.3c0,0,11.3,1.5,10.8,3.9S32.3,259.3,32.3,259.3z"/>
<path class="st7" d="M41.7,217.2c0,0,10.9,15.4,12.4,12.2L41.7,217.2z"/>
<g class="st11">
<path d="M107.1,102.4c0.1-1.8-0.2-3.6-0.7-5.3c-0.2-0.7-0.4-1.5-0.5-2.2c-0.1,1.3,0.1,2.5,0.5,3.7
C106.8,99.8,107,101.1,107.1,102.4z"/>
<path d="M159.2,118.7c0.3-2.2,1.8-4.3,2-6.5c0-0.4,0-0.8,0-1.1c-0.3,2.3-1.9,4.3-2,6.7C159.1,118,159.1,118.4,159.2,118.7z"/>
<path d="M160.8,129.5c-1,1-2.4,1.6-3.8,1.4c-1.4-0.2-2.8-0.5-4-1.1c-1.7-0.7-3.5-1.5-4.5-3c-0.9-1.4-1.2-3.3-2.7-4.1
c-1.7-0.9-3.7,0.3-5.5,0.7c-2.2,0.5-4.5-0.1-6.6-0.9c-3.2-1.2-7.6-3.3-10.8-1.1c-2.5,1.7-1.5,5.4-2.2,8c-1,4-5.3,6.7-6.1,10.8
c-0.4,1.8-0.1,4-1.6,5.1c-0.6,0.4-1.2,0.6-1.9,0.7c-2.4,0.5-5.3,0.6-6.7-1.3c-0.4-0.6-0.7-1.2-0.7-1.9c-0.2,1.2,0.1,2.4,0.7,3.4
c1.4,1.9,4.3,1.8,6.7,1.3c0.7-0.1,1.3-0.4,1.9-0.7c1.5-1.1,1.2-3.3,1.6-5.1c0.8-4.1,5.1-6.7,6.1-10.8c0.6-2.6-0.3-6.3,2.2-8
c3.2-2.2,7.7-0.1,10.8,1.1c2.1,0.8,4.4,1.4,6.6,0.9c1.9-0.4,3.9-1.7,5.5-0.7c1.5,0.8,1.8,2.7,2.7,4.1c1,1.5,2.8,2.3,4.5,3
c1.3,0.6,2.6,1,4,1.1c1.4,0.1,2.8-0.4,3.8-1.4c0.7-1,1-2.2,0.8-3.4C161.5,128.2,161.2,128.9,160.8,129.5z"/>
<path d="M100.9,124.4c-0.2-1.9-1.8-3.3-2.6-5c-0.3-0.6-0.5-1.3-0.6-2c-0.1,1.2,0.1,2.4,0.6,3.5c0.8,1.7,2.3,3,2.6,4.8
C101,125.3,101,124.8,100.9,124.4z"/>
<path d="M105.1,136c0.2-0.8,0.1-1.7-0.4-2.4c-0.8-1-2.4-0.7-3.5-1.5c-0.5-0.4-0.9-1.1-1-1.8c-0.2,1.2,0,2.5,1,3.3
c1,0.7,2.6,0.6,3.5,1.5C104.9,135.4,105,135.7,105.1,136z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

258
img/grid.svg Normal file
View File

@ -0,0 +1,258 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="be32c85c-9388-4a2b-a4e5-271574a5b9b2"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="888px" height="651.9px"
viewBox="0 0 888 651.9" style="enable-background:new 0 0 888 651.9;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E6E6E6;}
.st1{fill:#FFFFFF;}
.st2{fill:#0074D9;}
.st3{fill:#0074D9;stroke:#FFFFFF;stroke-width:2;}
.st4{fill:url(#SVGID_1_);}
.st5{fill:#3F3D56;}
.st6{fill:#454B69;}
.st7{opacity:0.1;enable-background:new ;}
.st8{fill:#FBBEBE;}
.st9{opacity:5.000000e-02;enable-background:new ;}
.st10{opacity:0.1;}
</style>
<title>design_notes</title>
<ellipse class="st0" cx="96.7" cy="631.8" rx="96.3" ry="20"/>
<rect x="221.9" y="69" class="st0" width="643.9" height="412.4"/>
<rect x="240.3" y="120.7" class="st1" width="607" height="336.2"/>
<rect x="221.6" y="68.6" class="st2" width="643.9" height="27.4"/>
<circle class="st1" cx="241.9" cy="82.6" r="5.1"/>
<circle class="st1" cx="261.2" cy="82.6" r="5.1"/>
<circle class="st1" cx="280.4" cy="82.6" r="5.1"/>
<g>
<rect x="475.5" y="285.2" class="st3" width="40.1" height="41.7"/>
<rect x="595.8" y="326.9" class="st3" width="40.1" height="41.7"/>
<rect x="515.6" y="326.9" class="st3" width="40.1" height="41.7"/>
<rect x="475.5" y="326.9" class="st3" width="40.1" height="41.7"/>
<rect x="555.7" y="326.9" class="st3" width="40.1" height="41.7"/>
<rect x="555.7" y="160.2" class="st3" width="40.1" height="41.7"/>
<rect x="595.8" y="285.2" class="st3" width="40.1" height="41.7"/>
<rect x="595.8" y="243.6" class="st3" width="40.1" height="41.7"/>
<rect x="595.8" y="160.2" class="st3" width="40.1" height="41.7"/>
<rect x="555.7" y="285.2" class="st3" width="40.1" height="41.7"/>
<rect x="515.6" y="285.2" class="st3" width="40.1" height="41.7"/>
<rect x="555.7" y="243.6" class="st3" width="40.1" height="41.7"/>
<rect x="475.5" y="243.6" class="st3" width="40.1" height="41.7"/>
<rect x="515.6" y="243.6" class="st3" width="40.1" height="41.7"/>
<rect x="555.7" y="201.9" class="st3" width="40.1" height="41.7"/>
<rect x="475.5" y="201.9" class="st3" width="40.1" height="41.7"/>
<rect x="515.6" y="201.9" class="st3" width="40.1" height="41.7"/>
<rect x="595.8" y="201.9" class="st3" width="40.1" height="41.7"/>
<rect x="635.9" y="326.9" class="st3" width="40.1" height="41.7"/>
<rect x="595.8" y="368.5" class="st3" width="40.1" height="41.7"/>
<rect x="635.9" y="368.5" class="st3" width="40.1" height="41.7"/>
<rect x="555.7" y="368.5" class="st3" width="40.1" height="41.7"/>
<rect x="635.9" y="201.9" class="st3" width="40.1" height="41.7"/>
<rect x="515.6" y="368.5" class="st3" width="40.1" height="41.7"/>
<rect x="635.9" y="160.2" class="st3" width="40.1" height="41.7"/>
<rect x="635.9" y="243.6" class="st3" width="40.1" height="41.7"/>
<rect x="635.9" y="285.2" class="st3" width="40.1" height="41.7"/>
<rect x="475.5" y="160.2" class="st3" width="40.1" height="41.7"/>
<rect x="435.5" y="160.2" class="st3" width="40.1" height="41.7"/>
<rect x="475.5" y="368.5" class="st3" width="40.1" height="41.7"/>
<rect x="435.5" y="243.6" class="st3" width="40.1" height="41.7"/>
<rect x="515.6" y="160.2" class="st3" width="40.1" height="41.7"/>
<rect x="435.5" y="201.9" class="st3" width="40.1" height="41.7"/>
<rect x="435.5" y="368.5" class="st3" width="40.1" height="41.7"/>
<rect x="435.5" y="285.2" class="st3" width="40.1" height="41.7"/>
<rect x="435.5" y="326.9" class="st3" width="40.1" height="41.7"/>
</g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="774.3204" y1="-59.1339" x2="774.3204" y2="444.5647" gradientTransform="matrix(1 0 0 -1 -665.04 578.99)">
<stop offset="0" style="stop-color:#808080;stop-opacity:0.25"/>
<stop offset="0.54" style="stop-color:#808080;stop-opacity:0.12"/>
<stop offset="1" style="stop-color:#808080;stop-opacity:0.1"/>
</linearGradient>
<path class="st4" d="M208.6,218.5h-46.6c-1.5,0-2.7,1-3,2.5l-12.6,62.3c0,0.2,0,0.3,0,0.5l-1.2,0.1l-1.1,0.1c-0.1,0-0.1,0-0.2,0
c-0.3-0.2-0.5-0.6-0.6-1c-0.6-2.2-1.1-4.5-1.3-6.8c-0.2-2.5-0.2-5,0-7.5c0.1-2,0-4,0-5.9c0.3-2.2,0.5-4.5,0.6-6.7
c0.1-2.4-0.1-4.8-0.7-7.1c-0.4-1.3-0.8-2.5-1.4-3.7c-0.4-3.4-0.9-6.7-1.4-10.1c-0.4-2.5-0.7-5-1.2-7.5c0.1-0.4,0.2-0.8,0.3-1.2
c0.5-4.1-1.1-8.3-4.4-10.9c-1-0.8-2.1-1.5-3.3-2c-1-0.4-2-0.8-3-1l-16.1-5c-1.5-2.2-3-4.4-4.3-6.6c-1.3-2-2.4-4.1-3.4-6.3
c10.8-7.7,13.8-22.6,6.6-33.9c-0.3-0.4-0.6-0.8-0.8-1.2c0.1-1.9-0.1-3.9-0.7-5.7c-0.1-0.7-0.3-1.4-0.6-2c-0.4-0.9-1-1.7-1.6-2.4
c-0.1-0.1-0.3-0.3-0.4-0.4c-1.3-1.4-2.8-2.7-4.4-3.9c-5.3-3.9-12.5-8.6-19.1-10.1c-3.2-0.7-6.6-0.8-9.8,0l-0.5-0.1l-0.9-0.2
c0.2,0.1,0.5,0.2,0.7,0.3c-3.4-0.8-7-0.7-10.4,0.2c-4.2,1.3-5.7,4.6-7.5,8.3c-2.9,5.9-7.3,10.9-12.8,14.6c-3.5,2.4-7.7,4.4-9.4,8.3
c-1.6,3.6-0.5,7.7-0.1,11.7c0.9,10.8-3.7,21.4-12.3,28.1c-4.8,3.7-11.2,6.8-12.3,12.8c-0.7,4.3,1.7,8.3,3.5,12.2
c3.8,8.3,5.1,18.4,0.6,26.3c-1.3,2.3-3,4.3-3.7,6.8c-1.2,4.4,1.4,9.3,5.2,11.8s8.6,3.3,13.2,3.3c0.8,0,1.6,0,2.4-0.1
c-0.4,3.9-0.9,7.7-1.5,11.6c-0.9,5.7-2.1,11.4-1.8,17.1c0.2,3.1,0.9,6.3,2.9,8.7c3.2,3.8,8.7,4.5,13.6,4.4
c7.8-0.3,15.5-2.3,23.2-2.8c-0.1,0.3-0.2,0.7-0.2,1c0,1.4,0.8,2.8,0.4,4.2c-0.2,0.5-0.4,0.9-0.7,1.3c-2,2.9-4.4,6.2-3.7,9.7
c0.3,1.7,1.4,3.4,0.9,5.1c-0.3,0.8-0.7,1.5-1.3,2.1c-2.7,4.1-2.2,9.5-1.5,14.3l0.9,0.3c-0.3,0.6-0.5,1.1-0.8,1.7
c-1.1,2.5-1.8,5.2-1.9,8c0.1,3.1,0.6,6.2,1.6,9.1c1.4,5,2.8,10,4.6,14.8c1.5,4.2,3.3,8.2,5.1,12.2c0.6,1.2,1.1,2.5,1.7,3.7
c3.4,7.7,6.8,15.5,10.3,23.2c0.4,0.9,0.8,1.8,1,2.8c0.2,0.8,0.2,1.7,0.4,2.5c0.5,3.2,2.6,5.9,4.2,8.8c5.2,9.8,3.9,21.5,2.5,32.5
c0.8,0.8,1.6,1.4,2.6,2c-0.1,1.1-0.3,2.2-0.5,3.3c-1.4,6.3-3,12.5-3.9,18.8c-0.5,3.1-0.7,6.2-0.7,9.3c0,3,1.1,6,1.1,9
c0.7,3,1.8,5.9,2.6,8.8c0.3,4.6,0.9,9.2,1.6,13.8c0.2,4.2,0.5,8.4,0.7,12.5c0.2,3.7,0.4,7.6-1.3,10.9c0,0.1-0.1,0.2-0.2,0.3
c-2.9-0.2-5.8,1.1-7.5,3.5c-1.7,2.5-2.8,5.5-2.9,8.6c-0.2,1.3-0.1,2.6,0.4,3.9c0.5,1,1.3,1.7,1.9,2.6c0.5,1.1,0.9,2.2,1,3.4
c1.1,6.9,2.3,13.9,2.9,20.8c0.2,2.1,0.4,4.4,1.6,6.1s4,2.6,5.6,1.1c-1.6-8-2.4-16.2-2.3-24.3c0.5-0.1,1.1-0.1,1.6,0
c0.3,1.4,0.7,2.8,1.1,4.2c0.3,1,0.6,2,1,3c-0.2,1.4,0,3.4-0.1,4.4c-0.1,4.4-0.1,8.8,0,13.3c0.1,2.5,0.1,5,0.3,7.6
c0,0.3,0,0.6,0.2,0.8c0.1,0.1,0.2,0.1,0.3,0.1c0.8,0,1.7,0,2.5,0c0.1-1,0.1-2,0.1-3c0-2.3,0-4.6,0-6.9c0-2,0-3.9,0-5.9
c0.6,3.5,1.4,7,2.3,10.5l1.8,7.4l0.2,0.7l1.5,6.3c0,0.2,0.1,0.4,0.2,0.7c0.2,0.3,0.4,0.6,0.8,0.8c6.4,4.7,14.9,5.6,22.2,2.4
c0.3-0.1,0.5-0.3,0.8-0.5c0.4-0.5,0.6-1.2,0.5-1.9c-0.1-2,0.3-4,1.1-5.8c0.5-0.7,0.8-1.4,1.1-2.2c0.2-1.2-0.1-2.5-0.7-3.6l-1.6-3.8
c0.8,0,1.6-0.1,2.3-0.2c1.2-1,0.3-3.1,1.3-4.3c0.4-0.4,0.8-0.7,1.3-1c1.2-1.1,1.1-3,0.5-4.5c-1.8-4.9-6.5-8.1-11-10.8l-0.6-0.4
c-3.6-17-10.1-33.8-8.4-51c0.4-3.7,1.1-7.3,1.7-11c3-18.1,2.8-36.7,6.3-54.7c1.8-0.1,3.5-0.6,5.1-1.5c2.9-1.8,4.4-5.3,4.8-8.8
s-0.1-6.8,0-10.3c0.1-4.9,1.3-9.8,2.5-14.6c1.4-5.6-1-11.6,0.4-17.2c0.5-1.7,1-3.5,1.3-5.3c0.3-2.5-0.2-5.2,0.7-7.5
c0.4-1.1,1.1-2.1,1.5-3.1c2-4.5-0.2-10,1.8-14.5c0.6-1.1,1.1-2.2,1.4-3.4c0.1-0.9,0-1.9-0.4-2.8c-0.5-2.1-1-4.2-1.3-6.3
c-0.1-0.7-0.2-1.5-0.2-2.2c0.1-0.8,0.3-1.6,0.5-2.3c1.5-5.3,1.7-10.8,1.9-16.3c0.1-2.9,0.2-6-1.1-8.6c-0.4-0.8-0.8-1.5-1.4-2.2
l0.1-0.1c-0.8-3.1-1.4-6.8-0.3-9.8c0.5-1.3,1.3-2.5,1.1-3.9s-1.1-2.3-1.5-3.5c-0.6-2,0.3-4.2,0.9-6.2c1-3.5,0.8-7.3,0.5-10.9
c0-0.8-0.2-1.6-0.5-2.3c-0.3-0.4-0.6-0.8-0.9-1.2c-0.5-1.1-0.5-2.3,0.1-3.4c0.6-1,1-2.1,1.4-3.2c0.1-0.3,0.1-0.7,0-1
c0.7-0.3,1.4-0.8,2.1-1.2c3-1.6,6.5-1.4,9.9-1.5s7.1-0.8,9.2-3.5c0.2-0.3,0.5-0.6,0.8-0.8c0.1-0.1,0.2-0.1,0.3-0.1
c1.2,0.2,2,0.2,1.8-0.2c0.6-0.3,0.8-0.9,1.1-1.4c0.1-0.1,0.2-0.3,0.3-0.4c1.3-0.7,2.6-1.4,3.9-1.9c-0.2,0-0.5,0-0.7,0
c2.1-0.7,4.3-1,6.5-0.9c2.1,0,5.7,0.3,7.3-1.3c3-1.9,3.9-5.7,5.3-9c0.5-1.1,1-2.1,1.5-3.1l7.8-0.8c1.3-0.1,2.4-1.1,2.7-2.4
l11.7-57.6c0.3-1.7-0.7-3.3-2.4-3.6C208.9,218.6,208.7,218.5,208.6,218.5z M61.4,297.5c-3.5,1.5-7.4,1.5-10.9,0
c-0.5-0.2-1.1-0.9-0.7-1.3s0.8-0.1,1.1-0.2c0.6-0.3,0.2-1.3-0.2-1.9c-1-1.8-0.3-4.1,0.7-5.9s2.3-3.6,2.3-5.7c-0.1-0.7-0.1-1.3,0-2
c0.3-0.9,0.8-1.8,1.5-2.6c0.2-0.3,0.3-0.5,0.5-0.8c0.3,0.4,0.5,0.8,0.8,1.2c0.9,1.4,1.8,2.8,2.7,4.2c0.7,0.9,1.2,2.1,1.3,3.2
c-0.1,0.7-0.1,1.4,0.1,2.1c0.4,0.9,1.6,1.6,1.2,2.5c-0.5,0.9-0.5,2,0,2.9c0.5,0.8,1.2,1.5,1.6,2.3c0.1,0.2,0.2,0.5,0.3,0.8
C63,296.7,62.2,297.2,61.4,297.5z M158.4,286.7c-0.6,0.1-1.2,0.3-1.8,0.4c-0.1-0.4-0.1-0.6-0.1-0.6l-3.1,0.9
c-1.2,0.1-2.4-0.2-3.4-0.7l12.9-1.3C161.4,286,159.9,286.4,158.4,286.7z"/>
<path class="st5" d="M63.7,146.1c-2.9,5.9-7.2,10.9-12.6,14.5c-3.5,2.4-7.6,4.4-9.3,8.2c-1.6,3.6-0.5,7.7-0.1,11.6
c0.9,10.7-3.6,21.1-12.1,27.8c-4.8,3.7-11.1,6.8-12.1,12.7c-0.7,4.2,1.7,8.3,3.4,12.2c3.8,8.2,5.1,18.3,0.6,26.1
c-1.3,2.2-3,4.3-3.6,6.8c-1.2,4.4,1.3,9.2,5.1,11.8S31.5,281,36,281c3.3,0,6.9-0.5,9.3-2.8c1.6-1.6,2.4-3.7,3.1-5.8l5.7-16.3
c1-2.9,2.1-6,4.3-8.2c4.6-4.7,12.2-4.2,18.8-4.1c9.7,0.1,19.4-1.4,28.6-4.5c5.4-1.8,11.3-4.9,12.5-10.5s-2.5-10.6-5.8-15.1
c-2.4-3.3-4.8-6.8-6.9-10.4c-2.1-3.4-4.2-7.1-4.8-11.1c-1-6.6,2.1-13.1,4.6-19.4s4.1-13.7,0.6-19.4c-1.5-2.2-3.4-4.1-5.7-5.6
c-5.3-3.9-12.4-8.5-18.8-10.1c-3.5-0.8-7.1-0.8-10.5,0.1C66.9,139.1,65.4,142.4,63.7,146.1z"/>
<path class="st6" d="M134.7,223.8c1.3,4.4,2.2,8.9,2.8,13.5c1.6,11,3.2,22.1,2.9,33.3c-0.1,2.5-0.1,5,0,7.5
c0.3,2.3,0.7,4.5,1.3,6.7c0,0.4,0.3,0.8,0.6,1c0.4,0.2,0.8,0,1.3,0c1.4-0.2,2.5,1.2,3.6,2.1c2.2,1.8,5.3,2,7.8,0.6
c-0.8,3.3,0.5,6.8,3.3,8.9c2.8,2,6.3,2.6,9.6,1.7c-1.7-0.3-3.3,0.9-4.2,2.3c-0.3,0.5-0.6,1.1-1.1,1.4s-1.5-0.1-2.1,0.3
c-0.3,0.2-0.6,0.5-0.8,0.8c-2,2.7-5.7,3.3-9,3.4s-6.9-0.1-9.8,1.5c-0.7,0.4-1.4,0.9-2.2,1.2c-2.3,1-5.1,0-6.9-1.7
c-1.7-1.8-2.9-4.1-3.5-6.5c-3-9.7-2.4-20-1.8-30.2C127.2,255.4,129.3,239,134.7,223.8z"/>
<path class="st7" d="M134.7,223.8c1.3,4.4,2.2,8.9,2.8,13.5c1.6,11,3.2,22.1,2.9,33.3c-0.1,2.5-0.1,5,0,7.5
c0.3,2.3,0.7,4.5,1.3,6.7c0,0.4,0.3,0.8,0.6,1c0.4,0.2,0.8,0,1.3,0c1.4-0.2,2.5,1.2,3.6,2.1c2.2,1.8,5.3,2,7.8,0.6
c-0.8,3.3,0.5,6.8,3.3,8.9c2.8,2,6.3,2.6,9.6,1.7c-1.7-0.3-3.3,0.9-4.2,2.3c-0.3,0.5-0.6,1.1-1.1,1.4s-1.5-0.1-2.1,0.3
c-0.3,0.2-0.6,0.5-0.8,0.8c-2,2.7-5.7,3.3-9,3.4s-6.9-0.1-9.8,1.5c-0.7,0.4-1.4,0.9-2.2,1.2c-2.3,1-5.1,0-6.9-1.7
c-1.7-1.8-2.9-4.1-3.5-6.5c-3-9.7-2.4-20-1.8-30.2C127.2,255.4,129.3,239,134.7,223.8z"/>
<path class="st8" d="M85.8,518.3c0.8,3.5,2.2,6.8,3,10.3c0.6,3,0.9,6.1,1,9.1l0.9,15.5c0.2,3.7,0.4,7.5-1.3,10.8
c-1.1,2.3-3.1,4.2-3.6,6.7c-0.9,3.9,1.9,7.6,4.5,10.6l12.9,14.9c4,4.7,8.4,9.6,14.4,11.2c0.9,0.3,1.8,0.3,2.8,0.1
c1.7-0.5,2.5-2.6,2.2-4.3c-0.4-1.7-1.2-3.3-2.3-4.7c-3.4-4.7-7-9.4-9.2-14.8c-2.8-6.8-3.1-14.4-2.9-21.8c0.7-30.1,8.3-59.8,7.4-90
c-6.6-0.5-13.4-1.6-20-1.5c-5.9,0.1-5.2,6-6.2,10.8c-1.4,6.2-3,12.4-3.9,18.7c-0.5,3.1-0.7,6.2-0.7,9.3
C84.8,512.4,85.8,515.4,85.8,518.3z"/>
<path class="st9" d="M85.8,518.3c0.8,3.5,2.2,6.8,3,10.3c0.6,3,0.9,6.1,1,9.1l0.9,15.5c0.2,3.7,0.4,7.5-1.3,10.8
c-1.1,2.3-3.1,4.2-3.6,6.7c-0.9,3.9,1.9,7.6,4.5,10.6l12.9,14.9c4,4.7,8.4,9.6,14.4,11.2c0.9,0.3,1.8,0.3,2.8,0.1
c1.7-0.5,2.5-2.6,2.2-4.3c-0.4-1.7-1.2-3.3-2.3-4.7c-3.4-4.7-7-9.4-9.2-14.8c-2.8-6.8-3.1-14.4-2.9-21.8c0.7-30.1,8.3-59.8,7.4-90
c-6.6-0.5-13.4-1.6-20-1.5c-5.9,0.1-5.2,6-6.2,10.8c-1.4,6.2-3,12.4-3.9,18.7c-0.5,3.1-0.7,6.2-0.7,9.3
C84.8,512.4,85.8,515.4,85.8,518.3z"/>
<path class="st5" d="M89.7,564.6c-3-0.6-6.1,1-8,3.4c-1.7,2.5-2.7,5.5-2.9,8.6c-0.2,1.3-0.1,2.6,0.4,3.8c0.5,1,1.3,1.7,1.8,2.6
c0.5,1.1,0.9,2.2,1,3.4c1.1,6.9,2.2,13.8,2.8,20.7c0.2,2.1,0.4,4.4,1.6,6.1s4,2.6,5.5,1.1c-1.6-7.9-2.3-16-2.3-24.1
c3.5-0.5,6.6,2.3,8.9,5c2.3,2.8,4.5,5.7,6.4,8.7c1.6,2.9,3.5,5.6,5.6,8.2c4.7,5,11.5,7.3,18.2,6.2c1.2-1,0.3-3.1,1.3-4.2
c0.4-0.4,0.8-0.7,1.3-1c1.2-1.1,1.1-3,0.5-4.5c-1.8-4.9-6.5-8-10.9-10.8c-8-5-16.1-10-24.1-14.8c-3.1-1.9-5.4-4.8-6.6-8.2
C90,574,88.7,564.2,89.7,564.6z"/>
<path class="st9" d="M89.7,564.6c-3-0.6-6.1,1-8,3.4c-1.7,2.5-2.7,5.5-2.9,8.6c-0.2,1.3-0.1,2.6,0.4,3.8c0.5,1,1.3,1.7,1.8,2.6
c0.5,1.1,0.9,2.2,1,3.4c1.1,6.9,2.2,13.8,2.8,20.7c0.2,2.1,0.4,4.4,1.6,6.1s4,2.6,5.5,1.1c-1.6-7.9-2.3-16-2.3-24.1
c3.5-0.5,6.6,2.3,8.9,5c2.3,2.8,4.5,5.7,6.4,8.7c1.6,2.9,3.5,5.6,5.6,8.2c4.7,5,11.5,7.3,18.2,6.2c1.2-1,0.3-3.1,1.3-4.2
c0.4-0.4,0.8-0.7,1.3-1c1.2-1.1,1.1-3,0.5-4.5c-1.8-4.9-6.5-8-10.9-10.8c-8-5-16.1-10-24.1-14.8c-3.1-1.9-5.4-4.8-6.6-8.2
C90,574,88.7,564.2,89.7,564.6z"/>
<path class="st8" d="M88.4,509.6c-1.6,20.1,2.9,40.1,6.9,59.9c0.4,1.6,0.6,3.2,0.6,4.8c-0.2,2-0.5,4-1,6
c-1.5,8.2,0.4,16.5,2.4,24.6c1.3,5.6,3.2,11.9,8.4,14.3c3.7,1.7,8,1,12,0.2c1.3-0.1,2.6-0.6,3.6-1.5c1.4-1.3,1.5-3.6,1.4-5.5
c-1.4-22.2-12.6-43.5-10.4-65.6c0.4-3.7,1.1-7.3,1.7-10.9c3.1-18.8,2.7-38.2,6.7-56.8c0.2-0.7,0.2-1.3,0-2
c-0.3-0.6-0.9-1.2-1.5-1.5c-3.6-2.2-7.5-4.1-11.7-4.7c-3.3-0.5-7.4-0.1-10.2,1.9s-3.1,6.7-3.9,10.1
C90.9,491.6,89.3,500.6,88.4,509.6z"/>
<path class="st5" d="M93.7,622.5c0,0.3,0,0.5,0.1,0.8c0.1,0.1,0.2,0.2,0.3,0.2c0.8,0,1.7,0,2.5,0c0.1-1,0.1-2,0.1-3v-6.8
c0-5.4,0-10.9-0.2-16.3c0-0.2,0-0.4-0.1-0.6c-0.1-0.1-0.2-0.2-0.3-0.3c-0.6-0.3-2-1.2-2.5-0.2s-0.3,4.2-0.3,5.5
c-0.1,4.4-0.1,8.8,0,13.2C93.4,617.5,93.5,620,93.7,622.5z"/>
<path class="st5" d="M137.6,384.6c0,0.7,0,1.5,0.2,2.2c0.4,2.1,0.8,4.2,1.3,6.3c0.3,0.9,0.4,1.8,0.3,2.8c-0.3,1.2-0.8,2.3-1.4,3.4
c-2,4.5,0.1,10-1.8,14.5c-0.5,1.1-1.1,2-1.5,3.1c-0.9,2.4-0.4,5-0.7,7.5c-0.3,1.8-0.7,3.5-1.3,5.2c-1.4,5.6,0.9,11.5-0.4,17.1
c-1.2,4.8-2.3,9.6-2.4,14.5c-0.1,3.4,0.4,6.8,0,10.2s-1.8,6.9-4.7,8.7c-2.3,1.4-5.1,1.6-7.8,1.6c-5.2,0.1-10.4-0.1-15.6-0.5
s-10.8-1.3-14.4-4.9c1.4-10.9,2.7-22.6-2.5-32.3c-1.5-2.9-3.6-5.6-4.1-8.8c-0.1-0.8-0.2-1.7-0.4-2.5c-0.2-1-0.6-1.9-1-2.8
c-3.4-7.7-6.8-15.4-10.1-23.1c-0.5-1.2-1.1-2.5-1.6-3.7c-1.8-4-3.5-8-5-12.1c-1.8-4.8-3.2-9.8-4.5-14.8c-0.9-2.9-1.5-6-1.5-9.1
c0.1-2.7,0.8-5.4,1.9-7.9c0.6-1.5,1.3-2.9,2-4.3c20.1-4.7,40.8-6.5,61.4-5.3c3.3,0.1,6.6,0.6,9.7,1.6c2.1,0.8,4,2,5.6,3.7
c0.7,0.8,1.3,1.6,1.7,2.6c1.2,2.6,1.1,5.7,1,8.6c-0.2,5.5-0.4,11-1.9,16.2C137.8,383,137.7,383.8,137.6,384.6z"/>
<path class="st5" d="M123.5,611.3c-3,2.3-6.6,3.8-10.4,4.4c-3.3,0.5-7,0.1-9.6-2c-3-2.4-4.1-6.5-4.9-10.2l-1.1-5
c-0.4-1.8-0.8-3.6-1.2-5.4c-0.9-4.8-1.1-9.7-0.8-14.6c-2.7,1.1-4.4,4.3-4.6,7.3s0.7,5.8,1.6,8.6c0.3,1.4,0.8,2.7,1.5,3.9
c0.5,0.8,1.1,1.5,1.6,2.4c0.5,1.3,0.8,2.6,0.9,4c0.6,4.5,1.5,9,2.7,13.4l1.8,7.3l0.2,0.7l1.5,6.2c0,0.2,0.1,0.4,0.2,0.6
c0.2,0.3,0.4,0.6,0.7,0.8c6.4,4.7,14.7,5.6,21.9,2.4c0.3-0.1,0.5-0.3,0.8-0.5c0.4-0.5,0.6-1.2,0.5-1.8c-0.1-2,0.3-4,1.1-5.8
c0.5-0.7,0.8-1.4,1.1-2.1c0.2-1.2-0.1-2.5-0.7-3.5l-3.7-8.7C124.3,612.9,123.9,612.1,123.5,611.3z"/>
<path class="st8" d="M114.8,251.1c-0.1,1.9-0.5,3.8-1.1,5.6c-0.4,1.3-1.2,2.5-2.3,3.4c-1.7-2.3-4.8-3.1-7.1-4.8
c-1.9-1.6-3.6-3.5-4.9-5.6c-3-4-6.4-7.5-9.6-11.3c-0.5-0.6-1-1.1-1.4-1.7c-1.6-2-3.1-4.1-4.4-6.3c-2.7-4.6-4.5-9.9-8.5-13.4
c-2.2-1.9-4.9-3.1-6.9-5.3c1.2-2,2-4.3,2.3-6.6c0.5-2.2,0.9-4.5,1.1-6.7c0.1-0.6,0.1-1.2,0.1-1.8c0-0.3,0-0.5,0-0.8
c0-1.9-1.2-5,0.7-6.1c1.7-1,4.6-1,6.6-0.9h0.4c4.7,0.1,9.4,1.5,13.3,4.1c0.9,0.5,1.7,1.3,2.3,2.1c0.9,1.7,1.3,3.6,1,5.5
c0,0.4,0,0.9-0.1,1.3v0.6c-0.1,2.1,0.1,4.4,1.6,5.9s4.2,1.7,6.4,2.4c0.4,0.1,0.7,0.2,1.1,0.4c2.4,1.1,4.4,2.8,5.9,5
c1.6,2.5,2.8,5.3,3.4,8.3c0.6,2.6,1,5.3,1.1,8C115.9,238.5,115.6,244.8,114.8,251.1z"/>
<path class="st7" d="M96.2,201.6v0.6c-2.7,1-9.2-1.8-12.2-1.8c-6,0-7.8,1.2-12.1-2.3c0.1-0.9,0.1-1.7,0.2-2.6c0-1.9-1.2-5,0.7-6.1
s4.9-1,6.9-0.9c4.7,0.1,9.4,1.5,13.3,4.1c0.9,0.5,1.7,1.3,2.3,2.1C96.5,196.7,96.3,199.3,96.2,201.6z"/>
<path class="st8" d="M112.8,176.7c0,13.9-11.2,25.1-25.1,25.1c-1.6,0-3.3-0.2-4.9-0.5C71,199,62.5,188.7,62.5,176.7
c-0.3-13.9,10.8-25.4,24.6-25.6c13.9-0.3,25.4,10.8,25.6,24.6C112.8,176,112.8,176.3,112.8,176.7L112.8,176.7z"/>
<path class="st2" d="M70.5,206.4c-0.8-0.7-1.8-1.1-2.8-1.2c-1.5,0.1-2.8,1.1-3.3,2.6c-0.6,1.4-0.8,2.8-1.3,4.2
c-0.7,1.9-2,3.5-3.7,4.5c-1.2,0.7-2.6,1.3-3.4,2.4c-1.3,1.8-0.5,4.3,0.6,6.3c4,7.2,11.3,12,18.3,16.4l7.9,5c3.2,2.1,6.4,4,9.8,5.8
c5.5,2.7,11.4,4.4,16.8,7.2c2.5,1.3,5,2.8,7.7,3.2c0.6-1.9,0.9-3.8,1.1-5.7c1.4-12,2.7-24.3,0-36c-0.4-2.3-1.3-4.4-2.8-6.2
c-1-1-2.2-1.8-3.5-2.4c-3.2-1.7-6.5-3.3-9.8-4.6c-1.6-0.8-3.3-1.1-5.1-1.1c0.2,1.3,0.5,2.6,1.2,3.8c4.2,9.4,8.4,18.8,12.7,28.2
c0.9,1.7,1.5,3.6,1.5,5.6c-0.1,2.8-2,5.5-1.2,8.1c-7.4-10.7-15.8-20.7-25.3-29.7c-0.4-0.3-0.8-0.8-1-1.3c-0.2-0.8-0.3-1.6-0.1-2.3
c0.1-1.5-0.2-3.5-1.5-4.5c-0.9-0.7-2.1-0.9-3.1-1.5C76.9,211,73.7,208.6,70.5,206.4z"/>
<path class="st7" d="M137.7,357.1c-6.4,3.2-13.3,5.1-20.4,5.6c-7.1,0.5-14.2,0.5-21.3,0.1l-16.1-0.6c-7.3-0.3-14.5-0.9-21.5-3.1
c0.6-1.5,1.3-2.9,2-4.3c20.1-4.7,40.8-6.5,61.4-5.3c3.3,0.1,6.6,0.6,9.7,1.6c2.1,0.8,4,2,5.6,3.7
C137.3,355.7,137.5,356.4,137.7,357.1z"/>
<path class="st6" d="M136.5,278.5c-2.8,9.4-0.9,19.7,0.9,29.4c1,0.7,1.5,1.9,1.1,3.1c-0.3,1.1-0.8,2.2-1.3,3.2
c-0.5,1-0.6,2.3-0.1,3.4c0.3,0.4,0.6,0.8,0.9,1.2c0.3,0.7,0.5,1.5,0.5,2.3c0.2,3.6,0.4,7.4-0.5,10.9c-0.6,2-1.5,4.2-0.9,6.2
c0.4,1.2,1.3,2.3,1.5,3.5s-0.6,2.6-1.1,3.9c-1.1,3-0.5,6.6,0.3,9.7c-6.4,3.2-13.3,5.1-20.4,5.6c-7.1,0.5-14.2,0.6-21.3,0.1
l-16.1-0.6c-7.4-0.3-14.6-0.9-21.6-3.1c-0.7-4.9-1.3-10.2,1.5-14.2c0.5-0.6,0.9-1.4,1.3-2.1c0.5-1.7-0.6-3.4-0.9-5
c-0.7-3.5,1.6-6.7,3.6-9.6c0.3-0.4,0.5-0.8,0.7-1.3c0.4-1.3-0.4-2.8-0.5-4.2c0-0.4,0.1-0.8,0.3-1.1c0.3-0.6,0.9-1,1.1-1.5
c0.3-0.7,0.4-1.5,0.3-2.3c-0.4-5-1-10-1.8-15c-0.1-0.4-0.2-0.9-0.3-1.4c-0.1-0.7-0.4-1.4-0.7-2c-0.5-0.8-1.2-1.5-1.6-2.3
c-0.5-0.9-0.5-2,0-2.9c0.4-0.8-0.8-1.6-1.2-2.4c-0.2-0.7-0.2-1.4-0.1-2.1c-0.1-1.2-0.6-2.3-1.3-3.2c-0.9-1.4-1.8-2.8-2.7-4.1
c-4-6.2-8.2-12.3-12.5-18.3c-2.1-2.9-4.2-5.7-6.3-8.5c-1.7-2.3-3.5-4.6-4.4-7.3c-0.2-0.5-0.3-1-0.4-1.5c-0.5-2.6-0.1-5.3,1.1-7.7
c1.2-2,2.5-3.9,4-5.6c1.4-2.1,3-4.2,4.6-6.2c1.7-2,4.1-3.2,6.7-3.4c1.5,0,3.2,0.4,4.3-0.6c0.4-0.4,0.6-0.9,1-1.3
c1.1-1,2.9-0.3,4.2,0.4l25.2,14.2l4.1,2.3c0.7,0.4,1.5,0.9,2.2,1.3c3.5,2,6.8,4.3,10,6.8c4.7,3.7,9.8,7.2,13.9,11.6
c0.4,0.4,0.8,0.8,1.1,1.3c0.7-5.1,1.5-10.2,2.2-15.4c0.3-1.5,0.4-3,0.3-4.5c-0.2-1.5-0.6-2.9-1.1-4.3c-0.2-0.5-0.3-1-0.5-1.5
c-0.9-2.7-1.8-5.4-2.7-8.1c-1.3-4-2.8-8.1-5.8-11.1c-0.7-0.6-1.4-1.3-2-2l0,0c-0.6-0.8-0.8-1.7-0.5-2.6l21.2,6.6c1,0.3,2,0.6,3,1
c1.2,0.5,2.3,1.2,3.3,2c3.2,2.6,4.9,6.7,4.4,10.8c-0.2,1.3-0.7,2.6-1,3.9c-0.5,2.4-1.3,5.1-0.2,7.3s2,4.1,2.9,6.2
c0.8,1.6,1.5,3.2,2,4.9c0.6,2.3,0.8,4.7,0.7,7.1c-0.1,5.3-1,10.6-2.7,15.6C137.7,275.3,137,276.9,136.5,278.5z"/>
<polygon class="st5" points="93.2,290.5 143.5,285.7 152.3,284.7 144.2,287.6 "/>
<polygon class="st5" points="92.1,292.9 92.1,289.1 145.4,286.5 148,288.7 "/>
<path class="st8" d="M92.3,285.7c1.1-0.3,2.3-0.2,3.4-0.5c1.5-0.4,2.8-1.3,4.3-1.4c0.9-0.1,1.9,0,2.8,0.2l6.9,1.2
c0.5,0.1,1.1,0.3,1.3,0.8c0.1,0.5-0.1,1-0.4,1.3c-1.2,1.3-3.2,1.5-5,1.6l-4.8,0.3c-0.9,0-1.9,0.2-2.7,0.6c-0.8,0.5-1.2,1.5-0.9,2.4
c0.3,0.4,0.6,0.8,1.1,1c1.9,1.1,4.1,1.5,6.3,1.2c1.8-0.3,3.5-0.8,5.1-1.5c4.2-1.4,8.7-1.8,13.1-1.4c1.1,0.1,2.5,0.4,2.9,1.5
c0.2,0.8,0,1.6-0.5,2.2c-1.7,2.4-5.1,2.5-8,3.1c-2.7,0.6-5.3,1.9-7.4,3.8c0.6,1.3,0.1,2.9-0.5,4.2c-0.7,1.5-1.6,2.9-2.6,4.3
c-0.5,0.8-1.3,1.5-2.2,2c-0.6,0.2-1.2,0.3-1.8,0.3c-6,0.4-12,0-17.9-1c-0.6,0-1.2-0.3-1.7-0.7c-0.3-0.4-0.5-0.9-0.6-1.4
c-0.6-3-1.1-6-1.6-9.1c-0.4-1.9-0.3-3.9,0.5-5.7c0.7-1.4,1.9-1.8,3.1-2.8C87.3,290.1,88.9,286.6,92.3,285.7z"/>
<path class="st5" d="M157.2,223.2l-12.5,61.9c-0.4,1.6,0.7,3.2,2.3,3.6c0.3,0.1,0.7,0.1,1,0l47.1-4.6c1.3-0.1,2.4-1.1,2.7-2.4
l11.5-57.3c0.3-1.6-0.7-3.2-2.3-3.6c-0.2,0-0.5-0.1-0.7-0.1h-46.1C158.8,220.7,157.5,221.7,157.2,223.2z"/>
<path class="st8" d="M180.7,296.8c3-1.9,3.9-5.7,5.2-8.9c1.1-2.4,2.4-4.7,3.8-6.9c1.2-2,2.4-4.4,1.5-6.5c-0.7-1.3-2-2.4-3.5-2.8
c-1.3-0.6-2.8-0.8-4.3-0.5c-1.6,0.4-2.8,1.8-3.9,3l-3.9,4.5c-1.7,2.2-3.7,4-5.9,5.5c-1.4,0.8-2.9,1.4-4.5,1.9
c-2.8,0.9-5.6,1.7-8.5,2.4c-1.6,0.3-3.2,0.8-4.8,1.5c-0.6,0.2-1.1,0.7-1.4,1.3c-0.1,0.8,0.1,1.5,0.5,2.1c1,1.8,2.1,5.6,4.2,6.2
c2,0.5,3.9,0.8,6,0.9c2,0.2,3.5-0.6,5.3-1.3c2.2-0.8,4.6-1.2,7-1.1C175.5,298.2,179,298.5,180.7,296.8z"/>
<path class="st6" d="M154.9,288.5c0,0,1.8,11.9,12.9,10.6c0,0-5.9,2.4-5.3,3.7s-13.7-2.6-13.7-2.6l-0.7-6.2c0,0-0.5-3.4,0-3.5
S154.9,288.5,154.9,288.5z"/>
<path class="st7" d="M154.9,288.5c0,0,1.8,11.9,12.9,10.6c0,0-5.9,2.4-5.3,3.7s-13.7-2.6-13.7-2.6l-0.7-6.2c0,0-0.5-3.4,0-3.5
S154.9,288.5,154.9,288.5z"/>
<path class="st7" d="M103.6,238.7c1.1,0.6,2,1.4,2.6,2.5c0.9,1.5,1.6,3.1,2.1,4.8c0.6,2,0.8,4.4,2.3,5.8"/>
<path class="st7" d="M56.9,271.7c0.8,2.9,0.5,6-0.9,8.6c-4-6.2-8.2-12.3-12.5-18.3c-2.1-2.9-4.2-5.7-6.3-8.5
c-1.7-2.3-3.5-4.6-4.4-7.3c-0.2-0.5-0.3-1-0.4-1.5c1.1-1.6,2.7-2.7,4.5-3.3c2.9,8.5,10.3,14.5,15.6,21.8
C54.5,265.7,56,268.6,56.9,271.7z"/>
<path class="st7" d="M94.2,315.1l-17.5,0.6c-1.5,0-3.3,0.3-3.8,1.8c-0.1,0.5-0.1,0.9-0.3,1.4c-0.5,1.6-2.6,1.8-4.3,1.8
c-1.4,0-2.9,0.1-4.3,0.2c0-0.4,0.1-0.8,0.3-1.1c0.3-0.6,0.9-1,1.1-1.5c0.3-0.7,0.4-1.5,0.3-2.3c-0.4-5-1-10-1.8-15
c-0.1-0.4-0.2-0.9-0.3-1.4c1.4-0.9,2.9-1.4,4.6-1.4c1.4,0.2,2.8,1,4.2,0.9c2.5-0.1,4.2-2.9,6.7-3.1c0.5,0,1.1,0,1.6-0.2
c0.8-0.4,0.9-1.5,1.3-2.2c0.6-1.2,2.3-1.4,3.6-1.1c0,2.6,0.1,5.3,0.5,7.9c0.1,1.1,0.4,2.3,0.8,3.4c0.5,1.1,1.1,2.1,1.8,3.1
C90.5,309.5,92.3,312.2,94.2,315.1z"/>
<path class="st6" d="M36,240.5c-3.1,0.8-5.3,3.7-6.2,6.8s-0.8,6.4-0.7,9.6c0.3,11.9-0.5,23.8-2.4,35.6c-0.9,5.6-2.1,11.3-1.8,17
c0.2,3.1,0.9,6.3,2.9,8.7c3.1,3.7,8.6,4.5,13.4,4.3c8.8-0.3,17.4-2.9,26.1-2.9c1.7,0,3.8-0.2,4.3-1.8c0.1-0.4,0.1-0.9,0.3-1.4
c0.5-1.4,2.3-1.7,3.8-1.8l17.5-0.6c-1.9-2.8-3.7-5.5-5.6-8.3c-0.7-1-1.3-2-1.8-3.1c-0.4-1.1-0.7-2.2-0.8-3.4
c-0.4-2.6-0.5-5.3-0.5-7.9c-1.3-0.3-3,0-3.6,1.1c-0.4,0.8-0.5,1.8-1.3,2.2c-0.5,0.2-1.1,0.2-1.6,0.2c-2.5,0.2-4.2,3-6.7,3.1
c-1.4,0.1-2.8-0.8-4.2-0.9c-2.3-0.2-4.3,1.3-6.4,2.2c-3.4,1.5-7.4,1.5-10.8,0c-0.5-0.2-1.1-0.9-0.7-1.2s0.8-0.1,1.1-0.2
c0.6-0.3,0.2-1.3-0.2-1.9c-1-1.8-0.3-4,0.7-5.9s2.2-3.6,2.3-5.7c-0.1-0.7-0.1-1.3,0-2c0.3-0.9,0.8-1.8,1.5-2.5
c1.7-2.7,2.2-6.1,1.3-9.2c-0.9-3.1-2.4-5.9-4.4-8.4C46.3,255.1,38.9,249,36,240.5z"/>
<path class="st7" d="M83.4,234.6l4.1,2.3c-1.3,0.6-2.5,1.1-3.8,1.5c-9.2,3.1-5.9,7.4-15.6,7.3c-6.6-0.1-14.1-0.6-18.8,4.1
c-2.2,2.2-3.3,5.3-4.3,8.2c-0.5,1.3-0.9,2.7-1.4,4c-2.1-2.9-4.2-5.7-6.3-8.5c-1.7-2.3-3.5-4.6-4.4-7.3c-0.9-3-0.7-6.3,0.7-9.2
c1.2-2,2.5-3.9,4-5.6c1.4-2.1,3-4.2,4.6-6.2c1.7-2,4.1-3.2,6.7-3.4c1.5,0,3.2,0.4,4.3-0.6c0.4-0.4,0.6-0.9,1-1.3
c1.1-1,2.9-0.3,4.2,0.4L83.4,234.6z"/>
<path class="st5" d="M107.7,158.1c-0.1-1.2-0.4-2.4-0.9-3.5c-0.4-0.9-1-1.7-1.6-2.4c-4.3-4.8-10.4-7.6-16.9-7.7
c-0.6,0-1.1,0.1-1.6,0.3c-0.1,0.1-0.2,0.1-0.4,0.2c-4.6-3.1-10-6.2-15-7.4c-3.5-0.8-7.1-0.8-10.5,0.1c-4.2,1.3-5.6,4.6-7.4,8.3
c-2.9,5.9-7.2,10.9-12.6,14.5c-3.5,2.4-7.6,4.4-9.3,8.2c-1.6,3.6-0.5,7.7-0.1,11.6c0.9,10.7-3.7,21.1-12.1,27.8
C14.5,212,8.1,215,7.1,221c-0.7,4.2,1.6,8.3,3.4,12.2c3.8,8.2,5.1,18.3,0.6,26.1c-1.3,2.2-3,4.3-3.6,6.8c-1.2,4.4,1.3,9.2,5.1,11.8
s8.5,3.3,13.1,3.2c3.3,0,6.9-0.5,9.3-2.8c1.5-1.7,2.5-3.7,3.1-5.8c1.9-5.4,3.8-10.9,5.8-16.3c1-2.9,2.1-6,4.3-8.2
c4.6-4.7,12.2-4.2,18.8-4.1c9.7,0.1,6.4-4.2,15.6-7.3c5.4-1.8,11.3-4.9,12.5-10.5s-2.5-10.6-5.8-15.1c-2.5-3.3-4.8-6.8-6.9-10.4
c-2.1-3.4-4.2-7.1-4.8-11.1c-1-6.6,15.1-10.4,17.6-16.6c0.7-1.8,1.3-3.6,1.7-5.4c1.2-0.1,2.2-0.2,3-0.2c3.1-0.1,6.6-1.4,7.6-4.3
C108.1,161.4,108.1,159.7,107.7,158.1z"/>
<g class="st10">
<path d="M80.6,142.6c0.5-0.2,1.1-0.3,1.6-0.3h0.2c-3.4-2.2-7.1-3.8-11-4.9l-0.9-0.2c3.4,1.6,6.7,3.4,9.8,5.5
C80.3,142.8,80.4,142.7,80.6,142.6z"/>
<path d="M107.7,157.9c-0.1-1.2-0.4-2.4-0.9-3.5c-0.4-0.9-1-1.7-1.6-2.4c-3.4-3.9-8-6.4-13.1-7.3c2.7,1.3,5,3.1,7,5.3
c0.7,0.7,1.2,1.5,1.6,2.4c0.5,1.1,0.8,2.3,0.9,3.5c0.4,1.6,0.4,3.3-0.1,4.8c-1.1,2.9-4.5,4.1-7.6,4.2c-0.8,0-1.8,0.1-3,0.2
c-0.5,1.8-1,3.7-1.7,5.4c-2.4,6.3-18.5,10-17.6,16.6c0.6,4,2.6,7.6,4.7,11.1s4.5,7,6.9,10.4c3.3,4.5,7,9.7,5.8,15.1
s-7.1,8.7-12.5,10.5c-9.2,3.1-5.9,7.4-15.6,7.3c-6.6-0.1-14.2-0.6-18.8,4.1c-2.2,2.2-3.3,5.3-4.3,8.2L32,270.2
c-0.6,2.1-1.6,4.1-3.1,5.8c-2.4,2.3-5.9,2.8-9.3,2.8c-1.9,0-3.8-0.1-5.6-0.4c3.5,1.9,7.7,2.5,11.8,2.4c3.3,0,6.9-0.5,9.3-2.8
c1.5-1.7,2.5-3.7,3.1-5.8c1.9-5.4,3.8-10.9,5.8-16.3c1-2.9,2.1-6,4.3-8.2c4.6-4.7,12.2-4.2,18.8-4.1c9.7,0.1,6.4-4.2,15.6-7.3
c5.4-1.8,11.3-4.9,12.5-10.5s-2.5-10.6-5.8-15.1c-2.5-3.3-4.8-6.8-6.9-10.4c-2.1-3.4-4.2-7.1-4.8-11.1c-1-6.6,15.1-10.4,17.6-16.6
c0.7-1.8,1.3-3.6,1.7-5.4c1.2-0.1,2.2-0.2,3-0.2c3.1-0.1,6.6-1.4,7.6-4.3C108.1,161.2,108.1,159.5,107.7,157.9z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="be32c85c-9388-4a2b-a4e5-271574a5b9b2"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="888px" height="651.9px"
viewBox="0 0 888 651.9" style="enable-background:new 0 0 888 651.9;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E6E6E6;}
.st1{fill:#2F2E41;}
.st2{fill:#FFB8B8;}
.st3{opacity:0.1;enable-background:new ;}
.st4{fill:#4F3D6B;}
.st5{fill:#FFFFFF;}
.st6{fill:#0074D9;}
</style>
<title>design_notes</title>
<ellipse class="st0" cx="96.7" cy="631.8" rx="96.3" ry="20"/>
<ellipse class="st1" cx="55.1" cy="143.7" rx="33.2" ry="31.1"/>
<path class="st2" d="M151.8,337.5l8.4,11.8c0,0,40.4,8.4,25.2,21s-37-11.8-37-11.8l-11.8-15.1L151.8,337.5z"/>
<path class="st0" d="M108.1,203.8c0,0,10.9,0,13.5,15.1s5,65.6,5,65.6s35.3,46.2,29.4,52.1s-12.6,16.8-16.8,15.1
s-40.4-51.3-40.4-51.3L108.1,203.8z"/>
<path class="st2" d="M74.4,160.9c0,0,0.8,32.8,10.9,34.5S92,208,92,208s-32.8,19.3-54.7,0l-4.2-10.1c0,0,15.1-10.9,8.4-26.1
L74.4,160.9z"/>
<path class="st1" d="M130.8,362.7c0,0,49.6,92.5,31.1,121.1s-46.2,87.5-50.5,87.5S83.7,559.5,85.3,552s26.9-63.9,33.6-69
s3.4-18.5,2.5-19.3s-28.6-45.4-28.6-45.4s0.8,70.6-2.5,81.6s0.8,89.1-3.4,92.5s-23.5,9.3-26.9,4.2s-13.5-81.6-6.7-99.2L40.8,376.2
L130.8,362.7z"/>
<path class="st1" d="M85.4,587.2l21,38.7c0,0,30.3,21.9,9.3,25.2s-33.6-5-33.6-5l-18.5-13.5V594L85.4,587.2z"/>
<path class="st1" d="M113.9,565.4l-10.9,26c0,0-4.2,10.9,0,13.5s16,17.7,8.4,19.3c-1.5,0.3-3.1,0.5-4.6,0.5
c-12.7,0.2-25-4.8-34-13.8L66,604c0,0,23.4-53.8,23-53.4S113.9,565.4,113.9,565.4z"/>
<circle class="st2" cx="53.4" cy="152.5" r="28.6"/>
<path class="st0" d="M37,192.4l8.8,8.8c0,0,26.9,10.1,39.5,0c0,0-4.6-9.7-4.6-8.8s36.6,6.3,39.9,21.4s-2.5,41.2-2.5,41.2
s23.5,111,14.3,113.5s-95.9,23.5-95,7.6s-6.7-81.6-6.7-81.6L1.3,238.3c0,0,4.2-18.5,14.3-24.4S37,192.4,37,192.4z"/>
<path class="st2" d="M74.4,356.8l10.9,6.7c0,0,42,28.6,20.2,33.6S71.1,377,71.1,377l-8.4-10.1L74.4,356.8z"/>
<path class="st3" d="M12.2,233.2l-7.6,7.6c0,0-5,70.6,5,84.9s56.3,53,58.9,50.5S87,361,83.7,359.3s-48.1-48.4-48.1-48.4l3.5-65.1
L12.2,233.2z"/>
<path class="st0" d="M8.8,230.7l-7.6,7.6c0,0-5,70.6,5,84.9s56.3,53,58.9,50.5s18.5-15.1,15.1-16.8s-48.1-48.4-48.1-48.4l3.5-65.1
L8.8,230.7z"/>
<path class="st4" d="M65.2,111.9c0,0,9.7-3.5,23,4l-7.1,1.8c0,0,10.6,0.9,11.9,15h-4.9c0,0,3.1,12.4,0,15.9l-2-3.8l-5.7,11.5
l-1.3-5.7l-2.7,0.9l-1.8-9.3c0,0-4.4,6.6-8,7.1v-5.7c0,0-9.7,11-12.8,10.6l4.4-6.2l-6.2,1.3l2.7-4.4l-15.9,4.4l3.5-4.4l-11,3.5
l-5.3,2.2c0,0-7.5-17.2,3.1-29.2S55.3,106.8,65.2,111.9z"/>
<rect x="221.9" y="69" class="st0" width="643.9" height="412.4"/>
<rect x="240.3" y="120.7" class="st5" width="607" height="336.2"/>
<rect x="221.6" y="68.6" class="st6" width="643.9" height="27.4"/>
<circle class="st5" cx="241.9" cy="82.6" r="5.1"/>
<circle class="st5" cx="261.2" cy="82.6" r="5.1"/>
<circle class="st5" cx="280.4" cy="82.6" r="5.1"/>
<path class="st0" d="M329.4,155.6h88c18.8,0,34,15.2,34,34v198.5c0,18.8-15.2,34-34,34h-88c-18.8,0-34-15.2-34-34V189.6
C295.5,170.8,310.7,155.6,329.4,155.6z"/>
<path class="st6" d="M503.4,155.6h79.9c13.8,0,25,11.2,25,25v23.3c0,13.8-11.2,25-25,25h-79.9c-13.8,0-25-11.2-25-25v-23.3
C478.4,166.8,489.6,155.6,503.4,155.6z"/>
<path class="st0" d="M502.5,249.4h81.7c13.3,0,24.1,10.8,24.1,24.1v30.7c0,13.3-10.8,24.1-24.1,24.1h-81.7
c-13.3,0-24.1-10.8-24.1-24.1v-30.7C478.4,260.2,489.2,249.4,502.5,249.4z"/>
<path class="st0" d="M503.8,348.7h79.1c14.1,0,25.5,11.4,25.5,25.5v22.4c0,14.1-11.4,25.5-25.5,25.5h-79.1
c-14.1,0-25.5-11.4-25.5-25.5v-22.4C478.4,360.1,489.8,348.7,503.8,348.7z"/>
<path class="st0" d="M665.3,155.6h97.8c16.1,0,29.1,13,29.1,29.1v57.9c0,16.1-13,29.1-29.1,29.1h-97.8c-16.1,0-29.1-13-29.1-29.1
v-57.9C636.2,168.6,649.2,155.6,665.3,155.6z"/>
<path class="st6" d="M665.1,305.9h98.1c16,0,28.9,13,28.9,28.9v58.3c0,16-13,28.9-28.9,28.9h-98.1c-16,0-28.9-13-28.9-28.9v-58.3
C636.2,318.9,649.2,305.9,665.1,305.9z"/>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

69
img/undraw_forms_78yw.svg Normal file
View File

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="b71cf957-6104-44bf-a28a-c3091bf56141"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="820.8px" height="526.4px"
viewBox="0 0 820.8 526.4" style="enable-background:new 0 0 820.8 526.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFB8B8;}
.st1{fill:#E6E6E6;}
.st2{fill:#FFFFFF;}
.st3{fill:#0074D9;}
.st4{fill:#2F2E41;}
.st5{fill:#3F3D56;}
</style>
<path class="st0" d="M661,297l-9.7,13.2c-2.7,3.7-7.7,4.9-11.8,2.8l0,0c-4.6-2.3-6.4-8-4.1-12.6c0.7-1.4,1.8-2.7,3.2-3.5l12.3-8.2
l35.3-35.3l3.9-12.6h26.6l-13.9,30L661,297z"/>
<path class="st1" d="M370.3,296.2c-2.6,0-4.6,2.1-4.6,4.6v219.5c0,2.6,2.1,4.6,4.6,4.6h296.4c2.6,0,4.6-2.1,4.6-4.6V300.9
c0-2.6-2.1-4.6-4.6-4.6H370.3z"/>
<path class="st2" d="M378.5,512.5h279.9V308.8H378.5V512.5z"/>
<path class="st1" d="M619,367.1H450.4c-3.3,0-6,2.7-6,6c0,3.3,2.7,6,6,6l0,0H619c3.3,0,6-2.7,6-6C625,369.8,622.3,367.1,619,367.1z"
/>
<path class="st1" d="M450.4,404.1c-3.3,0-6,2.7-6,6c0,3.3,2.7,6,6,6l0,0H619c3.3,0,6-2.7,6-6c0-3.3-2.7-6-6-6H450.4z"/>
<path class="st1" d="M450.4,441.2c-3.3,0-6,2.7-6,6c0,3.3,2.7,6,6,6H619c3.3,0,6-2.7,6-6c0-3.3-2.7-6-6-6H450.4z"/>
<circle class="st3" cx="418.5" cy="373.6" r="7.4"/>
<circle class="st1" cx="418.5" cy="410.6" r="7.4"/>
<circle class="st1" cx="418.5" cy="447.7" r="7.4"/>
<path class="st3" d="M551.8,373.1L551.8,373.1c0,3.3-2.7,6-6,6h-95.2c-3.1,0-5.7-2.2-6.2-5.2c-0.4-3.3,1.9-6.3,5.2-6.8
c0.3,0,0.5-0.1,0.8-0.1h95.4C549.1,367.1,551.8,369.8,551.8,373.1L551.8,373.1z"/>
<circle class="st1" cx="518.5" cy="246.2" r="24.1"/>
<ellipse transform="matrix(0.1602 -0.9871 0.9871 0.1602 192.3686 718.5755)" class="st2" cx="518.5" cy="246.2" rx="12" ry="12"/>
<path class="st0" d="M787.2,488.5l-12.2,5.7L756.5,459c-11.4-17.5-18.9-38.5-24.1-61.4l19.2,1.3c11.4,16.3,19.9,32.6,22.6,49
L787.2,488.5z"/>
<polygon class="st4" points="755.4,403.2 731,403.2 731,361 750.6,357.5 "/>
<path class="st3" d="M724.1,243.9c-11.9-2.3-24-2.7-36-1.4l7-35.1c1.4-6.9,7-12.2,14-13.1l0,0c9-1.2,17.3,5.2,18.4,14.2
c0.2,1.3,0.2,2.6,0,3.9L724.1,243.9z"/>
<circle class="st0" cx="706.9" cy="151.4" r="20.5"/>
<path class="st0" d="M738.4,175.1l-27,19.2l-7.2-34.2l20.2-8.1C725.3,161,730.2,168.6,738.4,175.1z"/>
<path class="st4" d="M727.3,149.2c-1.5-3.1-3.4-1-5.1,2.8l-2.4-9.7l-2.9-1l-1.9-7.7c-8.9-2.1-16,2.3-25.1,7.2l-3.5,8.3l0,0
c-5.1-10.4-0.8-23,9.6-28.1c1.4-0.7,3-1.2,4.5-1.6c1.5-0.3,3.1-0.5,4.6-0.5l0,0c12.1-0.1,22,9.6,22.2,21.7c0,0.3,0,0.6,0,0.9
L727.3,149.2z"/>
<path class="st4" d="M790.7,505.2l-41.6,13.6c-2.9,0.6-5.9-0.9-7.1-3.6l0,0c-1.3-2.8-0.3-6.1,2.2-7.8c8.2-5.6,14.8-11.6,17.8-18.4
c2.8-11.3,5.9-11.3,9.3-2.9c9.4,5.6,7.9,1.1,13.8-5.8l9,17.1c1.4,2.7,0.4,6-2.3,7.4C791.4,505,791.1,505.1,790.7,505.2z"/>
<path class="st0" d="M692.3,515.1l-13.9-6.1l5-35.7l9.8-70.1l26.6,3.5c-0.6,24.3-6.6,48.2-17.7,69.9L692.3,515.1z"/>
<path class="st4" d="M737.6,414.1l-46.1-9.1l12.2-64l-2.2-17.4h60.5C759.7,346.1,749.2,379.4,737.6,414.1z"/>
<path class="st3" d="M764.1,329.7c-22.3-5.7-44.3-6.5-65.7,0c-4-41.3-5.1-80.7-1.6-117c0.8-8.8,5.1-16.9,11.8-22.6l25.5-21.4
L753,178c5,2.5,8.2,7.5,8.3,13.1C765.4,246.1,768.6,298.4,764.1,329.7z"/>
<path class="st0" d="M786.3,322.7l3.8,13.3c1.5,5.4-1.6,11-7,12.6c-0.4,0.1-0.8,0.2-1.2,0.3l0,0c-5.6,0.9-10.8-2.9-11.6-8.5
c-0.2-1-0.2-1.9,0-2.9l1.7-13.1l-9.1-66.2l-12.2-26.1l24.4-10.9l10,32.6L786.3,322.7z"/>
<path class="st4" d="M687.9,526.2l-42.7-10c-2.8-1-4.6-3.8-4.2-6.7l0,0c0.4-3.1,2.9-5.4,5.9-5.6c9.9-0.6,18.6-2.3,24.7-6.6
c8.2-8.2,10.9-6.6,9.5,2.4c5.2,9.6,6.2,5,14.8,2.1l-1.1,19.3c-0.2,3-2.8,5.4-5.8,5.2C688.6,526.3,688.2,526.3,687.9,526.2z"/>
<path class="st3" d="M778.9,224.3c-10.3,0.8-21.6,6.8-33.1,14.4L737,204c-1.7-6.8,1.1-14,7-17.8l0,0c7.6-5,17.8-2.8,22.8,4.8
c0.7,1.1,1.3,2.3,1.7,3.5L778.9,224.3z"/>
<path class="st1" d="M4.6,106.8c-2.5,0-4.6,2.1-4.6,4.6v217.5c0,2.5,2.1,4.6,4.6,4.6h293.7c2.5,0,4.6-2.1,4.6-4.6V111.4
c0-2.5-2.1-4.6-4.6-4.6L4.6,106.8z"/>
<path class="st2" d="M11.5,322h279.9V118.3H11.5V322z"/>
<path class="st1" d="M39,214.4c-3.3,0-6,2.7-6,6s2.7,6,6,6h224.9c3.3,0,6-2.7,6-6s-2.7-6-6-6H39z"/>
<path class="st1" d="M39,251.1c-3.3,0-6,2.7-6,6s2.7,6,6,6h224.9c3.3,0,6-2.7,6-6s-2.7-6-6-6H39z"/>
<path class="st3" d="M139.5,289.7c-3.3,0-6,2.7-6,6s2.7,6,6,6h23.9c3.3,0,6-2.7,6-6s-2.7-6-6-6H139.5z"/>
<path class="st3" d="M119.5,138.7c-1,0-1.8,0.8-1.8,1.8v46.6c0,1,0.8,1.8,1.8,1.8h64c1,0,1.8-0.8,1.8-1.8v-46.6c0-1-0.8-1.8-1.8-1.8
H119.5z"/>
<circle class="st2" cx="151.4" cy="158.7" r="10.1"/>
<path class="st2" d="M168,184.4c0,1.6-0.4,3.2-1.1,4.6H136c-2.5-5-0.6-11,4.4-13.6c1.4-0.7,3-1.1,4.6-1.1h12.8
C163.4,174.3,168,178.8,168,184.4C168,184.3,168,184.3,168,184.4z"/>
<circle class="st2" cx="151.4" cy="158.7" r="10.1"/>
<path class="st2" d="M168,184.4c0,1.6-0.4,3.2-1.1,4.6H136c-2.5-5-0.6-11,4.4-13.6c1.4-0.7,3-1.1,4.6-1.1h12.8
C163.4,174.3,168,178.8,168,184.4C168,184.3,168,184.3,168,184.4z"/>
<circle class="st1" cx="151.4" cy="55.9" r="23.9"/>
<circle class="st3" cx="151.4" cy="55.9" r="11.9"/>
<polygon class="st5" points="820.4,525.7 246.3,525.7 246.3,523.5 820.8,523.5 "/>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="b8c64dc2-e86a-49bc-92bf-164106d9e7fb"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="887.9px" height="569.7px"
viewBox="0 0 887.9 569.7" style="enable-background:new 0 0 887.9 569.7;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E6E6E6;}
.st1{fill:#FFFFFF;}
.st2{fill:#0074D9;}
.st3{fill:#CCCCCC;}
.st4{fill:#FFB9B9;}
.st5{fill:#2F2E41;}
.st6{fill:#372F60;}
.st7{fill:#4F349B;}
.st8{fill:#3F3D56;}
</style>
<title>proud_coder</title>
<rect x="276.4" y="0.3" class="st0" width="611.5" height="391.6"/>
<rect x="293.9" y="49.5" class="st1" width="576.5" height="319.3"/>
<rect x="276.2" class="st2" width="611.5" height="26"/>
<circle class="st1" cx="295.5" cy="13.3" r="4.8"/>
<circle class="st1" cx="313.7" cy="13.3" r="4.8"/>
<circle class="st1" cx="332" cy="13.3" r="4.8"/>
<path class="st3" d="M707.3,79.4H519.6c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h187.7c0.9,0.1,1.6,1,1.4,1.9
C708.6,78.7,708,79.3,707.3,79.4z"/>
<path class="st3" d="M577.2,97.5H457.9c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C578.6,96.9,578,97.4,577.2,97.5z"/>
<path class="st3" d="M707.3,97.9H587.9c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C708.6,97.2,708,97.8,707.3,97.9z"/>
<path class="st3" d="M577.5,115.7H458.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C578.8,115,578.3,115.6,577.5,115.7z"/>
<path class="st3" d="M577.8,133.9H458.5c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C579.1,133.2,578.5,133.8,577.8,133.9z"/>
<path class="st3" d="M632,115.7h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4H632c0.9,0.1,1.6,1,1.4,1.9
C633.3,115,632.7,115.6,632,115.7L632,115.7z"/>
<path class="st3" d="M632,133.5h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4H632c0.9,0.1,1.6,1,1.4,1.9
C633.3,132.9,632.7,133.4,632,133.5L632,133.5z"/>
<path class="st3" d="M689.3,133.5h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h34.2c0.9,0.1,1.6,1,1.4,1.9
C690.6,132.9,690.1,133.4,689.3,133.5z"/>
<path class="st3" d="M491.2,79.4H457c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h34.2c0.9,0.1,1.6,1,1.4,1.9
C492.5,78.7,491.9,79.3,491.2,79.4z"/>
<path class="st3" d="M576.8,287.7H457.5c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C578.1,287,577.5,287.6,576.8,287.7L576.8,287.7z"/>
<path class="st3" d="M576.2,324H456.9c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C577.5,323.3,577,323.9,576.2,324z"/>
<path class="st3" d="M576.5,342.2H457.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h119.3c0.9,0.1,1.6,1,1.4,1.9
C577.8,341.5,577.2,342.1,576.5,342.2L576.5,342.2z"/>
<path class="st3" d="M627.5,324.3h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h34.2c0.9,0.1,1.6,1,1.4,1.9
C628.8,323.7,628.2,324.2,627.5,324.3L627.5,324.3z"/>
<path class="st3" d="M627.5,342.2h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h34.2c0.9,0.1,1.6,1,1.4,1.9
C628.8,341.5,628.2,342.1,627.5,342.2L627.5,342.2z"/>
<path class="st3" d="M684.8,324.3h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h34.2c0.9,0.1,1.6,1,1.4,1.9
C686.2,323.7,685.6,324.2,684.8,324.3z"/>
<path class="st3" d="M707.4,305.8H519.7c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h187.7c0.9,0.1,1.6,1,1.4,1.9
C708.7,305.2,708.2,305.7,707.4,305.8z"/>
<path class="st3" d="M491.3,305.8h-34.2c-0.9-0.1-1.6-1-1.4-1.9c0.1-0.7,0.7-1.3,1.4-1.4h34.2c0.9,0.1,1.6,1,1.4,1.9
C492.7,305.2,492.1,305.7,491.3,305.8z"/>
<polygon class="st0" points="548,163.2 501.6,209 548,254.7 558.4,244.3 523.3,209.3 558.7,173.9 "/>
<polygon class="st0" points="616.3,163.2 662.7,209 616.3,254.7 605.9,244.3 640.9,209.3 605.6,173.9 "/>
<polygon class="st2" points="548,163.2 501.6,209 548,254.7 558.4,244.3 523.3,209.3 558.7,173.9 "/>
<polygon class="st2" points="616.3,163.2 662.7,209 616.3,254.7 605.9,244.3 640.9,209.3 605.6,173.9 "/>
<path class="st0" d="M470.6,546c14.4,19.3,44.4,21.3,44.4,21.3s6.6-29.3-7.9-48.6s-44.4-21.3-44.4-21.3S456.2,526.7,470.6,546z"/>
<path class="st0" d="M544.1,553.3c-9.5,12.7-29.3,14.1-29.3,14.1s-4.3-19.3,5.2-32.1s29.3-14.1,29.3-14.1S553.6,540.6,544.1,553.3z"
/>
<polygon class="st4" points="149.8,461 149.8,511.1 135.5,511.1 126,458.6 "/>
<polygon class="st4" points="36.4,461 36.4,511.1 22.1,511.1 12.6,458.6 "/>
<path class="st4" d="M112,91.5c0,0-23-16.5-25.9-8.6s17.3,22.3,17.3,22.3L112,91.5z"/>
<path class="st5" d="M30.4,112.7c0,28.6,12.3,29.5,32.4,29.5s40.3-0.9,40.3-29.5S86.7,60.9,66.7,60.9S30.4,84.1,30.4,112.7z"/>
<path class="st4" d="M79.6,112.3c0,0-2.9,21.6,10.8,23c13.7,1.4-44.6,5.8-44.6,5.8s15.1-13.7,7.2-24.5S79.6,112.3,79.6,112.3z"/>
<path class="st6" d="M152.3,497.8l5,42.4c0,0,25.2,30.9,9.3,28.8s-25.9,0.5-25.9-2.4s-0.4-13.2-2.5-13.2s-3.9,16.2-3.9,16.2
s-6.5-0.5-7.2-1.2s-1.4-41.9-1.4-41.9s-2.2-12.2,2.2-18s3.6-10.8,3.6-10.8H152.3z"/>
<path class="st6" d="M37.7,497.4l5,42.4c0,0,25.2,30.9,9.3,28.8s-25.9,0.5-25.9-2.4S25.8,553,23.7,553s-3.9,16.2-3.9,16.2
s-6.5-0.5-7.2-1.2s-1.4-41.9-1.4-41.9s-2.2-12.2,2.2-18s3.6-10.8,3.6-10.8H37.7z"/>
<path class="st7" d="M114.9,245.4c0,0,23,65.4,24.5,79.8s-1.4,63.3-1.4,63.3s20.9,84.5,16.5,85.2s-28.3,4.1-29.1,0.5
s-3.3-9.2-2.6-11.3s-2.2-10.1-2.2-14.4s-10.1-27-9.4-30.6s-12.2-56.8-14.4-61.1S89,322.3,89,322.3S56.6,410.8,55.9,413
s-3.6,5.8-2.2,6.5s-2.2,5.8-2.2,5.8s-7.5,29.8-7.5,31.3s1.4,17.7-1.4,18.4s-32.3,0.7-33.7-4.4s15.3-63.3,15.3-63.3s12.2-36.7,8.6-46
s3.6-65.4,6.5-69.8s3.6-30.2,3.6-30.2L114.9,245.4z"/>
<circle class="st4" cx="67" cy="101.2" r="23"/>
<path class="st2" d="M79.6,130.3c0,0-25.9,0.7-27.3-1.4s-37.4,5-37.4,19.4s20.9,70.5,20.9,70.5s7.9,40.3,5.8,44.6
s79.8-9.3,77.7-16.5s-14.4-23,1.4-36.7s22.3-28,22.3-28l-18.7-49.6c0,0-18.7-2.9-23,0S79.6,130.3,79.6,130.3z"/>
<path class="st2" d="M137.9,185.7l5-3.6c0,0,46.7-48.9,34.5-58.3s-30.2-18-38.8-18.7S122.8,98,122.8,98s-9.3-16.5-16.5-5.8
s-15.1,14.4-5,18c10.1,3.6,16.5,2.2,21.6,5.8s24.5,9.3,15.8,11.5c-4.9,1.2-9.8,2.9-14.4,5l-9.3,16.5L137.9,185.7z"/>
<path class="st4" d="M56.6,307.2c0,0,18.7,27.3,5,25.9C48,331.7,41.5,313,41.5,313L56.6,307.2z"/>
<path class="st2" d="M19.9,144.7l-5,3.6c0,0-16.5,90.6,0,114.4c16.5,23.7,18,22.3,18,22.3s2.9-2.2,4.3,12.2
c1.4,14.4-0.7,20.1,3.6,20.1s23.7-4.3,22.3-7.9s-10.8-24.5-11.5-29.5s-4.3-16.5-5.8-23c-1.4-6.5,6.5-10.1,2.9-23.7
S40.1,195,40.1,190S19.9,144.7,19.9,144.7z"/>
<path class="st5" d="M44.8,80.7c0,7.7,10.6,14,23.7,14s25.2,4.1,25.2-3.6S81.6,66.7,68.5,66.7S44.8,72.9,44.8,80.7z"/>
<path class="st5" d="M102.8,117.6c0,0,1,26.1-24.9,24.6s3.5-22.3,3.5-22.3L102.8,117.6z"/>
<rect y="567.4" class="st8" width="702.9" height="2.2"/>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

246
index.htm Normal file
View File

@ -0,0 +1,246 @@
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Basic.css - Classless CSS Starter File</title>
<meta name="author" content="Vladimir Carrer">
<link rel="stylesheet" href="css/basic.css" type="text/css">
<style>
main,footer {
margin: 0 auto;
width: 60%;
text-align: left;
padding: 0 20px;
}
aside {
color: #fff;
background-color: var(--c1);
padding: 15px;
margin: 10px 8px 10px 8px;
text-align: center;
}
</style>
</head>
<body>
<main>
<br />
<h1><a href="https://github.com/vladocar/Basic.css">Basic.css - Classless CSS Starter File</a></h1>
<h2>
</h2>
<section>
<article>
<img src="img/undraw_proud_coder_7ain.svg" />
<h4>Lightweight</h4>
<p>1 Kb minified and gzipped. No CSS classes. </p>
</article>
<article>
<img src="img/font.svg" />
<h4>Basic Typography</h4>
<p>Essential typography with the System Font Stack.</p>
</article>
<article>
<img src="img/undraw_forms_78yw.svg" />
<h4>Basic Forms</h4>
<p>Vivamus non leo magna, quis imperdiet risus. </p>
</article>
</section>
<section>
<article>
<img src="img/undraw_color_palette_yamk.svg" />
<h4>Dark Theme</h4>
<p>Easy to customize color palette and dark theme. </p>
</article>
<article>
<img src="img/grid.svg" />
<h4>Flex Grid without classes</h4>
<p>By putting <b>aside</b> tag inside <b>selection</b> tag container you can make infinite flex grid.
</p>
</article>
<article>
<img src="img/undraw_design_notes_8dmv.svg" />
<h4>Round corners</h4>
<p>By default round corners --rc are set to 8px. Set --rc to 0px if you don't like rounded corners.</p>
</article>
</section>
<h3>Basic Typography</h3>
<p>
Suspendisse rhoncus, est ac sollicitudin viverra, leo orci sagittis massa, sed condimentum <acronym
title="">acronym text</acronym> est tortor a lectus. Curabitur porta feugiat ullamcorper. Integer
lacinia mi id odio faucibus eget tincidunt nisl iaculis. Nam adipiscing hendrerit turpis, et porttitor felis
sollicitudin et. Donec dictum massa ac neque accumsan tempor. Cras aliquam, ipsum sit amet laoreet
hendrerit, purus <del>deleted text</del> sapien convallis dui, et porta leo ipsum ac nunc. Nullam ornare
porta dui ac semper. Cras aliquam laoreet hendrerit. Quisque vulputate dolor eget mi porta vel porta nisl
pretium. Vivamus non leo magna, quis imperdiet risus. Morbi tempor risus placerat tellus imperdiet
fringilla.
</p>
<blockquote>
<p> Why I am not one who was born in the possession of knowledge; I am & one who is fond of antiquity, and
earnest in seeking it there.</p>
</blockquote>
<p><cite><a href="/">Confucius, The Confucian Analects</a></cite>, (551 BC - 479 BC)</p>
<h3>Ordered lists</h3>
<ol>
<li>Unus</li>
<li>Duo</li>
<li>Tres</li>
<li>Quattuor</li>
</ol>
<h4>Unordered lists</h4>
<ul>
<li>Lorem ipsum dolor sit amet</li>
<li>Consectetur adipisicing elit</li>
<li>Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</li>
<li>Ut enim ad minim veniam</li>
</ul>
<p>Lorem ipsum dolor sit amet,consectetur adipisicing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua.</p>
<pre>body { font:0.8125em/1.618 Arial, sans-serif;
background-color:#fff;
color:#111;
}</pre>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
anim id est laborum.</p>
<h4>Tables</h4>
<table summary="Jimi Hendrix albums">
<caption>Jimi Hendrix - albums</caption>
<thead>
<tr>
<th>Album</th>
<th>Year</th>
<th>Price</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Album</td>
<td>Year</td>
<td>Price</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Are You Experienced </td>
<td>1967</td>
<td>$10.00</td>
</tr>
<tr>
<td>Axis: Bold as Love</td>
<td>1967</td>
<td>$12.00</td>
</tr>
<tr>
<td>Electric Ladyland</td>
<td>1968</td>
<td>$10.00</td>
</tr>
<tr>
<td>Band of Gypsys</td>
<td>1970</td>
<td>$12.00</td>
</tr>
<tbody>
</table>
<h3>Infinity Grid</h3>
<section>
<aside> 1 </aside>
<aside> 2 </aside>
<aside> 3 </aside>
</section>
<section>
<aside>1</aside>
<aside>2</aside>
<aside>3</aside>
<aside>4</aside>
</section>
<section>
<aside> 1 </aside>
<aside> 2 </aside>
<aside> 3 </aside>
<aside> 4 </aside>
<aside> 5 </aside>
</section>
<h3>Forms</h3>
<form>
<p>
<label for="Name">Name:</label><br />
<input id="Name" type="text" name="Name" />
</p>
<p>
<label for="City">City:</label><br />
<input id="City" type="text" name="City" />
</p>
<p>
<label for="Email">Email:</label><br />
<input id="Email" type="text" name="Email" />
</p>
<p>
<label for="Message">Message:</label><br />
<textarea id="Message" name="Message"></textarea>
</p>
<p>
<label>Lorem ipsum</label><br />
<select id="lorem" name="Lorem ipsum">
<option selected="selected" value="1">Lorem ipsum</option>
<option value="2">dolor sit amet</option>
<option value="3"> consectetuer adipiscing</option>
<option value="4">vitae diam</option>
<option value="5">Vestibulum ornare</option>
</select>
</p>
<p>
<label>Number:</label><br />
<input type="radio" name="radioSet" value="uno" />Uno<br />
<input type="radio" name="radioSet" value="due" />Due<br />
<input type="radio" name="radioSet" value="tre" />Tre<br />
</p>
<p>
<button>Button </button>
<button>Hello World</button>
</p>
</form>
<p><b><a href="https://github.com/vladocar/Basic.css">Download the project on Github</a></b></p>
<hr>
</main>
<footer>
<p>Made with ❤️ by <a href="https://github.com/vladocar">@vladocar</a> </p>
</footer>
</body>
</html>

22
package.json Normal file
View File

@ -0,0 +1,22 @@
{
"name": "basiccss",
"version": "1.0.0",
"description": "Classless CSS Starter File",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vladocar/Basic.css.git"
},
"keywords": [
"basic.css"
],
"author": "Vladimir Carrer <vladocar@gmail.com> (http://www.vcarrer.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vladocar/Basic.css/issues"
},
"homepage": "https://github.com/vladocar/Basic.css#readme"
}