Beef up Quick Install
This commit is contained in:
parent
fa79f75072
commit
b5b09d0ca2
@ -120,3 +120,180 @@ a:hover {
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #453A62;
|
background-color: #453A62;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
input[type="checkbox"] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap-collabsible {
|
||||||
|
margin: 1.2rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.lbl-toggle {
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toggle:checked + .lbl-toggle::before {
|
||||||
|
transform: rotate(90deg) translateX(-3px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.collapsible-content {
|
||||||
|
margin-top: 5px;
|
||||||
|
max-height: 0px;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: max-height 0.25s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toggle:checked + .lbl-toggle ~ .collapsible-content {
|
||||||
|
max-height: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toggle:checked + .lbl-toggle {
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.collapsible-content .content-inner {
|
||||||
|
background: rgba(0, 105, 255, 0.2);
|
||||||
|
border-bottom: 1px solid rgba(0, 105, 255, 0.45);
|
||||||
|
border-bottom-left-radius: 7px;
|
||||||
|
border-bottom-right-radius: 7px;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.collapsible-content p {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.platform-name img {
|
||||||
|
max-width: 40px;
|
||||||
|
max-height: 30px;
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
max-width: 100%;
|
||||||
|
padding: unset;
|
||||||
|
line-height: unset;
|
||||||
|
background-color: unset;
|
||||||
|
border: unset;
|
||||||
|
border-radius: unset;
|
||||||
|
margin: 20px auto 0px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.expander div {
|
||||||
|
position: relative;
|
||||||
|
height: 50px;
|
||||||
|
width: 40px;
|
||||||
|
margin: 10px auto 0px auto;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.expander img {
|
||||||
|
position: absolute;
|
||||||
|
width: 40px;
|
||||||
|
display: block;
|
||||||
|
transition: all 400ms ease;
|
||||||
|
|
||||||
|
max-width: 100%;
|
||||||
|
padding: unset;
|
||||||
|
line-height: unset;
|
||||||
|
background-color: unset;
|
||||||
|
border: unset;
|
||||||
|
border-radius: unset;
|
||||||
|
margin: 0px auto 0px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.expander img.expand-2 {
|
||||||
|
top: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.expander img.expand-3 {
|
||||||
|
top: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.expander:hover img.expand-2 {transform: translateY(5px);}
|
||||||
|
.expander:hover img.expand-3 {transform: translateY(10px);}
|
||||||
|
|
||||||
|
div.platforms {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.platform {
|
||||||
|
margin: 0px 20px 0px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#linux-link, #mac-link, #freebsd-link, #windows-link, #wsl-link {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#linux-link:target, #mac-link:target, #freebsd-link:target, #windows-link:target, #wsl-link:target {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
:target:before {
|
||||||
|
content:"";
|
||||||
|
display:block;
|
||||||
|
height:150px; /* fixed header height*/
|
||||||
|
margin:-150px 0 0; /* negative fixed header height */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.command-button {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.command-button > pre {
|
||||||
|
background-color: #515151;
|
||||||
|
color: white;
|
||||||
|
margin: auto;
|
||||||
|
margin-top: 0px;
|
||||||
|
padding-top: 1rem;
|
||||||
|
padding-bottom: 1rem;
|
||||||
|
padding-right: 1rem;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 3px;
|
||||||
|
box-shadow: inset 0px 0px 20px 0px #333333;
|
||||||
|
font-size: 1em;
|
||||||
|
width: 55rem;
|
||||||
|
overflow: auto;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ghcup-command:before {
|
||||||
|
color: #999;
|
||||||
|
content: " $ ";
|
||||||
|
}
|
||||||
|
|
||||||
|
div.command-button {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.command-button button {
|
||||||
|
color: white;
|
||||||
|
/* border: none; */
|
||||||
|
background-color: rgb(242, 242, 242);
|
||||||
|
border-width: 2px;
|
||||||
|
border-style: solid;
|
||||||
|
border-radius: 3px;
|
||||||
|
|
||||||
|
margin-left: 0.5rem;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-top: 25px;
|
||||||
|
margin-bottom: 25px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.command-button button:hover {
|
||||||
|
background: rgb(232, 232, 232);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.command-button button:focus {
|
||||||
|
background: rgb(222, 222, 222);
|
||||||
|
}
|
||||||
|
65
docs/expand-piece.svg
Normal file
65
docs/expand-piece.svg
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
<?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="158.21451"
|
||||||
|
height="33.036404"
|
||||||
|
id="svg2997"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.48.5 r10040"
|
||||||
|
sodipodi:docname="expand-piece.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2999" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="11.2"
|
||||||
|
inkscape:cx="74.534935"
|
||||||
|
inkscape:cy="-6.6497355"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-width="2560"
|
||||||
|
inkscape:window-height="1374"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata3002">
|
||||||
|
<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 />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-218.01937,-324.40519)">
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#524a67;stroke-width:13;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||||
|
d="m 224.64286,330.93361 74.64102,20 70.35898,-18.85263"
|
||||||
|
id="path2994"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
104
docs/index.md
104
docs/index.md
@ -22,11 +22,111 @@ GHCup makes it easy to install specific versions of GHC on GNU/Linux,
|
|||||||
macOS (aka Darwin), FreeBSD and Windows and can also bootstrap a fresh [Haskell developer environment](./install/#supported-tools) from scratch.
|
macOS (aka Darwin), FreeBSD and Windows and can also bootstrap a fresh [Haskell developer environment](./install/#supported-tools) from scratch.
|
||||||
It follows the unix UNIX philosophy of [do one thing and do it well](https://en.wikipedia.org/wiki/Unix_philosophy#Do_One_Thing_and_Do_It_Well). Similar in scope to [rustup](https://github.com/rust-lang-nursery/rustup.rs), [pyenv](https://github.com/pyenv/pyenv) and [jenv](http://www.jenv.be).
|
It follows the unix UNIX philosophy of [do one thing and do it well](https://en.wikipedia.org/wiki/Unix_philosophy#Do_One_Thing_and_Do_It_Well). Similar in scope to [rustup](https://github.com/rust-lang-nursery/rustup.rs), [pyenv](https://github.com/pyenv/pyenv) and [jenv](http://www.jenv.be).
|
||||||
|
|
||||||
<div class="text-center">
|
<div class="wrap-collabsible text-center"> <input id="collapsible" class="toggle" type="checkbox">
|
||||||
<a href="https://www.haskell.org/ghcup/" class="btn btn-primary" role="button">Quick Install</a>
|
<label for="collapsible" class="lbl-toggle btn btn-primary">Quick Install</label>
|
||||||
<a href="install/" class="btn btn-primary" role="button">Getting Started</a>
|
<a href="install/" class="btn btn-primary" role="button">Getting Started</a>
|
||||||
<a href="guide/" class="btn btn-primary" role="button">User Guide</a>
|
<a href="guide/" class="btn btn-primary" role="button">User Guide</a>
|
||||||
<a href="https://gitlab.haskell.org/haskell/ghcup-hs/-/issues" class="btn btn-primary" role="button">Issue tracker</a>
|
<a href="https://gitlab.haskell.org/haskell/ghcup-hs/-/issues" class="btn btn-primary" role="button">Issue tracker</a>
|
||||||
|
<div class="collapsible-content">
|
||||||
|
<div class="content-inner">
|
||||||
|
<h2>Select your platform</h3>
|
||||||
|
<div class="platforms">
|
||||||
|
<div class="platform">
|
||||||
|
<div class="platform-name"><img src="os-linux.svg" alt="Linux logo"> <h3>Linux</h3></div>
|
||||||
|
<a class="expander" href="#linux-link">
|
||||||
|
<div>
|
||||||
|
<img src="expand-piece.svg" class="expand-1">
|
||||||
|
<img src="expand-piece.svg" class="expand-2">
|
||||||
|
<img src="expand-piece.svg" class="expand-3">
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="platform">
|
||||||
|
<div class="platform-name"><img src="os-osx.svg" alt="Mac logo"> <h3>Mac OS X</h3></div>
|
||||||
|
<a class="expander" href="#mac-link">
|
||||||
|
<div>
|
||||||
|
<img src="expand-piece.svg" class="expand-1">
|
||||||
|
<img src="expand-piece.svg" class="expand-2">
|
||||||
|
<img src="expand-piece.svg" class="expand-3">
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="platform">
|
||||||
|
<div class="platform-name"><img src="os-freebsd.svg" alt="FreeBSD logo" style="fill: black;"> <h3>FreeBSD</h3></div>
|
||||||
|
<a class="expander" href="#freebsd-link">
|
||||||
|
<div>
|
||||||
|
<img src="expand-piece.svg" class="expand-1">
|
||||||
|
<img src="expand-piece.svg" class="expand-2">
|
||||||
|
<img src="expand-piece.svg" class="expand-3">
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="platform">
|
||||||
|
<div class="platform-name"><img src="os-windows.svg" alt="Windows logo"> <h3>Windows</h3></div>
|
||||||
|
<a class="expander" href="#windows-link">
|
||||||
|
<div>
|
||||||
|
<img src="expand-piece.svg" class="expand-1">
|
||||||
|
<img src="expand-piece.svg" class="expand-2">
|
||||||
|
<img src="expand-piece.svg" class="expand-3">
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="platform">
|
||||||
|
<div class="platform-name"><img src="os-windows.svg" alt="Windows logo"> <h3>WSL2</h3></div>
|
||||||
|
<a class="expander" href="#wsl-link">
|
||||||
|
<div>
|
||||||
|
<img src="expand-piece.svg" class="expand-1">
|
||||||
|
<img src="expand-piece.svg" class="expand-2">
|
||||||
|
<img src="expand-piece.svg" class="expand-3">
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="linux-link">
|
||||||
|
<hr/>
|
||||||
|
<h4>On Linux, run the following in your terminal (as a user other than root), then follow the onscreen instructions:</h4>
|
||||||
|
<div class="command-button">
|
||||||
|
<pre><span class="ghcup-command">curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh</span></pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="mac-link">
|
||||||
|
<hr/>
|
||||||
|
<h4>On Mac, run the following in your terminal (as a user other than root), then follow the onscreen instructions:</h4>
|
||||||
|
<div class="command-button">
|
||||||
|
<pre><span class="ghcup-command">curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh</span></pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="freebsd-link">
|
||||||
|
<hr/>
|
||||||
|
<h4>On FreeBSD, run the following in your terminal (as a user other than root), then follow the onscreen instructions:</h4>
|
||||||
|
<div class="command-button">
|
||||||
|
<pre><span class="ghcup-command">curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh</span></pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="windows-link" class="anchor">
|
||||||
|
<hr/>
|
||||||
|
<h4>On Windows, run the following in a powershell session (as a non-admin user), then follow the onscreen instructions:</h4>
|
||||||
|
<div class="command-button">
|
||||||
|
<pre><span class="ghcup-command">Set-ExecutionPolicy Bypass -Scope Process -Force;[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072;Invoke-Command -ScriptBlock ([ScriptBlock]::Create((Invoke-WebRequest https://www.haskell.org/ghcup/sh/bootstrap-haskell.ps1 -UseBasicParsing))) -ArgumentList $true</span></pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="wsl-link">
|
||||||
|
<hr/>
|
||||||
|
<h4>On WSL2, run the following in your terminal (as a user other than root), then follow the onscreen instructions:</h4>
|
||||||
|
<div class="command-button">
|
||||||
|
<pre><span class="ghcup-command">curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh</span></pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
7
docs/os-freebsd.svg
Normal file
7
docs/os-freebsd.svg
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Svg Vector Icons : http://www.onlinewebfonts.com/icon -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
|
||||||
|
<metadata> Svg Vector Icons : http://www.onlinewebfonts.com/icon </metadata>
|
||||||
|
<g><path d="M81.5,647.7C11,409.2,148.6,158.9,388.6,88.9c106.5-31.1,215.5-21.4,309.8,19.8c-4.9,6.9-9.5,14-13.7,21c-46.1-10.7-81.4,3.8-90.2,43.3c-13.9,62.1,42.9,162.8,126.6,224.7c83.7,61.9,162.9,61.7,176.8-0.4c3.5-15.9,2.5-34.4-2.5-54.1c9.7-5.8,19.2-12.3,28.6-19.3c10.9,22.2,20,45.6,27.3,70.1c70.5,238.4-67.1,488.8-307.1,558.8C403.9,1022.8,151.9,886.1,81.5,647.7L81.5,647.7z M667.1,204.7c0.4-0.4,0.7-0.7,1-1.1C776.9,92.3,912.3,26.4,970.4,56.4c58.1,30.1-25.5,176.7-91.7,256.3c-20.1,20.6-41.2,39.7-62.5,56.8C742.2,343.2,686.1,282.8,667.1,204.7L667.1,204.7z M11,108.5C0.7,28.8,68.9,4.9,163.2,55.2c22.4,11.9,44.3,27,64.7,44.1c-56.2,38.6-104.5,90.4-139.5,154C46.4,206.7,16.9,153.5,11,108.5L11,108.5z"/></g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
69
docs/os-linux.svg
Normal file
69
docs/os-linux.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 14 KiB |
143
docs/os-osx.svg
Normal file
143
docs/os-osx.svg
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
<svg
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
version="1.0"
|
||||||
|
width="800"
|
||||||
|
height="950"
|
||||||
|
id="svg2">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3784">
|
||||||
|
<stop
|
||||||
|
id="stop3786"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3788"
|
||||||
|
style="stop-color:#888888;stop-opacity:1"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3776">
|
||||||
|
<stop
|
||||||
|
id="stop3778"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3780"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3754">
|
||||||
|
<stop
|
||||||
|
id="stop3756"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3758"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3734">
|
||||||
|
<stop
|
||||||
|
id="stop3736"
|
||||||
|
style="stop-color:#6c6d6f;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3738"
|
||||||
|
style="stop-color:#010101;stop-opacity:1"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
x1="581.96649"
|
||||||
|
y1="409.16061"
|
||||||
|
x2="544.40381"
|
||||||
|
y2="311.21347"
|
||||||
|
id="linearGradient3760"
|
||||||
|
xlink:href="#linearGradient3754"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
x1="591.31964"
|
||||||
|
y1="593.75946"
|
||||||
|
x2="587.03571"
|
||||||
|
y2="434.31064"
|
||||||
|
id="linearGradient3764"
|
||||||
|
xlink:href="#linearGradient3734"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
x1="591.31964"
|
||||||
|
y1="593.75946"
|
||||||
|
x2="587.03571"
|
||||||
|
y2="434.31064"
|
||||||
|
id="linearGradient3773"
|
||||||
|
xlink:href="#linearGradient3734"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(-2.7999999e-6,-5.0000001e-6)" />
|
||||||
|
<linearGradient
|
||||||
|
x1="592.88464"
|
||||||
|
y1="409.21036"
|
||||||
|
x2="572.06653"
|
||||||
|
y2="317.52728"
|
||||||
|
id="linearGradient3782"
|
||||||
|
xlink:href="#linearGradient3776"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(4.1074798,0,0,4.1074798,-2012.1445,-1474.6712)" />
|
||||||
|
<linearGradient
|
||||||
|
x1="621.8504"
|
||||||
|
y1="527.79108"
|
||||||
|
x2="575.15466"
|
||||||
|
y2="358.30902"
|
||||||
|
id="linearGradient3790"
|
||||||
|
xlink:href="#linearGradient3784"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
x1="591.31964"
|
||||||
|
y1="593.75946"
|
||||||
|
x2="587.03571"
|
||||||
|
y2="434.31064"
|
||||||
|
id="linearGradient3796"
|
||||||
|
xlink:href="#linearGradient3734"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
<linearGradient
|
||||||
|
x1="591.31964"
|
||||||
|
y1="593.75946"
|
||||||
|
x2="587.03571"
|
||||||
|
y2="434.31064"
|
||||||
|
id="linearGradient3813"
|
||||||
|
xlink:href="#linearGradient3734"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(4.1074798,0,0,4.1074798,-2012.1445,-1474.6712)" />
|
||||||
|
<linearGradient
|
||||||
|
x1="621.8504"
|
||||||
|
y1="527.79108"
|
||||||
|
x2="575.15466"
|
||||||
|
y2="358.30902"
|
||||||
|
id="linearGradient3815"
|
||||||
|
xlink:href="#linearGradient3784"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(4.1074798,0,0,4.1074798,-2012.1445,-1474.6712)" />
|
||||||
|
</defs>
|
||||||
|
<path
|
||||||
|
d="M -1763.2143,1058.9693 L -1763.2143,950.04075 L -1724.2857,1040.5765 L -1685.3571,950.04075 L -1685.3571,1058.9693"
|
||||||
|
id="path3199"
|
||||||
|
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M 9.2490229,7.8722656 C 9.0747426,10.220019 9.5551534,12.587324 10.789328,14.675279 L 283.03823,474.32796 L 15.153526,926.66418 C 13.0537,930.26743 13.090092,934.72063 15.153526,938.34483 C 17.216918,941.9691 20.995183,944.21594 25.165508,944.24933 L 230.41114,944.24933 C 234.53312,944.22267 238.33677,942.02829 240.42312,938.47319 L 399.07452,670.58848 L 557.72593,938.47319 C 559.81228,942.02829 563.61593,944.22267 567.73791,944.24933 L 773.1119,944.24933 C 777.28223,944.21594 781.06049,941.96906 783.12389,938.34483 C 785.18744,934.72067 785.22371,930.26743 783.12389,926.66418 L 515.23918,474.32796 L 787.35972,14.675279 C 788.58462,12.5734 788.96226,10.218047 788.77167,7.8722656 L 559.13787,7.8722656 L 399.07452,278.19578 L 239.01118,7.8722656 L 9.2490229,7.8722656 z"
|
||||||
|
id="path3762"
|
||||||
|
style="fill:url(#linearGradient3815);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M 20.80131,8.7707768 L 296.51589,474.32796 L 25.165508,932.56868 L 230.41114,932.56868 L 399.07452,647.74063 L 567.73791,932.56868 L 773.1119,932.56868 L 501.76152,474.32796 L 777.34774,8.7707768 L 572.10211,8.7707768 L 399.07452,301.04364 L 226.04694,8.7707768 L 20.80131,8.7707768 z"
|
||||||
|
id="path3705"
|
||||||
|
style="fill:url(#linearGradient3813);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M 20.80131,8.7707768 L 201.9155,314.64967 C 251.61658,285.27827 303.41256,257.12462 357.61466,230.95977 L 226.04694,8.7707768 L 20.80131,8.7707768 z M 572.10211,8.7707768 L 470.05691,181.15657 C 548.90117,149.37671 632.73447,122.22713 722.53856,101.31743 L 777.34774,8.7707768 L 572.10211,8.7707768 z"
|
||||||
|
id="path3771"
|
||||||
|
style="opacity:0.47619048;fill:url(#linearGradient3782);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</svg>
|
After Width: | Height: | Size: 6.0 KiB |
18
docs/os-windows.svg
Normal file
18
docs/os-windows.svg
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) by Marsupilami -->
|
||||||
|
<svg
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
version="1.1"
|
||||||
|
width="766"
|
||||||
|
height="768"
|
||||||
|
viewBox="-2.61977004 -2.61977004 92.56520808 92.83416708"
|
||||||
|
id="svg8375">
|
||||||
|
<defs
|
||||||
|
id="defs8377" />
|
||||||
|
<path
|
||||||
|
d="M 0,12.40183 35.68737,7.5416 35.70297,41.96435 0.03321,42.16748 z m 35.67037,33.52906 0.0277,34.45332 -35.66989,-4.9041 -0.002,-29.77972 z M 39.99644,6.90595 87.31462,0 l 0,41.527 -47.31818,0.37565 z M 87.32567,46.25471 87.31457,87.59463 39.9964,80.91625 39.9301,46.17767 z"
|
||||||
|
id="path13" />
|
||||||
|
</svg>
|
||||||
|
<!-- version: 20110311, original size: 87.325668 87.594627, border: 3% -->
|
After Width: | Height: | Size: 861 B |
Loading…
Reference in New Issue
Block a user