upload new page
4
css/layout.css
Normal file
@ -0,0 +1,4 @@
|
||||
#call-to-action .positioner {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
}
|
320
css/style.css
Normal file
@ -0,0 +1,320 @@
|
||||
/** typography **/
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
|
||||
}
|
||||
|
||||
.monospace {
|
||||
font-family: 'Anonymous Pro', monospace;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/** COLORS **/
|
||||
.text-bg-light {
|
||||
color: #584b4f;
|
||||
}
|
||||
|
||||
.text-bg-dark {
|
||||
color: #efeae1;
|
||||
}
|
||||
|
||||
.text-primary {
|
||||
color: #991f16 !important;
|
||||
}
|
||||
|
||||
.btn-primary,
|
||||
.btn-primary:visited {
|
||||
text-decoration: none;
|
||||
background-color: #BA3525;
|
||||
border: #BA3525 3px solid;
|
||||
color: #efeae1;
|
||||
box-shadow: 4px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.btn-primary:focus {
|
||||
text-decoration: none;
|
||||
background-color: #BA3525;
|
||||
border: #e34b30 3px solid;
|
||||
color: #efeae1;
|
||||
box-shadow: 4px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
text-decoration: none;
|
||||
background-color: #c43627;
|
||||
border: #c43627 3px solid;
|
||||
color: #efeae1;
|
||||
box-shadow: 4px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.btn-primary:active {
|
||||
text-decoration: none;
|
||||
background: #b33223 !important;
|
||||
border: #b33223 3px solid !important;
|
||||
box-shadow: none !important;
|
||||
transform: translateY(2px);
|
||||
}
|
||||
|
||||
.text-secondary {
|
||||
color: #3e8b8a;
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background-color: #3e8b8a;
|
||||
border-color: #3e8b8a;
|
||||
color: #efeae1;
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background-color: #8abaad;
|
||||
border-color: #8abaad;
|
||||
color: #efeae1;
|
||||
}
|
||||
|
||||
.text-tertiary {
|
||||
color: #8abaad;
|
||||
}
|
||||
|
||||
.btn-tertiary {
|
||||
background-color: #8abaad;
|
||||
}
|
||||
|
||||
a,
|
||||
a:visited {
|
||||
color: #8abaad;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:active {
|
||||
color: #8abaad;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.lead {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.page-section {
|
||||
padding-top: 3em;
|
||||
padding-bottom: 3em;
|
||||
margin-bottom: 0;
|
||||
background-color: #fff;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
background-color: #efeae1;
|
||||
}
|
||||
|
||||
.transparent {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.red-circle {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
border-radius: 50%;
|
||||
background-color: #e24c38;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.red-circle>* {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translateY(-50%) translateX(-50%);
|
||||
}
|
||||
|
||||
.red-circle>.fa-cubes {
|
||||
left: 52% !important;
|
||||
}
|
||||
|
||||
.red-circle>.fa-code {
|
||||
left: 51.2% !important;
|
||||
}
|
||||
|
||||
.red-circle>.fa-server {
|
||||
top: 52% !important;
|
||||
}
|
||||
|
||||
.red-circle>.fa-desktop {
|
||||
top: 53% !important;
|
||||
left: 51% !important;
|
||||
}
|
||||
|
||||
.cowboys-bg {
|
||||
/* Create the parallax scrolling effect */
|
||||
background: url('../img/background-color.svg') no-repeat fixed center;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.showdown-brand,
|
||||
.showdown-brand:hover,
|
||||
.showdown-brand:active {
|
||||
text-decoration: underline;
|
||||
text-decoration-style: dashed;
|
||||
text-decoration-color: #3e8b8a;
|
||||
text-underline-position: under;
|
||||
font-family: 'Anonymous Pro', monospace;
|
||||
}
|
||||
|
||||
.blackboard {
|
||||
background-color: #313440;
|
||||
color: #efeae1;
|
||||
}
|
||||
|
||||
#description pre>code {
|
||||
padding: 1.5em !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#mainNavigation {
|
||||
background-color: #584b4f;
|
||||
}
|
||||
|
||||
#mainNavigation,
|
||||
#mainNavigation a,
|
||||
#mainNavigation a:visited,
|
||||
#mainNavigation .showdown-brand,
|
||||
#mainNavigation .navbar-toggler {
|
||||
color: #efeae1;
|
||||
}
|
||||
|
||||
#mainNavigation a:hover {
|
||||
color: #8abaad;
|
||||
}
|
||||
|
||||
#mainNavigation a.active {
|
||||
color: #a29f99;
|
||||
}
|
||||
|
||||
#mainNavigation .navbar-toggler {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#mainNavigation .navbar-toggler:hover {
|
||||
color: #8abaad;
|
||||
}
|
||||
|
||||
#call-to-action {
|
||||
background-color: transparent;
|
||||
color: #584b4f;
|
||||
min-height: calc(100vh - 40px);
|
||||
}
|
||||
|
||||
#call-to-action .positioner {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#call-to-action .download-button {
|
||||
height: auto;
|
||||
margin-top: 10px;
|
||||
padding: 0.8em 1.2em;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#call-to-action .download-links a {
|
||||
color: #584b4f;
|
||||
}
|
||||
|
||||
#call-to-action .positioner .blackboard {
|
||||
border-radius: 0.4em;
|
||||
margin-top: 3em;
|
||||
padding: 1.5em;
|
||||
}
|
||||
#call-to-action .positioner .blackboard p {
|
||||
font-size: 1.2em;
|
||||
line-height: 2em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.page-section h1 {
|
||||
/*margin-top: 1em;*/
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
#why-showdown .col-md-4 {
|
||||
text-align: center;
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
|
||||
#who-uses-showdown img {
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
#who-uses-showdown .col-md-3:not(:first-child) {
|
||||
margin-top: 3em;
|
||||
}
|
||||
}
|
||||
|
||||
#donate p {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
#footer .links a:hover {
|
||||
color: #3e8b8a;
|
||||
}
|
||||
|
||||
#footer .copyright {
|
||||
text-align: center;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
|
||||
/** downloads page **/
|
||||
#releases-details section {
|
||||
margin-bottom: 3em;
|
||||
}
|
||||
|
||||
#releases-details h2 {
|
||||
padding-bottom: 0.3em;
|
||||
margin-bottom: 0.7em;
|
||||
border-bottom: 1px solid #8abaad;
|
||||
}
|
||||
|
||||
#releases-list ul {
|
||||
border-right: 1px solid #8abaad;
|
||||
}
|
||||
|
||||
#releases-list ul li:hover {
|
||||
background-color: #8abaad;
|
||||
}
|
||||
|
||||
#releases-list ul li:hover a,
|
||||
#releases-list ul li a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
h3[id$="breaking-changes"] {
|
||||
color: #BA3525;
|
||||
}
|
||||
|
||||
|
||||
/** highlightjs override **/
|
||||
.hljs {
|
||||
padding-top: 1em;
|
||||
padding-bottom: 1em;
|
||||
background-color: #313440;
|
||||
}
|
||||
.hljs .hljs-ln-code{
|
||||
padding-left: 1.5em;
|
||||
padding-right: 2em;
|
||||
}
|
||||
.hljs .hljs-ln-numbers {
|
||||
padding-left: 0.5em;
|
||||
}
|
6
html/documentation.html
Normal file
@ -0,0 +1,6 @@
|
||||
<section id="documentation" class="page-section text-bg-light">
|
||||
<div class="container">
|
||||
<h1>Documentation</h1>
|
||||
<p class="lead">Coming soon. For now, check the <a href="https://github.com/showdownjs/showdown/wiki">github wiki</a></p>
|
||||
</div>
|
||||
</section>
|
87
html/main.html
Normal file
@ -0,0 +1,87 @@
|
||||
<section id="description" class="page-section jumbotron text-bg-light">
|
||||
<div class="container">
|
||||
<h1>What is <span class="showdown-brand">Show<span class="text-secondary">down</span></span>?</h1>
|
||||
<div class="row">
|
||||
<div class="col-sm">
|
||||
<p class="lead"><span class="showdown-brand">Showdown</span> is a Javascript Markdown to HTML converter, based on the original works by John Gruber.
|
||||
<span class="showdown-brand">Showdown</span> can be used client side (in the browser) or server side (with nodejs).</p>
|
||||
</div>
|
||||
<div class="col-sm">
|
||||
<pre><code class="javascript">var converter = new showdown.Converter();
|
||||
var md = '[**Showdown**](http://www.showdownjs.com) is *great*\n' +
|
||||
'because:\n\n' +
|
||||
' - it\'s easy to use\n' +
|
||||
' - it\'s extensible\n' +
|
||||
' - works in the server and in the browser';
|
||||
var html = converter.makeHtml(md);</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="who-uses-showdown" class="page-section text-bg-light">
|
||||
<div class="container">
|
||||
<h1>Who uses <span class="showdown-brand">Show<span class="text-secondary">down</span></span>?</h1>
|
||||
<div class="row">
|
||||
<div class="col-md-3"><img alt="meteor" class="img-fluid" src="img/meteor-logo.svg"></div>
|
||||
<div class="col-md-3"><img alt="google cloud platform" class="img-fluid" src="img/gcp-logo.svg"></div>
|
||||
<div class="col-md-3"><img alt="ghost" class="img-fluid" src="img/ghost.svg"></div>
|
||||
<div class="col-md-3"><img alt="stackoverflow" class="img-fluid" src="img/se.png"></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col"><a href="https://www.npmjs.com/browse/depended/showdown">and some others...</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="why-showdown" class="page-section text-bg-light highlight">
|
||||
<div class="container">
|
||||
<h1>Why <span class="showdown-brand">Show<span class="text-secondary">down</span></span>?</h1>
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<div class="red-circle"><i class="fa fa-2x fa-fw fa-thumbs-o-up" aria-hidden="true"></i></div>
|
||||
<h2>Easy to use</h2>
|
||||
<p>No hard dependencies or special installation instructions! Just download it (or use a CDN) and include it in your file.</p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="red-circle"><i class="fa fa-2x fa-fw fa-cubes" aria-hidden="true"></i></div>
|
||||
<h2>Full-featured</h2>
|
||||
<p>Out of the box, supports a number of popular markdown flavors like <a href="https://daringfireball.net/projects/markdown/">"vanilla"</a>,
|
||||
<a href="https://github.github.com/gfm/">GFM</a> or <a href="http://spec.commonmark.org/">commonmark</a>.
|
||||
Extra features like tables, metadata, etc.. can be enabled through options.</p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="red-circle"><i class="fa fa-2x fa-fw fa-server" aria-hidden="true"></i></div>
|
||||
<h2>Cross-platform</h2>
|
||||
<p>Showdown works both in server (nodejs) and client-side (browser). </p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<div class="red-circle"><i class="fa fa-2x fa-fw fa-cogs" aria-hidden="true"></i></div>
|
||||
<h2>Customizable & Extendable</h2>
|
||||
<p>It's easily customizable and extendable, meaning you can add new syntax or modify it's behavior through extensions or options.</p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="red-circle"><i class="fa fa-2x fa-fw fa-desktop" aria-hidden="true"></i></div>
|
||||
<h2>Compatibility</h2>
|
||||
<p>Showdown is compatible with both new and old (such as IE8+ and nodejs 0.12).</p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="red-circle"><i class="fa fa-2x fa-fw fa-code" aria-hidden="true"></i></div>
|
||||
<h2>Plain Javascript</h2>
|
||||
<p>Written in EcmaScript5 means you can use it in your project as is, without the need of transpilers.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="sponsors" class="page-section text-bg-light">
|
||||
<div class="container">
|
||||
<h1>Sponsors</h1>
|
||||
<div class="row">
|
||||
<div class="col-md-3"><img alt="jetbrains" class="img-fluid" src="img/jetbrains.svg"></div>
|
||||
<div class="col-md-3"><img alt="zapier" class="img-fluid" src="img/zapier-logo.png"></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
78
html/releases.html
Normal file
@ -0,0 +1,78 @@
|
||||
<section id="releases" class="page-section text-bg-light">
|
||||
<div class="container">
|
||||
<h1>Releases</h1>
|
||||
<div id="release-spinner">
|
||||
<center>
|
||||
<i class="fa fa-spinner fa-spin fa-3x fa-fw text-primary"></i><br>
|
||||
<span>Loading...</span>
|
||||
</center>
|
||||
</div>
|
||||
<div class="row">
|
||||
<aside id="releases-list" class="col-2">
|
||||
<ul class="nav flex-column"></ul>
|
||||
</aside>
|
||||
<div id="releases-details" class="col-10"></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<script>
|
||||
$.getJSON('https://api.github.com/repos/showdownjs/showdown/releases', function (data) {
|
||||
var converter = new showdown.Converter();
|
||||
converter.setFlavor('github');
|
||||
converter.setOption('simpleLineBreaks', false);
|
||||
|
||||
for (var i = 0; i < data.length; ++i) {
|
||||
var releaseDetails = document.createElement('section');
|
||||
var releaseListItem = document.createElement('li');
|
||||
var header = document.createElement('h2');
|
||||
var body = document.createElement('p');
|
||||
var footer = document.createElement('footer');
|
||||
var id = 'release-' + data[i].tag_name;
|
||||
var listLink = document.createElement('a');
|
||||
|
||||
id = id.replace(/\./g, '-');
|
||||
|
||||
converter.setOption('prefixHeaderId', id + '-');
|
||||
|
||||
header.innerHTML = data[i].name;
|
||||
header.setAttribute('id', id);
|
||||
body.innerHTML = converter.makeHtml(data[i].body);
|
||||
footer.innerHTML =
|
||||
'<a href="' + data[i].zipball_url + '" target="_blank"><i class="fa fa-file-archive-o" aria-hidden="true"></i> Source code <em>(zip)</em></a> ' +
|
||||
'<a href="' + data[i].tarball_url + '" target="_blank"><i class="fa fa-file-archive-o" aria-hidden="true"></i> Source code <em>(tar.gz)</em></a>';
|
||||
|
||||
|
||||
|
||||
$(listLink)
|
||||
.addClass('nav-link')
|
||||
.attr('href', '#' + id)
|
||||
.html(data[i].tag_name)
|
||||
.on('click', (function (trg) {
|
||||
return function () {
|
||||
console.log(trg);
|
||||
event.preventDefault();
|
||||
$('html, body').animate({
|
||||
scrollTop: $(trg).offset().top
|
||||
}, 500);
|
||||
};
|
||||
})('#' + id));
|
||||
|
||||
$(releaseListItem)
|
||||
.addClass('nav-item')
|
||||
.append(listLink);
|
||||
|
||||
$('#releases-list>ul').append(releaseListItem);
|
||||
$(releaseDetails).append(header).append(body).append(footer);
|
||||
$('#releases-details').append(releaseDetails);
|
||||
}
|
||||
|
||||
// run highlightjs
|
||||
$('#releases-details pre>code').each(function(i, block) {
|
||||
hljs.highlightBlock(block);
|
||||
hljs.lineNumbersBlock(block);
|
||||
});
|
||||
|
||||
// remove loading symbol
|
||||
$('#release-spinner').html('');
|
||||
});
|
||||
</script>
|
BIN
images/bg_hr.png
Before Width: | Height: | Size: 78 B |
Before Width: | Height: | Size: 463 B |
Before Width: | Height: | Size: 216 B |
BIN
images/logo.png
Before Width: | Height: | Size: 68 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 14 KiB |
318
img/background-color.svg
Normal file
@ -0,0 +1,318 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
viewBox="0 0 1920 1080"
|
||||
id="svg91"
|
||||
sodipodi:docname="background-color.svg"
|
||||
width="1920"
|
||||
height="1080"
|
||||
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
|
||||
<metadata
|
||||
id="metadata95">
|
||||
<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>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
id="namedview93"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.56569628"
|
||||
inkscape:cx="861.12704"
|
||||
inkscape:cy="527.44532"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg91" />
|
||||
<defs
|
||||
id="defs7">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="g1">
|
||||
<stop
|
||||
style="stop-color:#91d1c4;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4639" />
|
||||
<stop
|
||||
style="stop-color:#a7c799;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4641" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="a"
|
||||
cx="189.28999"
|
||||
cy="67.666"
|
||||
r="25"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(3.2223,0,0,3.2223,60.253961,158.42695)">
|
||||
<stop
|
||||
stop-color="#fff"
|
||||
offset="0"
|
||||
id="stop2" />
|
||||
<stop
|
||||
stop-color="#fff"
|
||||
stop-opacity="0"
|
||||
offset="1"
|
||||
id="stop4" />
|
||||
</radialGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#g1"
|
||||
id="linearGradient4647"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="467.18524"
|
||||
y1="310.40994"
|
||||
x2="465.93292"
|
||||
y2="616.22778"
|
||||
gradientTransform="matrix(1.6910341,0,0,2.4729077,55.823832,-700.45696)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#a"
|
||||
id="radialGradient4663"
|
||||
cx="670.203"
|
||||
cy="376.4671"
|
||||
fx="670.203"
|
||||
fy="376.4671"
|
||||
r="80.557503"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(969.60158,117.55425)" />
|
||||
</defs>
|
||||
<g
|
||||
transform="translate(80.832,-63.259995)"
|
||||
id="g89">
|
||||
<rect
|
||||
x="-80.832001"
|
||||
y="63.39954"
|
||||
width="1920"
|
||||
height="759.40527"
|
||||
id="rect9"
|
||||
style="fill:url(#linearGradient4647);fill-opacity:1;stroke-width:2.04493785"
|
||||
ry="0" />
|
||||
<path
|
||||
d="m -80.832,767.55742 317.15,-9.163 127.33,-13.88173 60.609,23.04473 173.23733,-55.63008 615.53367,43.57507 629.6755,-11.87508 0.2724,403.62697 -1923.8089,-3.7806 z"
|
||||
id="path11"
|
||||
style="fill:#3e8b8a;fill-opacity:1;stroke-width:0.8443386"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<path
|
||||
d="m -58.954,879.18411 0.53841,-0.19014 3.3314,0.12278 1.337,0.24451 0.93909,-0.20713 5.3697,-0.37226 7.1182,-1.1346 -0.58509,-0.0384 1.8202,-0.46756 -1.4894,0.20068 3.6389,-0.79376 4.5109,-0.64854 0.6191,0.14107 2.1314,-0.22423 0.05611,0.009 2.4631,0.0666 14.007,0.70393 12.09,-1.9588 21.286,-2.6535 13.711,-3.024 31.345,-5.0803 -5.5679,-0.99471 12.872,-2.3675 -0.73719,-0.47814 -14.872,2.3556 -0.11223,-0.0176 13.094,-2.1204 8.3683,-1.7267 -0.0303,-0.0136 39.066,-6.4747 -2.7058,-0.36124 5.2366,-0.62353 12.024,-0.99165 8.034,-0.70595 14.297,-2.4086 -16.463,-1.304 -9.1848,0.46224 -13.807,3.5843 c -1.8299,0.40406 -3.7536,0.85402 -5.6345,1.2427 l -3.0309,-0.40323 -30.415,5.4647 -31.019,4.795 -1.4623,-0.13136 c 7.6193,-1.8135 17.536,-4.065 24.119,-5.644 l 12.59,-2.27 16.359,-3.601 -2.8794,-0.33529 6.170197,-0.96427 1.319503,-0.0857 5.1791,-0.93342 -5.0628,-0.91573 -2.087203,0.0364 0.55341,-0.27628 -10.011997,-1.3269 -2.574,0.21693 1.2609,0.56006 2.4196,2.3254 -3.0754,0.66949 -2.6033,-0.30981 -29.891,6.8034 -8.6322,1.0128 -5.5926,1.267 -1.4773,-0.0452 -12.46,2.3612 -4.9837,-0.44315 1.9654,-0.46256 -0.74029,-0.19543 -2.6687,0.52955 -3.0814,-0.27839 2.3756,-0.071 0.9309,-0.31461 -3.1938,0.1465 -0.10326,0.0193 0.98701,-0.30583 3.4033,-0.0253 0.91297,-0.38821 -2.2465,0.0469 1.0977,-0.14689 -1.0493,-0.20836 -5.4563,0.79271 0.03737,0.005 -0.32556,0.21457 -8.4677,-0.7491 -16.893,6.2078 -4.3725,0.84718 -18.762,5.0749 -3.4452,1.0718 -3.0309,0.66761 1.6989,2.6906 0.80877,0.14419 -0.97805,0.34263 0.93444,0.21695 -0.75575,0.14733 -1.5348,-0.3551 -1.5186,0.30234 -1.7281,0.18105 -1.3721,-0.46239 -0.75945,0.0584 1.5875,0.46069 -4.2699,0.45614 0.04116,0.0949 -0.54397,0.0566 -3.6231,0.63693 -4.4922,0.65147 -0.44442,-0.0518 -1.3974,0.3567 -2.7296,1.3873 2.375,0.62809 z"
|
||||
id="path15"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#241f1c" />
|
||||
<path
|
||||
d="m 123,644.97411 -8.2958,0.50682 -2.7208,13.204 0.57922,4.9386 -1.1661,5.9713 11.39,4.268 -0.18673,-5.8151 1.8139,-0.009 3.5195,-7.4554 0.17569,-4.2383 1.0796,-5.5561 z"
|
||||
id="path17"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#c98c81;fill-opacity:1" />
|
||||
<path
|
||||
d="m 150.99,754.15411 1.0104,3.6006 -1.9185,1.6538 0.69503,1.6021 2.1695,-2.265 -0.0479,-3.9071 z"
|
||||
id="path19"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ac9393" />
|
||||
<path
|
||||
d="m 151.99,755.99411 1.5773,4.257 -2.9949,1.9553 1.085,1.8942 3.3867,-2.678 -0.0749,-4.6194 z"
|
||||
id="path21"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ac9393" />
|
||||
<path
|
||||
d="m 145.41,746.62411 3.419,-1.0848 4.0432,8.3825 -0.0793,0.0237 3.3945,4.2209 0.0605,-0.0251 -1.0863,5.8134 -1.982,-0.13947 1.1037,-4.548 -4.1391,-4.5498 -1.1104,0.32442 -1.3155,2.9302 0.16883,3.9244 -1.6125,-0.27253 -0.58722,-3.393 0.0578,0.003 0.56391,-7.4301 -0.89895,-4.1804 z"
|
||||
id="path23"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#6c5353" />
|
||||
<path
|
||||
d="m 91.37491,749.72591 1.7797,1.6436 2.0442,2.3118 2.044,4.2196 -1.1332,0.16851 -2.1483,-2.803 -1.3529,-0.2494 0.7064,4.7168 1.331,3.2146 -0.91267,0.37258 -1.8571,-3.1889 -1.5174,-4.465 0.48907,4.6448 1.6928,4.1427 -1.2035,0.11829 -2.1873,-3.9037 -1.1113,-4.2518 0.42448,4.254 1.3789,3.7826 -0.94867,0.0746 -1.6973,-3.7523 -0.74212,-3.911 -0.30034,3.399 0.97186,2.6523 -0.86374,0.06 -1.2065,-3.0989 0.02415,-7.5338 0.37606,-1.9144 0.35987,-2.5283 4.4868,-0.85745 z"
|
||||
id="path25"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ac9393" />
|
||||
<path
|
||||
d="m 122.97,801.46411 12.949,-0.12984 0.33056,15.754 2.2754,19.724 13.534,6.8662 3.8817,1.2939 -1.2939,2.1628 -15.546,0.85944 -0.85947,-1.2939 -1.7284,1.2939 -9.0668,-0.42499 0.17831,-6.1726 0.76616,-1.0344 1.2089,-8.9906 -6.8466,-19.459 z"
|
||||
id="path27"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#6c5353" />
|
||||
<path
|
||||
d="m 95.403,800.26411 14.145,1.3575 0.0798,8.7928 -5.034,23.338 c 0.12733,2.6515 0.63327,5.727 0.98224,8.5002 l -0.10389,5.2984 -7.3419,0.91755 -12.597,-0.82742 -0.07556,-0.83113 1.5206,-2.2289 7.3395,-4.3308 3.0034,-8.8334 c -0.71607,-6.9934 -1.4861,-13.981 -2.2501,-20.969 l -0.0029,-8.0163 z"
|
||||
id="path29"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#6c5353" />
|
||||
<path
|
||||
d="m 99.658997,734.45411 33.245003,7.7729 5.9312,41.311 -2.909,8.3396 5.9995,40.521 -16.877,1.5738 -2.6892,-21.755 0.40114,-14.973 c -2.0452,-10.986 -4.4457,-28.01 -6.6949,-39.044 l -5.702,40.191 -0.97845,36.118 -17.579,0.87221 3.9329,-44.456 -0.07556,-0.0187 -0.82843,-10.721 z"
|
||||
id="path31"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ba3525;fill-opacity:1" />
|
||||
<path
|
||||
d="m 125.92,671.96411 14.275,7.8304 3.8169,10.461 7.6974,28.261 0.9755,31.058 -10.185,3.6605 -1.5617,-31.612 -7.0172,-20.147 -1.6402,22.59 3.7846,22.5 -39.279,-11.439 5.3915,-12.265 -4.0061,-25.826 -4.9145,19.767 0.98003,19.062 3.75,13.609 -10.379,5.8e-4 -4.7364,-38.162 10.297,-33.972 16.272,-7.1453 z"
|
||||
id="path33"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#6c5353" />
|
||||
<path
|
||||
d="m 98.934997,724.38411 38.128003,25.644 1.9456,-0.0661 0.29279,25.34 -3.0223,1.2939 -2.72,-21.997 -35.483,-23.953 z"
|
||||
id="path35"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#6c5353" />
|
||||
<path
|
||||
d="m 125.93,673.29411 -1.3882,-3.1267 -14.178,-1.9064 -2.2112,5.1596 z"
|
||||
id="path37"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#6c5353" />
|
||||
<path
|
||||
d="m 132.39891,740.04591 -39.29,2.1588 -0.43176,-6.0446 38.858,-1.5111 z"
|
||||
id="path39"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#6c5353" />
|
||||
<path
|
||||
d="m 131.54,729.78411 -38.128,25.644 -1.9456,-0.0661 -0.29279,25.34 3.0223,1.2939 2.72,-21.997 35.483,-23.953 z"
|
||||
id="path43"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#6c5353" />
|
||||
<path
|
||||
d="m 90.714,676.60411 16.429,-5.3572 19.643,0.71429 14.643,8.5714 3.5714,28.929 21.786,45.714 -60.357,10.714 -25,-1.0714 z"
|
||||
id="path41"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#991f16;fill-opacity:1" />
|
||||
<path
|
||||
d="m 113.69,657.88411 0.47686,4.5445 0.91079,3.6202 3.6544,2.3741 7.0154,0.96029 -0.1067,-1.9206 2.5874,-6.0552 -2.2674,-1.3871 -4.8548,0.6402 z m 8.125,5.2953 3.0774,-0.74401 1.846,0.50776 -2.0997,3.8373 -2.3321,-0.20577 z"
|
||||
id="path45"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#916f6f" />
|
||||
<path
|
||||
d="m 111.23,649.94411 -0.94691,7.9269 0.70865,-0.19015 0.61934,2.6664 0.83716,-3.1826 0.76332,1.0486 0.76214,-4.8777 4.5728,-2.2864 0.15243,1.6767 6.3257,-2.2102 0.5335,1.4481 4.1155,-0.45729 -0.45729,-2.0578 -4.268,-6.4019 -5.226,-0.88039 0.42784,0.94046 -3.6338,1.4157 -2.398,-0.10779 0.16009,1.2232 z"
|
||||
id="path47"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#6c5353" />
|
||||
<path
|
||||
d="m 124.5,664.94411 5.7391,1.1896 -0.41416,0.614 -5.3841,-1.3431 z"
|
||||
id="path49"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#6c5353" />
|
||||
<path
|
||||
d="m 198.84,863.58411 5.4992,0.0817 5.1202,-1.811 3.8714,-2.4102 34.934,1.443 -8.5044,-4.2934 -41.256,-2.133 -27.951,-0.37527 -10.995,4.6798 32.388,-0.0982 0.96691,2.5538 z"
|
||||
id="path51"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 206.87,836.02411 -5.2631,0.29252 -4.1357,4.7033 -2.7053,6.0003 -33.808,-0.3116 9.8278,9.3324 40.1,1.3751 26.735,-1.5806 8.5606,-11.957 -30.762,3.083 -1.9544,-5.9115 z"
|
||||
id="path53"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#6c5353;fill-opacity:1" />
|
||||
<path
|
||||
d="m 1661.9888,493.01905 c 0,13.807 -11.193,25 -25,25 -13.807,0 -25,-11.193 -25,-25 0,-13.807 11.193,-25 25,-25 13.807,0 25,11.193 25,25 z"
|
||||
id="path77"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
d="m 1720.3622,494.02135 c 0,44.49029 -36.0672,80.5575 -80.5576,80.5575 -44.4903,0 -80.5575,-36.06721 -80.5575,-80.5575 0,-44.4903 36.0672,-80.5575 80.5575,-80.5575 44.4904,0 80.5576,36.0672 80.5576,80.5575 z"
|
||||
id="path83"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#radialGradient4663);fill-opacity:1;stroke-width:3.22230005" />
|
||||
<g
|
||||
id="g879">
|
||||
<path
|
||||
style="fill:#241f1c"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13"
|
||||
d="m 629.63317,1114.1 25.301,1.6465 11.514,3.556 41.339,-2.7752 33.592,3.7262 26.933,0.9663 -9.4164,-2.4146 -26.15,-4.997 3.2616,-0.2147 8.1131,-1.6294 8.944,-1.3628 9.6068,-3.0328 -7.4632,-0.739 3.9464,-0.376 5.5822,0.5103 16.497,-0.6265 59.24,3.9471 45.33,-2.2417 115.55003,-7.401 107.31,-12.017 -2.2949,-1.0781 17.443,-0.5725 -0.1038,-0.051 23.129,0.061 0.054,0.041 18.921,-1.5286 -3.4165,-1.0952 -17.581,1.3844 -1.204,-0.023 9.7826,-1.3914 -1.6892,-2.8207 -9.0744,0.3444 2.7761,2.309 -17.792,1.179 0.4873,0.045 -8.758,-0.1866 -1.8119,-0.7062 7.3224,-2.2668 12.799,-1.0916 -5.141,-0.73 -12.982,1.0657 0.1504,0.03 -20.135,2.8031 -5.2377,-2.4684 -110.73003,11.924 -86.41,4.4848 49.589,-6.2503 72.81903,-6.8142 0.2152,-0.05 13.975,-1.1764 -4.6602,-1.034 9.1069,-2.1698 41.423,-3.6283 17.19,0.5236 11.223,-1.0862 1.2895,0.2755 86.243,-10.064 -1.3386,-0.7866 13.216,-3.1378 31.06,-3.9891 0.8525,0.1686 19.811,-2.2634 95.98,1.634 -26.984,-8.7948 37.725,-3.5206 58.645,4.249 14.063,-7.6024 -1.6502,-9.1165 -31.808,8.2582 -6.6442,0.078 -0.1511,-1.4216 -25.223,-4.5271 -8.3162,1.0571 -13.204,-2.8053 5.809,0.054 -5.2097,-0.4673 c -0.032,-0.089 -0.1804,-0.1838 -0.4222,-0.2678 l 3.4166,-0.7263 -4.9033,0.4426 c -0.3716,-0.044 -0.7951,-0.083 -1.2218,-0.1085 l -0.3133,-0.9728 -2.3385,0.9396 c -0.3737,0.01 -0.7015,0.023 -1.0572,0.047 l -4.016,-0.6099 2.1843,0.8208 c -0.079,0.015 -0.1371,0.025 -0.2079,0.041 l -5.655,0.01 4.7438,0.4673 c 0.023,0.064 0.1533,0.1272 0.2827,0.1889 l -4.4669,0.8359 6.498,-0.4343 c 0.3996,0.039 0.8146,0.077 1.2612,0.096 l 0.4246,0.872 1.933,-0.6923 10.974,2.9682 -6.5275,0.8276 -1.4781,0.8129 -24.23,3.8968 -15.68,0.8392 -28.453,-9.2796 -69.023,4.5154 30.225,-5.5357 12.32,-1.3604 -2.9736,-0.3527 13.078,-2.3975 c 9.2809,-1.0028 20.965,-1.9836 31.237,-2.9205 l 17.597,-2.1897 -22.484,-4.8861 -34.892,-4.5254 -3.0073,0.2956 -3.5297,1.6864 10.028,4.5925 -21.903,5.1142 c -5.51,0.5294 -11.032,1.0608 -16.552,1.5877 l -112.72,-13.49 -149.39003,38.296 -9.8144,1.1804 -5.4742,0.9642 -2.8822,0.4636 -5.1154,-1.0115 -141.21998,12.926 -87.616,19.034 15.44,9.4184 -10.653,2.9589 3.3252,1.9571 -5.7793,1.2313 -0.64873,0.046 0.12433,-1.2238 -4.9982,1.2732 -13.659,0.7886 -6.9338,1.5045 -6.6914,0.3857 -56.602,-6.0758 -20.593,4.401 20.773,-0.9067 33.688,6.1805 -26.003,5.2858 z m 173.67,-35.47 38.934,-7.6102 66.91,-7.1742 14.283,-0.9109 -9.9391,2.5475 -0.1899,-0.017 -10.979,2.6797 z" />
|
||||
<path
|
||||
style="fill:#c98c81;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path55"
|
||||
d="m 1326.7632,384.97 -19.277,6.7494 c -3.4999,4.9262 -10.566,10.088 -12.163,15.8 l 3.3397,5.5733 -1.8589,7.105 2.5769,9.8552 1.1698,9.5785 7.4049,15.06 6.4051,-2.2595 -2.3363,21.457 49.802,-1.8816 -9.5755,-32.761 2.373,-10.124 0.7031,-35.741 z" />
|
||||
<path
|
||||
style="fill:#c98c81;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path57"
|
||||
d="m 1223.8332,742.81 -3.7207,14.364 10.385,5.3674 -2.9015,6.5183 -11.898,-7.5877 -1.2845,-15.046 z" />
|
||||
<path
|
||||
style="fill:#6c5353"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path59"
|
||||
d="m 1243.7532,711.81 -11.175,-3.5456 -13.215,27.398 0.2593,0.0776 -11.095,13.796 -0.1976,-0.082 -2.8696,16.083 5.8945,1.2951 2.813,-14.865 14.112,-13.704 3.6293,1.0604 5.4671,11.328 -1.7191,11.076 5.2704,-0.89079 1.9193,-11.09 -0.1888,0.0113 -1.8432,-24.285 2.9382,-13.663 z" />
|
||||
<path
|
||||
style="fill:#ac9393"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path61"
|
||||
d="m 1412.0959,712.58976 -5.817,5.3721 -6.6816,7.5561 -6.6808,13.792 3.7038,0.55079 7.0218,-9.1616 4.4219,-0.8151 -2.3089,15.417 -4.3503,10.507 2.9831,1.2178 6.0698,-10.423 4.9596,-14.594 -1.5985,15.182 -5.5328,13.54 3.9335,0.38658 7.1492,-12.759 3.6324,-13.897 -1.3874,13.904 -4.5068,12.363 3.1008,0.24365 5.5477,-12.264 2.4256,-12.783 0.9817,11.11 -3.1765,8.6692 2.8232,0.19612 3.9435,-10.129 -0.079,-24.624 -1.2292,-6.2574 -1.1762,-8.2638 -14.665,-2.8026 z" />
|
||||
<path
|
||||
style="fill:#ba3525;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path63"
|
||||
d="m 1393.2932,672.04 -108.66,25.406 -19.386,135.02 9.5079,27.258 1.4024,40.223 38.821,2.8091 2.8092,-25.493 c 6.6849,-35.907 14.531,-91.552 21.882,-127.62 l 22.764,127.65 0.2381,19.04 43.156,-1.2348 0.2779,-38.495 0.2469,-0.061 2.7077,-35.042 z" />
|
||||
<path
|
||||
style="fill:#6c5353"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path67"
|
||||
d="m 1317.0832,891.07 -42.323,-0.42434 -1.0804,51.491 -7.4373,64.46704 -44.237,22.442 -12.688,4.2291 4.2292,7.0692 50.812,2.8091 2.8092,-4.2292 5.6492,4.2292 29.635,-1.3891 -0.5828,-20.175 -2.5042,-3.3809 -3.9513,-26.52904 22.378,-66.46 z" />
|
||||
<path
|
||||
style="fill:#6c5353"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path73"
|
||||
d="m 1407.2032,887.14 -46.234,4.4368 -0.2608,28.739 16.454,76.279 c -0.4162,8.6666 -2.0699,18.719 -3.2105,27.783 l 0.3396,17.318 29.775,1.3483 34.156,-7.2442 0.2469,-2.7165 -4.97,-7.2853 -22.751,-7.9644 -9.8166,-28.872 c 2.3405,-22.858 4.8574,-45.697 7.3545,-68.538 l 0.01,-26.201 z" />
|
||||
<path
|
||||
style="fill:#991f16;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path65"
|
||||
d="m 1361.3032,462.02 -53.847,5.7924 -46.672,25.577 -12.467,34.206 -25.172,92.368 -3.1703,101.52 33.276,11.942 5.1011,-103.31 22.955,-65.861 1.2872,49.032 -7.4132,64.788 37.105,106.05 -21.739,108.76 -67.664,69.608 126.41,28.318 25.056,-94.799 -3.269,86.099 137.3,-34.873 -87.696,-226.09 h 11.99 l 15.494,-124.74 -33.658,-111.03 z m 41.285,105.57 11.609,46.768 -3.1941,62.309 -3.1465,11.394 -5.3394,-13.778 0.1668,-0.0471 -5.3871,-14.827 z" />
|
||||
<path
|
||||
style="fill:#6c5353"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path69"
|
||||
d="m 1267.2732,760.21 1.2473,-12.473 16.714,-14.469 8.9808,4.4904 -1.4968,14.219 -18.959,10.727 z" />
|
||||
<path
|
||||
style="fill:#6c5353"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path71"
|
||||
d="m 1396.8232,674.16 -124.62,83.817 -6.3592,-0.21609 -0.957,82.824 9.8784,4.2292 8.8905,-71.896 115.98,-78.291 z" />
|
||||
<path
|
||||
style="fill:#6c5353"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path75"
|
||||
d="m 1304.0532,469.76 5.3156,-11.972 37.195,-14.632 17.094,7.3322 8.4672,19.757 z" />
|
||||
<path
|
||||
style="fill:#6c5353"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path79"
|
||||
d="m 1305.3532,414.32 1.9918,14.42 3.9837,-3.7616 2.6558,10.658 7.9673,-1.2539 -1.3279,10.815 11.287,-7.0531 4.6476,6.2694 3.3197,-5.0156 5.9755,3.1347 2.6558,-6.8964 8.6312,6.8964 -2.6558,-6.8964 3.3197,-10.658 -2.6558,-8.7772 3.3197,-10.658 c 0.684,-2.8448 1.2265,-9.719 -2.0338,-11.406 l -18.303,-9.4725 -9.1402,-6.9896 -0.3997,5.7253 -13.264,-2.2841 -10.172,6.0317 -4.4268,8.9328 -6.4973,5.3876 z" />
|
||||
<path
|
||||
style="fill:#6c5353"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path81"
|
||||
d="m 1273.3332,690.39 128.42,7.056 1.4112,-19.757 -127.01,-4.9392 z" />
|
||||
<path
|
||||
style="fill:#6c5353"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path85"
|
||||
d="m 1344.7332,354.42 -18.337,10.227 -19.386,-3.8808 -8.4848,33.423 -30.417,8.9241 -16.434,13.297 13.901,1.6883 71.978,-1.1812 69.652,-21.568 -7.6278,-25.866 -6.1775,15.294 -40.094,1.4649 z" />
|
||||
<path
|
||||
style="fill:#ba3525;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path87"
|
||||
d="m 1322.9932,1023.9 -1.3495,5.2487 c -0.3394,0.1234 -0.6716,0.2831 -0.957,0.4939 l -3.6188,-2.4036 1.7975,3.268 -32.815,-4.754 -2.84,7.0691 36.21,1.2657 -2.941,3.341 4.2992,-1.7048 c 0.3651,0.2528 0.7913,0.4451 1.2348,0.5555 l 1.2594,4.2904 0.562,-4.3211 c 0.3473,-0.09 0.6874,-0.2215 0.9878,-0.4014 l 3.993,2.7803 -2.6039,-4.262 c 0.1353,-0.2568 0.2357,-0.5149 0.3087,-0.8028 l 4.2929,-0.553 -4.2621,-1.1756 c -0.021,-0.093 -0.034,-0.1879 -0.062,-0.2778 l 2.6297,-3.4261 -4.0806,1.4504 c -0.2608,-0.1806 -0.5612,-0.3218 -0.8644,-0.4321 z" />
|
||||
<path
|
||||
d="m 1354.7023,1027.171 0.9765,5.2487 c 0.2456,0.1234 0.486,0.2831 0.6925,0.4939 l 2.6187,-2.4036 -1.3007,3.268 23.746,-4.754 2.0551,7.0691 -26.2027,1.2657 2.1282,3.341 -3.1111,-1.7048 c -0.2642,0.2528 -0.5726,0.4451 -0.8935,0.5555 l -0.9114,4.2904 -0.4066,-4.3211 c -0.2514,-0.09 -0.4975,-0.2215 -0.7149,-0.4014 l -2.8894,2.7803 1.8842,-4.262 c -0.098,-0.2568 -0.1705,-0.5149 -0.2233,-0.8028 l -3.1065,-0.553 3.0842,-1.1756 c 0.015,-0.093 0.025,-0.1879 0.044,-0.2778 l -1.9028,-3.4261 2.9528,1.4504 c 0.1887,-0.1806 0.4061,-0.3218 0.6255,-0.4321 z"
|
||||
id="path860"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ba3525;fill-opacity:1;stroke-width:0.85066676" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 20 KiB |
142
img/gcp-logo.svg
Normal file
@ -0,0 +1,142 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 286 36">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:#547DBF;}
|
||||
.st3{fill:url(#SVGID_3_);}
|
||||
.st4{fill:url(#SVGID_4_);}
|
||||
.st5{fill:#2D3079;fill-opacity:0.1;}
|
||||
.st6{fill:#FFCE40;}
|
||||
.st7{fill:url(#SVGID_5_);}
|
||||
.st8{fill:#DB4436;}
|
||||
.st9{fill:url(#SVGID_6_);}
|
||||
.st10{fill:url(#SVGID_7_);}
|
||||
.st11{fill:#3E2723;fill-opacity:5.000000e-02;}
|
||||
.st12{clip-path:url(#SVGID_9_);}
|
||||
.st13{fill:#EEEEEE;}
|
||||
.st14{clip-path:url(#SVGID_11_);}
|
||||
.st15{fill:#FFFFFF;fill-opacity:0.4;}
|
||||
.st16{fill:#262626;fill-opacity:5.000000e-02;}
|
||||
.st17{fill:#BE3A26;fill-opacity:5.000000e-02;}
|
||||
.st18{fill:#262626;fill-opacity:0.1;}
|
||||
.st19{clip-path:url(#SVGID_2_);fill:url(#SVGID_12_);}
|
||||
.st20{fill:#FFFFFF;fill-opacity:0.2;}
|
||||
.st21{fill:#BE3A26;fill-opacity:0.1;}
|
||||
.st22{fill:#3E2723;fill-opacity:0.2;}
|
||||
.st23{fill:url(#SVGID_13_);}
|
||||
.st24{opacity:0.54;}
|
||||
.st25{clip-path:url(#SVGID_15_);fill:none;}
|
||||
.st26{clip-path:url(#SVGID_15_);}
|
||||
</style>
|
||||
<symbol id="logo_x5F_dark" viewBox="0 -136 416 136">
|
||||
<path d="M0.7-52.6C0.7-23.6 25-0.1 54-0.1c16 0 27.4-6.3 36-14.5L79.8-24.7C73.7-18.9 65.4-14.4 54-14.4c-21.1 0-37.6-17-37.6-38.1 0-21.1 16.5-38.1 37.6-38.1 13.7 0 21.5 5.5 26.5 10.5 4.1 4.1 6.8 10 7.8 18H54v14.3h48.3c0.5-2.6 0.8-5.6 0.8-9 0-10.8-2.9-24.1-12.4-33.5C81.4-99.9 69.6-105 54-105 25-105 0.7-81.5 0.7-52.6zM142-37.5c-18.7 0-33.9-14.2-33.9-33.8 0-19.5 15.2-33.8 33.9-33.8 18.7 0 33.9 14.3 33.9 33.8C175.9-51.7 160.7-37.5 142-37.5zM142-91.7c-10.2 0-19.1 8.4-19.1 20.5 0 12.2 8.8 20.5 19.1 20.5 10.2 0 19.1-8.3 19.1-20.5C161.1-83.3 152.2-91.7 142-91.7zM216-37.5c-18.7 0-33.9-14.2-33.9-33.8 0-19.5 15.2-33.8 33.9-33.8 18.7 0 33.9 14.3 33.9 33.8C249.9-51.7 234.7-37.5 216-37.5zM216-91.7c-10.2 0-19.1 8.4-19.1 20.5 0 12.2 8.8 20.5 19.1 20.5s19.1-8.3 19.1-20.5C235.1-83.3 226.2-91.7 216-91.7zM306.8-39.5V-45h-0.5c-3.3 4-9.7 7.6-17.8 7.6 -16.9 0-32.4-14.8-32.4-33.9 0-18.9 15.5-33.7 32.4-33.7 8.1 0 14.5 3.6 17.8 7.7h0.5v-4.9c0-12.9-6.9-19.8-18-19.8 -9.1 0-14.7 6.5-17 12l-12.9-5.4c3.7-9 13.6-20 30-20 17.4 0 32.1 10.2 32.1 35.2v60.7H306.8zM289.8-91.7c-10.2 0-18.8 8.6-18.8 20.4 0 11.9 8.6 20.6 18.8 20.6 10.1 0 18-8.7 18-20.6C307.9-83.2 299.9-91.7 289.8-91.7z"/>
|
||||
<polygon points="346 -103 331.2 -103 331.2 -3.7 346 -3.7"/>
|
||||
<path d="M386.7-91.7c-7.6 0-12.9 3.5-16.4 10.2l45.2 18.7L414-59c-2.8 7.6-11.4 21.5-28.9 21.5 -17.4 0-31.9-13.7-31.9-33.8 0-18.9 14.3-33.8 33.5-33.8 15.5 0 24.4 9.5 28.2 15l-11.5 7.7C399.5-88 394.3-91.7 386.7-91.7zM385.6-50.5c5.9 0 10.9-2.9 12.5-7.2l-30.2-12.5C367.5-57.2 378-50.5 385.6-50.5z"/>
|
||||
<polygon class="st0" points="0 -136 416 -136 416 0 0 0"/>
|
||||
</symbol>
|
||||
<rect x="1.2" y="-0.1" class="st0" width="283.3" height="36.9"/>
|
||||
<defs>
|
||||
<path id="SVGID_1_" d="M35.5 17.2l-4.6-8.1 -2.9-5C27.6 3.5 26.9 3 26 3H11c-0.8 0-1.6 0.4-2 1.2l-4.6 8.1 -2.9 5c-0.4 0.7-0.4 1.6 0 2.3L9 32.6c0.4 0.7 1.2 1.2 2 1.2h15c0.8 0 1.6-0.4 2-1.2l7.5-13.1C35.9 18.8 35.9 18 35.5 17.2zM18.4 23c-2.5 0-4.6-2.1-4.6-4.6s2.1-4.6 4.6-4.6 4.6 2.1 4.6 4.6S21 23 18.4 23z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M13.2 9.2h17.7l-2.9-5C27.6 3.5 26.9 3 26 3H11c-0.8 0-1.6 0.4-2 1.2l-4.6 8.1 8.8 15.3V9.2z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="7.5665" y1="17.7773" x2="15.2215" y2="13.3472">
|
||||
<stop offset="0" style="stop-color:#2D3079;stop-opacity:0.2"/>
|
||||
<stop offset="0.66" style="stop-color:#2D3079;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<path class="st3" d="M13.2 9.2h17.7l-2.9-5C27.6 3.5 26.9 3 26 3H11c-0.8 0-1.6 0.4-2 1.2l-4.6 8.1 8.8 15.3V9.2z"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="3.6782" y1="12.9316" x2="8.196" y2="17.4493">
|
||||
<stop offset="0" style="stop-color:#2D3079;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#2D3079;stop-opacity:4.000000e-02"/>
|
||||
</linearGradient>
|
||||
<polygon class="st4" points="4.4 12.3 8.9 16.7 8.1 18.8 "/>
|
||||
<polygon class="st5" points="8.3 18.7 4.9 12.8 4.4 12.3 8.1 18.8 "/>
|
||||
<path class="st6" d="M13.2 27.6L4.4 12.3l-2.9 5c-0.4 0.7-0.4 1.6 0 2.3L9 32.6c0.4 0.7 1.2 1.2 2 1.2h9.3l8.9-15.4L13.2 27.6z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="23.4972" y1="28.2559" x2="15.9109" y2="23.8142">
|
||||
<stop offset="0" style="stop-color:#BE3A26;stop-opacity:0.15"/>
|
||||
<stop offset="0.66" style="stop-color:#BE3A26;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<path class="st7" d="M13.2 27.6L4.4 12.3l-2.9 5c-0.4 0.7-0.4 1.6 0 2.3L9 32.6c0.4 0.7 1.2 1.2 2 1.2h9.3l8.9-15.4L13.2 27.6z"/>
|
||||
<path class="st8" d="M30.9 9.2H13.2l15.9 9.2 -8.9 15.4H26c0.8 0 1.6-0.4 2-1.2l7.5-13.1c0.4-0.7 0.4-1.6 0-2.3L30.9 9.2z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="24.5277" y1="9.4044" x2="24.5277" y2="18.2022">
|
||||
<stop offset="0" style="stop-color:#A52822;stop-opacity:0.2"/>
|
||||
<stop offset="0.66" style="stop-color:#A52822;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<path class="st9" d="M30.9 9.2H13.2l15.9 9.2 -8.9 15.4H26c0.8 0 1.6-0.4 2-1.2l7.5-13.1c0.4-0.7 0.4-1.6 0-2.3L30.9 9.2z"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="18.7011" y1="18.0951" x2="30.0119" y2="29.4059">
|
||||
<stop offset="0" style="stop-color:#3E2723;stop-opacity:0.15"/>
|
||||
<stop offset="1" style="stop-color:#3E2723;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st10" points="23.8 9.2 35.8 21.2 35.8 33.8 20.3 33.8 23.8 27.6 "/>
|
||||
<rect x="23.7" y="9.2" class="st11" width="7.5" height="0.2"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<defs>
|
||||
<path id="SVGID_8_" d="M30.9 9.2H13.2l15.9 9.2 -8.9 15.4H26c0.8 0 1.6-0.4 2-1.2l7.5-13.1c0.4-0.7 0.4-1.6 0-2.3L30.9 9.2z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_9_">
|
||||
<use xlink:href="#SVGID_8_"/>
|
||||
</clipPath>
|
||||
<g class="st12">
|
||||
<path class="st13" d="M23.8 9.2l5.3 9.2 -5.3 9.2H13.2l-5.3-9.2 5.3-9.2H23.8"/>
|
||||
</g>
|
||||
<g class="st12">
|
||||
<path class="st2" d="M13.2 9.2h17.7l-2.9-5C27.6 3.5 26.9 3 26 3H11c-0.8 0-1.6 0.4-2 1.2l-4.6 8.1 8.8 15.3V9.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<defs>
|
||||
<path id="SVGID_10_" d="M13.2 27.6L4.4 12.3l-2.9 5c-0.4 0.7-0.4 1.6 0 2.3L9 32.6c0.4 0.7 1.2 1.2 2 1.2h9.3l8.9-15.4L13.2 27.6z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_11_">
|
||||
<use xlink:href="#SVGID_10_"/>
|
||||
</clipPath>
|
||||
<g class="st14">
|
||||
<path class="st13" d="M23.8 9.2l5.3 9.2 -5.3 9.2H13.2l-5.3-9.2 5.3-9.2H23.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st13" d="M23.8 9.2l5.3 9.2 -5.3 9.2H13.2l-5.3-9.2 5.3-9.2H23.8"/>
|
||||
<polygon class="st15" points="23.8 9.4 29 18.4 29.2 18.4 23.8 9.2 13.2 9.2 7.9 18.4 8 18.4 13.2 9.4 "/>
|
||||
<polygon class="st16" points="29 18.4 23.8 27.4 13.2 27.4 8 18.4 7.9 18.4 13.2 27.6 23.8 27.6 29.2 18.4 "/>
|
||||
<polygon class="st17" points="29.2 18.4 23.8 27.6 13.2 27.6 7.9 18.4 7.9 18.6 13.2 27.8 23.8 27.8 29.2 18.6 "/>
|
||||
<path class="st18" d="M18.4 13.6c-2.5 0-4.6 2.1-4.6 4.6h9.2C23.1 15.7 21 13.6 18.4 13.6zM13.8 18.6c0 2.5 2.1 4.6 4.6 4.6s4.6-2.1 4.6-4.6H13.8z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="18.5329" y1="27.6183" x2="18.5329" y2="33.7384">
|
||||
<stop offset="0" style="stop-color:#3E2723;stop-opacity:0.15"/>
|
||||
<stop offset="3.546852e-02" style="stop-color:#462823;stop-opacity:0.1447"/>
|
||||
<stop offset="0.2522" style="stop-color:#712E24;stop-opacity:0.1122"/>
|
||||
<stop offset="0.4625" style="stop-color:#923325;stop-opacity:8.062769e-02"/>
|
||||
<stop offset="0.6619" style="stop-color:#AA3726;stop-opacity:5.071827e-02"/>
|
||||
<stop offset="0.8459" style="stop-color:#B93926;stop-opacity:2.311477e-02"/>
|
||||
<stop offset="1" style="stop-color:#BE3A26;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st19" points="13.2 27.6 19.4 33.8 20.3 33.8 23.8 27.6 "/>
|
||||
<g class="st1">
|
||||
<path class="st20" d="M4.4 12.5L9 4.4c0.4-0.7 1.2-1.2 2-1.2h15c0.8 0 1.6 0.4 2 1.2l2.9 5 4.6 8.1c0.2 0.3 0.3 0.7 0.3 1.1 0-0.4-0.1-0.9-0.3-1.2l-4.6-8.1 -2.9-5C27.6 3.5 26.9 3 26 3H11c-0.8 0-1.6 0.4-2 1.2l-4.6 8.1 -2.9 5c-0.2 0.4-0.3 0.8-0.3 1.2 0-0.4 0.1-0.7 0.3-1.1L4.4 12.5zM11 33.6c-0.8 0-1.6-0.4-2-1.2l-4.6-8.1 -2.9-5c-0.2-0.3-0.3-0.7-0.3-1.1 0 0.4 0.1 0.9 0.3 1.2l2.9 5L9 32.6c0.4 0.7 1.2 1.2 2 1.2h9.3l0.1-0.2H11zM35.8 18.3c0 0.4-0.1 0.7-0.3 1.1l-4.6 8.1 -2.9 5c-0.4 0.7-1.2 1.2-2 1.2h-5.6l-0.1 0.2H26c0.8 0 1.6-0.4 2-1.2l2.9-5 4.6-8.1C35.7 19.2 35.8 18.7 35.8 18.3z"/>
|
||||
</g>
|
||||
<radialGradient id="SVGID_13_" cx="9.8634" cy="3.5289" r="34.5676" gradientTransform="matrix(6.457271e-03 0 0 6.457271e-03 2212.6196 -4568.3096)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.1"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
<path class="st23" d="M35.5 17.2l-4.6-8.1 -2.9-5C27.6 3.5 26.9 3 26 3H11c-0.8 0-1.6 0.4-2 1.2l-4.6 8.1 -2.9 5c-0.4 0.7-0.4 1.6 0 2.3L9 32.6c0.4 0.7 1.2 1.2 2 1.2h15c0.8 0 1.6-0.4 2-1.2l7.5-13.1C35.9 18.8 35.9 18 35.5 17.2zM18.4 23c-2.5 0-4.6-2.1-4.6-4.6s2.1-4.6 4.6-4.6 4.6 2.1 4.6 4.6S21 23 18.4 23z"/>
|
||||
<rect x="1.2" y="-0.1" class="st0" width="34.6" height="36.9"/>
|
||||
<g class="st24">
|
||||
<defs>
|
||||
<rect id="SVGID_14_" x="45.1" y="-0.1" class="st24" width="239.5" height="36.9"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_15_">
|
||||
<use xlink:href="#SVGID_14_"/>
|
||||
</clipPath>
|
||||
<rect x="45.1" y="7.8" class="st25" width="239.5" height="26.1"/>
|
||||
<g class="st26">
|
||||
<path d="M130.5 18.8c0-5.2 4-9.2 9.2-9.2 2.7 0 4.9 1.1 6.5 2.9l-1.6 1.5c-1.2-1.5-2.9-2.2-4.9-2.2 -3.7 0-6.8 2.7-6.8 7s3.1 7 6.8 7c2.2 0 4.1-1 5.4-2.6l1.6 1.6c-1.5 1.8-4 3.1-7 3.1C134.5 28 130.5 24.1 130.5 18.8zM148.4 27.6V10h2.3v17.6H148.4zM164.8 21.6c0 3.7-2.6 6.4-6.2 6.4 -3.6 0-6.2-2.8-6.2-6.4 0-3.7 2.6-6.4 6.2-6.4C162.2 15.2 164.8 17.9 164.8 21.6zM162.5 21.6c0-2.8-1.9-4.4-3.9-4.4 -2 0-3.9 1.6-3.9 4.4 0 2.8 1.9 4.4 3.9 4.4C160.6 25.9 162.5 24.3 162.5 21.6zM175 27.6v-1.7h-0.1c-0.7 1.1-2.2 2.1-3.8 2.1 -3.1 0-4.6-2.1-4.6-5.1v-7.4h2.3v7c0 2.5 1.3 3.4 3 3.4 2 0 3.2-1.9 3.2-3.7v-6.6h2.3v12.1H175zM179 21.6c0-3.7 2.7-6.4 5.7-6.4 1.9 0 3.4 1 4.1 2.1h0.1l-0.1-1.7V10h2.3v17.6H189v-1.7h-0.1c-0.7 1.1-2.2 2.1-4.1 2.1C181.7 28 179 25.3 179 21.6zM189 21.6c0-2.8-1.8-4.4-3.8-4.4 -2 0-3.8 1.6-3.8 4.4 0 2.7 1.8 4.4 3.8 4.4C187.1 25.9 189 24.3 189 21.6zM197.3 27.6V10h6c2.9 0 5.5 2.2 5.5 5.2s-2.6 5.2-5.5 5.2h-3.7v7.1H197.3zM203.4 18.3c2 0 3.1-1.7 3.1-3.1 0-1.4-1.1-3.1-3.1-3.1h-3.8v6.2H203.4zM210.4 27.6V10h2.3v17.6H210.4zM214.6 24c0-2.7 2.5-4.2 5.3-4.2 1.6 0 2.8 0.5 3.3 0.7v-0.3c0-1.8-1.5-2.9-3.1-2.9 -1.3 0-2.5 0.6-2.9 1.7l-2.1-0.9c0.4-1.1 1.9-2.9 4.9-2.9 3 0 5.4 1.8 5.4 5.2v7.3h-2.2v-1.7h-0.1c-0.7 1-1.9 2.1-4 2.1C216.7 28 214.6 26.5 214.6 24zM223.2 22.4c0 0-1-0.8-2.9-0.8 -2.4 0-3.3 1.3-3.3 2.4 0 1.3 1.3 1.9 2.5 1.9C221.3 25.9 223.2 24.4 223.2 22.4zM228.6 24v-6.3h-2.1v-2.1h2.1v-3.7h2.3v3.7h3v2.1h-3v6.2c0 1.4 0.6 2 1.6 2 0.4 0 0.7 0 1-0.2l0.8 1.9c-0.5 0.2-1.1 0.3-1.8 0.3C230 27.8 228.6 26.4 228.6 24zM243.3 10.2l-0.8 1.9c-0.3-0.1-0.6-0.2-1-0.2 -1.1 0-2 0.7-2 2.1v1.5h3.1v2.1h-3.1v10h-2.3v-10H235v-2.1h2.3V14c0-2.5 1.7-4.1 4.3-4.1C242.3 9.9 242.8 10 243.3 10.2zM255.7 21.6c0 3.7-2.6 6.4-6.2 6.4 -3.6 0-6.2-2.8-6.2-6.4 0-3.7 2.6-6.4 6.2-6.4C253.1 15.2 255.7 17.9 255.7 21.6zM253.4 21.6c0-2.8-1.9-4.4-3.9-4.4 -2 0-3.9 1.6-3.9 4.4 0 2.8 1.9 4.4 3.9 4.4C251.5 25.9 253.4 24.3 253.4 21.6zM257.5 27.6V15.6h2.2v2h0.1c0.5-1.4 2.2-2.3 3.5-2.3 0.7 0 1.2 0.1 1.7 0.3l-0.9 2.1c-0.3-0.1-0.7-0.2-1.2-0.2 -1.6 0-3.1 1.3-3.1 3.5v6.6H257.5zM266.2 15.6h2.2v1.7h0.1c0.7-1.2 2.3-2.1 3.7-2.1 1.9 0 3.2 0.9 3.8 2.3 0.9-1.4 2.3-2.3 4.2-2.3 3 0 4.3 2.1 4.3 5.1v7.4h-2.3v-7c0-2.5-1-3.3-2.7-3.3 -1.8 0-3.1 1.9-3.1 3.7v6.7h-2.3v-7c0-2.5-1-3.3-2.7-3.3 -1.8 0-3.1 1.9-3.1 3.7v6.7h-2.3V15.6z"/>
|
||||
</g>
|
||||
<g class="st26">
|
||||
<use xlink:href="#logo_x5F_dark" width="416" height="136" y="-136" transform="matrix(0.1922 0 0 -0.1922 45.0596 7.8192)"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
1
img/ghost.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg class="ghost-svg" viewBox="0 0 493 161" xmlns="http://www.w3.org/2000/svg"><title>Ghost Logo</title><g fill="none" fill-rule="evenodd"><path d="M328.52 37.36c-27.017 0-40.97 19.323-40.97 43.16 0 23.837 13.61 43.162 40.97 43.162s40.968-19.325 40.968-43.163c0-23.84-13.954-43.16-40.97-43.16zm20.438 43.237c-.02 15.328-5.126 27.743-20.44 27.743-15.312 0-20.42-12.414-20.435-27.743v-.078c.016-15.33 5.124-27.74 20.437-27.74 15.312 0 20.42 12.41 20.438 27.74v.07zM207.553 5.19c0-1.103.885-2.124 1.984-2.282 0 0 13.577-1.95 14.784-2.115 1.37-.187 3.19.798 3.19 2.744v44.236c3.23-3.105 6.79-5.608 10.66-7.515 3.88-1.906 8.43-2.86 13.66-2.86 4.53 0 8.53.776 12.03 2.33 3.5 1.55 6.43 3.73 8.77 6.533 2.34 2.81 4.12 6.16 5.33 10.05 1.21 3.9 1.82 8.19 1.82 12.87v51.35c0 1.1-.89 2-2 2h-15.95c-1.1 0-2-.9-2-1.99V69.18c0-5.118-1.17-9.08-3.51-11.888-2.35-2.804-5.86-4.207-10.544-4.207-3.45 0-6.677.79-9.69 2.37-3.02 1.58-5.87 3.73-8.564 6.46v58.617c0 1.102-.894 2-2.002 2h-15.94c-1.11 0-2.005-.895-2.005-2V5.188zm244.007 95.327v-43.68h-13.482c-1.1 0-1.742-.87-1.443-1.916l3-10.49c.262-.9.942-1.87 2.308-2.07l9.597-1.35 3.508-23.49c.163-1.09 1.18-2.1 2.274-2.26 0 0 9.192-1.31 10.963-1.58 1.673-.25 3.19.97 3.19 2.81v24.52h17.565c1.106 0 2.002.9 2.002 2.01v11.82c0 1.11-.89 2.01-2.002 2.01h-17.566v43.08c0 6.02 3.623 8.32 7.095 8.32 2.12 0 5.02-1.14 7.19-2.16 1.34-.62 3.41-.16 3.95 1.73l2.45 8.65c.3 1.07-.25 2.37-1.23 2.86 0 0-7.29 4.37-17.06 4.37-13.73 0-22.33-8.08-22.33-23.16zm-44.584-47.74c-7.084 0-12.657 2.476-12.657 8.433 0 7.44 12.01 9.606 20.23 12.64 5.49 2.027 20.24 5.98 20.24 22.016 0 19.48-16 27.807-33.06 27.807-17.06 0-25.4-5.465-25.4-5.465-.96-.527-1.5-1.822-1.2-2.89 0 0 2.1-7.52 2.64-9.386.48-1.68 2.41-2.27 3.64-1.792 4.39 1.712 12.32 4.092 21.28 4.092 9.07 0 13.46-2.803 13.46-8.777 0-7.95-12.26-10.38-20.36-12.967-5.59-1.78-20.36-5.93-20.36-23.566 0-17.373 15.08-25.524 31.2-25.524 13.64 0 23.5 4.69 23.5 4.69 1.01.427 1.58 1.635 1.28 2.698l-2.658 9.357c-.488 1.74-1.898 2.537-3.666 1.957-3.89-1.277-11.2-3.322-18.15-3.322zm-210.313-15.28c-6.695.775-11.472 3.962-14.562 6.93-6.06-4.81-14.49-7.106-23.94-7.106-18.95 0-33.76 9.26-33.76 29.43 0 11.58 4.88 19.56 12.62 24.26-5.75 2.75-9.57 8.59-9.57 14.34 0 9.61 7.5 12.61 7.5 12.61s-13.11 6.44-13.11 19.32c0 16.49 15.01 23.16 33.34 23.16 26.43 0 44.61-11.04 44.61-31.31 0-12.47-9.44-19.36-30.01-20.18-12.2-.48-20.11-.93-22.07-1.58-2.59-.87-3.86-2.96-3.86-5.28 0-2.55 2.08-4.98 5.35-6.65 2.86.516 5.87.768 8.99.768 18.97 0 33.76-9.223 33.76-29.425 0-4.897-.87-9.15-2.46-12.78 2.79-1.506 8.34-2.25 8.34-2.25 1.09-.17 1.975-1.21 1.974-2.31V40.3c0-1.88-1.59-2.955-3.1-2.78zm-49.13 85.132s9.954.38 19.9.84c11.172.52 14.654 2.96 14.654 8.81 0 7.15-9.71 14.1-23.28 14.1-12.88 0-19.314-4.54-19.314-12.08 0-4.33 2.26-9.18 8.04-11.69zm10.66-40.54c-8.978 0-15.983-4.83-15.983-15.35 0-10.53 7.01-15.35 15.983-15.35 8.974 0 15.984 4.81 15.984 15.34 0 10.53-7.002 15.34-15.984 15.34z" fill="#2D3134"></path><g opacity=".6" transform="translate(0 36)" fill="#2E3134"><rect x=".209" y="69.017" width="33.643" height="17.014" rx="4"></rect><rect x="50.672" y="69.017" width="33.622" height="17.014" rx="4"></rect><rect x=".184" y="34.99" width="84.121" height="17.014" rx="4"></rect><rect x=".209" y=".964" width="50.469" height="17.013" rx="4"></rect><rect x="67.494" y=".964" width="16.821" height="17.013" rx="4"></rect></g></g></svg>
|
After Width: | Height: | Size: 3.3 KiB |
66
img/jetbrains.svg
Normal file
@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="120.1px" height="130.2px" viewBox="0 0 120.1 130.2" style="enable-background:new 0 0 120.1 130.2;" xml:space="preserve"
|
||||
>
|
||||
<g>
|
||||
<linearGradient id="XMLID_2_" gradientUnits="userSpaceOnUse" x1="31.8412" y1="120.5578" x2="110.2402" y2="73.24">
|
||||
<stop offset="0" style="stop-color:#FCEE39"/>
|
||||
<stop offset="1" style="stop-color:#F37B3D"/>
|
||||
</linearGradient>
|
||||
<path id="XMLID_3041_" style="fill:url(#XMLID_2_);" d="M118.6,71.8c0.9-0.8,1.4-1.9,1.5-3.2c0.1-2.6-1.8-4.7-4.4-4.9
|
||||
c-1.2-0.1-2.4,0.4-3.3,1.1l0,0l-83.8,45.9c-1.9,0.8-3.6,2.2-4.7,4.1c-2.9,4.8-1.3,11,3.6,13.9c3.4,2,7.5,1.8,10.7-0.2l0,0l0,0
|
||||
c0.2-0.2,0.5-0.3,0.7-0.5l78-54.8C117.3,72.9,118.4,72.1,118.6,71.8L118.6,71.8L118.6,71.8z"/>
|
||||
<linearGradient id="XMLID_3_" gradientUnits="userSpaceOnUse" x1="48.3607" y1="6.9083" x2="119.9179" y2="69.5546">
|
||||
<stop offset="0" style="stop-color:#EF5A6B"/>
|
||||
<stop offset="0.57" style="stop-color:#F26F4E"/>
|
||||
<stop offset="1" style="stop-color:#F37B3D"/>
|
||||
</linearGradient>
|
||||
<path id="XMLID_3049_" style="fill:url(#XMLID_3_);" d="M118.8,65.1L118.8,65.1L55,2.5C53.6,1,51.6,0,49.3,0
|
||||
c-4.3,0-7.7,3.5-7.7,7.7v0c0,2.1,0.8,3.9,2.1,5.3l0,0l0,0c0.4,0.4,0.8,0.7,1.2,1l67.4,57.7l0,0c0.8,0.7,1.8,1.2,3,1.3
|
||||
c2.6,0.1,4.7-1.8,4.9-4.4C120.2,67.3,119.7,66,118.8,65.1z"/>
|
||||
<linearGradient id="XMLID_4_" gradientUnits="userSpaceOnUse" x1="52.9467" y1="63.6407" x2="10.5379" y2="37.1562">
|
||||
<stop offset="0" style="stop-color:#7C59A4"/>
|
||||
<stop offset="0.3852" style="stop-color:#AF4C92"/>
|
||||
<stop offset="0.7654" style="stop-color:#DC4183"/>
|
||||
<stop offset="0.957" style="stop-color:#ED3D7D"/>
|
||||
</linearGradient>
|
||||
<path id="XMLID_3042_" style="fill:url(#XMLID_4_);" d="M57.1,59.5C57,59.5,17.7,28.5,16.9,28l0,0l0,0c-0.6-0.3-1.2-0.6-1.8-0.9
|
||||
c-5.8-2.2-12.2,0.8-14.4,6.6c-1.9,5.1,0.2,10.7,4.6,13.4l0,0l0,0C6,47.5,6.6,47.8,7.3,48c0.4,0.2,45.4,18.8,45.4,18.8l0,0
|
||||
c1.8,0.8,3.9,0.3,5.1-1.2C59.3,63.7,59,61,57.1,59.5z"/>
|
||||
<linearGradient id="XMLID_5_" gradientUnits="userSpaceOnUse" x1="52.1736" y1="3.7019" x2="10.7706" y2="37.8971">
|
||||
<stop offset="0" style="stop-color:#EF5A6B"/>
|
||||
<stop offset="0.364" style="stop-color:#EE4E72"/>
|
||||
<stop offset="1" style="stop-color:#ED3D7D"/>
|
||||
</linearGradient>
|
||||
<path id="XMLID_3057_" style="fill:url(#XMLID_5_);" d="M49.3,0c-1.7,0-3.3,0.6-4.6,1.5L4.9,28.3c-0.1,0.1-0.2,0.1-0.2,0.2l-0.1,0
|
||||
l0,0c-1.7,1.2-3.1,3-3.9,5.1C-1.5,39.4,1.5,45.9,7.3,48c3.6,1.4,7.5,0.7,10.4-1.4l0,0l0,0c0.7-0.5,1.3-1,1.8-1.6l34.6-31.2l0,0
|
||||
c1.8-1.4,3-3.6,3-6.1v0C57.1,3.5,53.6,0,49.3,0z"/>
|
||||
<g id="XMLID_3008_">
|
||||
<rect id="XMLID_3033_" x="34.6" y="37.4" style="fill:#000000;" width="51" height="51"/>
|
||||
<rect id="XMLID_3032_" x="39" y="78.8" style="fill:#FFFFFF;" width="19.1" height="3.2"/>
|
||||
<g id="XMLID_3009_">
|
||||
<path id="XMLID_3030_" style="fill:#FFFFFF;" d="M38.8,50.8l1.5-1.4c0.4,0.5,0.8,0.8,1.3,0.8c0.6,0,0.9-0.4,0.9-1.2l0-5.3l2.3,0
|
||||
l0,5.3c0,1-0.3,1.8-0.8,2.3c-0.5,0.5-1.3,0.8-2.3,0.8C40.2,52.2,39.4,51.6,38.8,50.8z"/>
|
||||
<path id="XMLID_3028_" style="fill:#FFFFFF;" d="M45.3,43.8l6.7,0v1.9l-4.4,0V47l4,0l0,1.8l-4,0l0,1.3l4.5,0l0,2l-6.7,0
|
||||
L45.3,43.8z"/>
|
||||
<path id="XMLID_3026_" style="fill:#FFFFFF;" d="M55,45.8l-2.5,0l0-2l7.3,0l0,2l-2.5,0l0,6.3l-2.3,0L55,45.8z"/>
|
||||
<path id="XMLID_3022_" style="fill:#FFFFFF;" d="M39,54l4.3,0c1,0,1.8,0.3,2.3,0.7c0.3,0.3,0.5,0.8,0.5,1.4v0
|
||||
c0,1-0.5,1.5-1.3,1.9c1,0.3,1.6,0.9,1.6,2v0c0,1.4-1.2,2.3-3.1,2.3l-4.3,0L39,54z M43.8,56.6c0-0.5-0.4-0.7-1-0.7l-1.5,0l0,1.5
|
||||
l1.4,0C43.4,57.3,43.8,57.1,43.8,56.6L43.8,56.6z M43,59l-1.8,0l0,1.5H43c0.7,0,1.1-0.3,1.1-0.8v0C44.1,59.2,43.7,59,43,59z"/>
|
||||
<path id="XMLID_3019_" style="fill:#FFFFFF;" d="M46.8,54l3.9,0c1.3,0,2.1,0.3,2.7,0.9c0.5,0.5,0.7,1.1,0.7,1.9v0
|
||||
c0,1.3-0.7,2.1-1.7,2.6l2,2.9l-2.6,0l-1.7-2.5h-1l0,2.5l-2.3,0L46.8,54z M50.6,58c0.8,0,1.2-0.4,1.2-1v0c0-0.7-0.5-1-1.2-1
|
||||
l-1.5,0v2H50.6z"/>
|
||||
<path id="XMLID_3016_" style="fill:#FFFFFF;" d="M56.8,54l2.2,0l3.5,8.4l-2.5,0l-0.6-1.5l-3.2,0l-0.6,1.5l-2.4,0L56.8,54z
|
||||
M58.8,59l-0.9-2.3L57,59L58.8,59z"/>
|
||||
<path id="XMLID_3014_" style="fill:#FFFFFF;" d="M62.8,54l2.3,0l0,8.3l-2.3,0L62.8,54z"/>
|
||||
<path id="XMLID_3012_" style="fill:#FFFFFF;" d="M65.7,54l2.1,0l3.4,4.4l0-4.4l2.3,0l0,8.3l-2,0L68,57.8l0,4.6l-2.3,0L65.7,54z"
|
||||
/>
|
||||
<path id="XMLID_3010_" style="fill:#FFFFFF;" d="M73.7,61.1l1.3-1.5c0.8,0.7,1.7,1,2.7,1c0.6,0,1-0.2,1-0.6v0
|
||||
c0-0.4-0.3-0.5-1.4-0.8c-1.8-0.4-3.1-0.9-3.1-2.6v0c0-1.5,1.2-2.7,3.2-2.7c1.4,0,2.5,0.4,3.4,1.1l-1.2,1.6
|
||||
c-0.8-0.5-1.6-0.8-2.3-0.8c-0.6,0-0.8,0.2-0.8,0.5v0c0,0.4,0.3,0.5,1.4,0.8c1.9,0.4,3.1,1,3.1,2.6v0c0,1.7-1.3,2.7-3.4,2.7
|
||||
C76.1,62.5,74.7,62,73.7,61.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
19
img/meteor-logo.svg
Normal file
@ -0,0 +1,19 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid" width="224" height="54" viewBox="0 0 224 54">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #000;
|
||||
}
|
||||
|
||||
.cls-1, .cls-2 {
|
||||
fill-rule: evenodd;
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: #de4f4f;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path d="M224.000,52.694 L215.467,52.694 L208.267,42.000 L202.667,42.000 L202.667,52.694 L195.200,52.694 L195.200,19.542 L213.333,19.542 C213.333,19.542 223.104,19.926 223.104,30.727 C223.104,38.378 216.000,41.198 216.000,41.198 L224.000,52.694 ZM211.392,25.646 L202.536,25.646 L202.536,35.338 L212.197,35.338 C212.197,35.338 215.890,35.337 215.890,30.491 C215.890,25.461 211.392,25.646 211.392,25.646 ZM112.533,19.542 L137.600,19.542 L137.600,25.954 L120.000,25.954 L120.000,32.910 L135.200,32.910 L135.200,39.327 L120.000,39.327 L120.000,46.278 L137.600,46.278 L137.600,52.694 L112.533,52.694 L112.533,19.542 ZM93.600,52.694 L86.133,52.694 L86.133,25.959 L76.267,25.959 L76.267,19.542 L103.467,19.542 L103.467,25.959 L93.600,25.959 L93.600,52.694 ZM42.133,19.542 L67.200,19.542 L67.200,25.954 L49.600,25.954 L49.600,32.910 L64.800,32.910 L64.800,39.327 L49.600,39.327 L49.600,46.278 L67.200,46.278 L67.200,52.694 L42.133,52.694 L42.133,19.542 ZM25.600,31.840 L16.528,45.208 L7.462,31.840 L7.462,52.695 L-0.000,52.695 L-0.000,19.542 L7.462,19.542 L16.528,33.177 L25.600,19.542 L33.067,19.542 L33.067,52.695 L25.600,52.695 L25.600,31.840 Z" class="cls-1"/>
|
||||
<path d="M187.455,35.696 C186.601,36.620 185.485,35.828 185.485,35.828 L160.533,8.781 L187.652,33.849 C187.652,33.849 188.309,34.773 187.455,35.696 ZM184.665,26.932 L173.356,14.636 L185.737,26.004 C185.737,26.004 186.062,26.437 185.639,26.870 C185.217,27.302 184.665,26.932 184.665,26.932 ZM186.514,43.245 C185.292,44.568 183.695,43.435 183.695,43.435 L147.979,4.721 L186.796,40.602 C186.796,40.602 187.736,41.924 186.514,43.245 ZM182.849,49.761 C181.627,51.083 180.029,49.950 180.029,49.950 L133.129,-0.000 L183.131,47.117 C183.131,47.117 184.070,48.439 182.849,49.761 ZM176.082,53.349 C174.860,54.671 173.262,53.538 173.262,53.538 L137.547,14.824 L176.364,50.705 C176.364,50.705 177.303,52.027 176.082,53.349 ZM167.906,53.448 C167.052,54.371 165.936,53.580 165.936,53.580 L140.984,26.533 L168.103,51.601 C168.103,51.601 168.759,52.525 167.906,53.448 ZM159.511,51.231 C159.089,51.664 158.537,51.293 158.537,51.293 L147.228,38.997 L159.609,50.365 C159.609,50.365 159.933,50.798 159.511,51.231 Z" class="cls-2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
BIN
img/se.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
img/zapier-logo.png
Normal file
After Width: | Height: | Size: 10 KiB |
197
index.html
@ -1,117 +1,104 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Showdown by showdownjs</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
|
||||
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
|
||||
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/1.5.0/showdown.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<section class="page-header">
|
||||
<div class="project-name"><img src="images/logo.png" alt="Showdown"></div>
|
||||
<h2 class="project-tagline">An extensible Markdown to HTML converter written in Javascript</h2>
|
||||
<a href="https://github.com/showdownjs/showdown" class="btn">View on GitHub</a>
|
||||
<a href="https://github.com/showdownjs/showdown/zipball/master" class="btn">Download .zip</a>
|
||||
<a href="https://github.com/showdownjs/showdown/tarball/master" class="btn">Download .tar.gz</a>
|
||||
</section>
|
||||
<title>Showdownjs - A markdown to HTML converter</title>
|
||||
|
||||
<section class="main-content">
|
||||
<p>Showdown is a Javascript Markdown to HTML converter, based on the original works by John Gruber. Showdown can be used client side (in the browser) or server side (with NodeJs). Check a live <a href="http://showdownjs.github.io/demo/">demo here</a></p>
|
||||
<link href="https://fonts.googleapis.com/css?family=Anonymous+Pro" rel="stylesheet">
|
||||
<link rel="stylesheet"
|
||||
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"
|
||||
integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb"
|
||||
crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/darcula.min.css">
|
||||
<link rel="stylesheet" href="css/layout.css">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
</head>
|
||||
<body class="cowboys-bg">
|
||||
|
||||
<h1>
|
||||
<a id="who-uses-showdown" class="anchor" href="#who-uses-showdown" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Who uses Showdown</h1>
|
||||
<nav id="mainNavigation" class="navbar sticky-top navbar-expand-lg">
|
||||
<div class="container">
|
||||
<span class="navbar-brand showdown-brand"><span>Show</span><span class="text-secondary">down</span></span>
|
||||
<button class="navbar-toggler"
|
||||
type="button"
|
||||
data-toggle="collapse"
|
||||
data-target="#mainNavigationLinks"
|
||||
aria-controls="mainNavigationLinks"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation">
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse justify-content-end" id="mainNavigationLinks">
|
||||
<div class="navbar-nav">
|
||||
<a href="#!/home" data-href="html/main.html" class="nav-item nav-link internal-navigation active">Home</a>
|
||||
<a href="#!/releases" data-href="html/releases.html" class="nav-item nav-link internal-navigation">Releases</a>
|
||||
<a href="#!/documentation" data-href="html/documentation.html" class="nav-item nav-link internal-navigation">Documentation</a>
|
||||
<!--<a href="#!/news" data-href="html/news.html" class="nav-item nav-link internal-navigation">News</a>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://github.com/GoogleCloudPlatform">GoogleCloudPlatform</a></li>
|
||||
<li><a href="https://ghost.org/">Ghost</a></li>
|
||||
<li><a href="https://www.meteor.com/">Meteor</a></li>
|
||||
<li>
|
||||
<a href="http://stackexchange.com/">Stackexchange</a> - forked as <a href="https://code.google.com/p/pagedown/">PageDown</a>
|
||||
</li>
|
||||
<li><a href="https://github.com/Vertafore/docular">docular</a></li>
|
||||
<li><a href="https://www.npmjs.com/browse/depended/showdown">and some others...</a></li>
|
||||
</ul>
|
||||
<header id="call-to-action" class="jumbotron jumbotron-fluid">
|
||||
<div class="container">
|
||||
<div class="positioner">
|
||||
<h2 class="display-2 showdown-brand"><span>Show</span><span class="text-secondary">down</span></h2>
|
||||
<p class="lead">A Markdown to HTML converter written in Javascript!</p>
|
||||
<div>
|
||||
<a id="lt-version-lnk" class="btn btn-primary btn-lg download-button" href="https://github.com/showdownjs/showdown/releases/latest" role="button">Download <em id="lt-version-num"></em></a><br>
|
||||
<span class="download-links">
|
||||
<a href="#">Release notes</a> -
|
||||
<a href="https://github.com/showdownjs/showdown" target="_blank">GitHub</a> -
|
||||
<a href="https://www.npmjs.com/package/showdown" target="_blank">NPM</a> -
|
||||
<a href="https://cdnjs.com/libraries/showdown" target="_blank">CDNJS</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<h1>
|
||||
<a id="get-it" class="anchor" href="#get-it" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Get it...</h1>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<strong>Download tarball:</strong> download the latest release tarball directly from <a href="https://github.com/showdownjs/showdown/releases">releases</a>
|
||||
</li>
|
||||
<li>
|
||||
<strong>CDN:</strong>
|
||||
|
||||
<ul>
|
||||
<li>rawgit: <code>https://cdn.rawgit.com/showdownjs/showdown/<version tag>/dist/showdown.min.js</code>
|
||||
</li>
|
||||
<li>cdnjs: <code>https://cdnjs.cloudflare.com/ajax/libs/showdown/<version tag>/showdown.min.js</code>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<strong>Bower:</strong> <code>bower install showdown</code>
|
||||
</li>
|
||||
<li>
|
||||
<strong>npm:</strong> <code>npm install showdown</code>
|
||||
</li>
|
||||
<li>
|
||||
<strong>NuGet:</strong> <code>PM> Install-Package showdownjs</code> - <a href="https://www.nuget.org/packages/showdownjs/">NuGet package here</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h1>
|
||||
<a id="use-it" class="anchor" href="#use-it" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Use it...</h1>
|
||||
|
||||
<div class="highlight highlight-source-js"><pre><span class="pl-c">//node</span>
|
||||
<span class="pl-k">var</span> showdown <span class="pl-k">=</span> <span class="pl-c1">require</span>(<span class="pl-s"><span class="pl-pds">'</span>showdown<span class="pl-pds">'</span></span>);
|
||||
<span class="pl-k">var</span> converter <span class="pl-k">=</span> <span class="pl-k">new</span> <span class="pl-en">showdown.Converter</span>();
|
||||
<span class="pl-k">var</span> htmlOutput <span class="pl-k">=</span> <span class="pl-smi">converter</span>.<span class="pl-en">makeHtml</span>(<span class="pl-s"><span class="pl-pds">'</span>*Hello* __World__<span class="pl-pds">'</span></span>);</pre></div>
|
||||
|
||||
<p>Check our <a href="https://github.com/showdownjs/showdown/wiki">wiki pages</a> for a more in-depth documentation, such as <a href="https://github.com/showdownjs/showdown/wiki/Showdown's-Markdown-syntax">syntax support</a>, <a href="https://github.com/showdownjs/showdown/wiki/Tutorial:-Markdown-editor-using-Showdown">examples</a>, <a href="https://github.com/showdownjs/showdown/wiki/extensions">extensions</a>, etc...</p>
|
||||
|
||||
<hr>
|
||||
|
||||
<h1>
|
||||
<a id="changelog" class="anchor" href="#changelog" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a><a href="https://github.com/showdownjs/showdown/blob/master/CHANGELOG.md">Changelog</a>
|
||||
</h1>
|
||||
|
||||
<div id="changelog-div"></div>
|
||||
<article id="page"></article>
|
||||
|
||||
|
||||
<footer class="site-footer">
|
||||
<span class="site-footer-owner"><a href="https://github.com/showdownjs/showdown">Showdown</a> is maintained by <a href="https://github.com/tivie">tivie</a>.</span>
|
||||
<span class="site-powered-by">Powered by: <a href="https://www.jetbrains.com/webstorm/"><img src="images/logo_WebStorm.png" alt="webstorm"></a></span>
|
||||
<span class="site-footer-credits">Full credit list <a href="https://github.com/showdownjs/showdown/blob/master/CREDITS.md">here</a>.</span>
|
||||
</footer>
|
||||
<section id="donate" class="page-section blackboard">
|
||||
<div class="container">
|
||||
<h1 class="display-4">Donate</h1>
|
||||
<p class="monospace">
|
||||
As you know, <span class="showdown-brand">Show<span class="text-secondary">down</span></span> is a free library and it will remain free.<br>
|
||||
However, maintaining and improving the library costs time and money.<br>
|
||||
If you like our work and find our library useful,
|
||||
please donate <a href="https://pledgie.com/campaigns/35166" rel="nofollow">through Pledgie</a>
|
||||
or directly <a href="https://www.paypal.me/tiviesantos" rel="nofollow">through paypal</a>.<br>
|
||||
Your contribution will be greatly appreciated and help us continue to develop this awesome library.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</section>
|
||||
<footer id="footer" class="page-section blackboard">
|
||||
<div class="container">
|
||||
<nav class="links nav justify-content-center">
|
||||
<a target="_blank" title="facebook" class="nav-link" href="https://www.facebook.com/showdownjs/"><i class="fa fa-fw fa-facebook-official" aria-hidden="true"></i></a>
|
||||
<a target="_blank" title="twiiter" class="nav-link" href="https://twitter.com/showdownjs"><i class="fa fa-fw fa-twitter" aria-hidden="true"></i></a>
|
||||
<a target="_blank" title="github" class="nav-link" href="https://github.com/showdownjs/showdown"><i class="fa fa-fw fa-github" aria-hidden="true"></i></a>
|
||||
<a target="_blank" title="stackoverflow" class="nav-link" href="https://stackoverflow.com/questions/tagged/showdown"><i class="fa fa-fw fa-stack-overflow" aria-hidden="true"></i></a>
|
||||
</nav>
|
||||
<div class="copyright">
|
||||
<span>Showdown is maintained by <a href="https://github.com/tivie">tivie</a>.</span><br>
|
||||
<span>showdown © showdownjs 2017. All Rights Reserved</span>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/1.8.5/showdown.min.js" integrity="sha256-rnlCzq7mhN7HlGWkWJ539aucrpHWZOFa/9SqlQvKxjQ=" crossorigin="anonymous"></script>
|
||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlightjs-line-numbers.js/2.1.0/highlightjs-line-numbers.min.js"></script>
|
||||
<script src="js/app.js"></script>
|
||||
<script>
|
||||
function callAjax(url, callback){
|
||||
|
||||
var xmlhttp = new XMLHttpRequest();
|
||||
xmlhttp.onreadystatechange = function() {
|
||||
if (xmlhttp.readyState == 4 && xmlhttp.status == 200){
|
||||
callback(xmlhttp.responseText);
|
||||
}
|
||||
};
|
||||
xmlhttp.open("GET", url, true);
|
||||
xmlhttp.send();
|
||||
}
|
||||
|
||||
var conv = new showdown.Converter();
|
||||
conv.setFlavor('github');
|
||||
|
||||
callAjax('http://raw.githubusercontent.com/showdownjs/showdown/master/CHANGELOG.md', function (data) {
|
||||
if (typeof data === 'string' || data instanceof String) {
|
||||
document.getElementById('changelog-div').innerHTML = conv.makeHtml(data);
|
||||
}
|
||||
});
|
||||
hljs.initHighlightingOnLoad();
|
||||
hljs.initLineNumbersOnLoad();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
</body>
|
||||
</html>
|
@ -1 +0,0 @@
|
||||
console.log('This would be the main JS file.');
|
71
js/app.js
Normal file
@ -0,0 +1,71 @@
|
||||
latestVersion = 0;
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
getLatestVersion();
|
||||
|
||||
function loadPage(url) {
|
||||
$('#page')
|
||||
.load(url, function () {
|
||||
console.log('navigate to ' + url);
|
||||
$('#page').find('pre>code').each(function(i, block) {
|
||||
hljs.highlightBlock(block);
|
||||
hljs.lineNumbersBlock(block);
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
function getCurrentUrl (router) {
|
||||
var uriSplit = window.location.href.split('#!');
|
||||
var defaultShebang = '#!/home';
|
||||
var shebang = '';
|
||||
var currentUrl = '';
|
||||
if (typeof uriSplit[1] === 'undefined') {
|
||||
shebang = defaultShebang;
|
||||
} else {
|
||||
shebang = '#!' + uriSplit[1];
|
||||
}
|
||||
if (router.hasOwnProperty(shebang)) {
|
||||
currentUrl = router[shebang];
|
||||
} else {
|
||||
currentUrl = router[defaultShebang];
|
||||
}
|
||||
return currentUrl;
|
||||
}
|
||||
|
||||
function getLatestVersion() {
|
||||
$.getJSON('https://api.github.com/repos/showdownjs/showdown/releases/latest', function (data) {
|
||||
$('#lt-version-num').html('v' + data.tag_name);
|
||||
$('#lt-version-lnk').attr('href', data.zipball_url);
|
||||
latestVersion = data.tag_name;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
$('.internal-navigation').click(function(evt) {
|
||||
$('.internal-navigation').removeClass('active');
|
||||
$(this).addClass('active');
|
||||
|
||||
var url = $(this).attr('data-href');
|
||||
//load page
|
||||
loadPage(url);
|
||||
|
||||
// smooth scroll to page
|
||||
$('html, body').animate({
|
||||
scrollTop: $('#page').offset().top
|
||||
}, 500);
|
||||
});
|
||||
|
||||
|
||||
var router = {};
|
||||
|
||||
|
||||
$('.internal-navigation').each(function () {
|
||||
var shebang = $(this).attr('href');
|
||||
router[shebang] = $(this).attr('data-href');
|
||||
});
|
||||
|
||||
// load page on startup
|
||||
loadPage(getCurrentUrl(router));
|
||||
});
|
@ -1,124 +0,0 @@
|
||||
/*
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016 GitHub, Inc.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
*/
|
||||
|
||||
.pl-c /* comment */ {
|
||||
color: #969896;
|
||||
}
|
||||
|
||||
.pl-c1 /* constant, variable.other.constant, support, meta.property-name, support.constant, support.variable, meta.module-reference, markup.raw, meta.diff.header */,
|
||||
.pl-s .pl-v /* string variable */ {
|
||||
color: #0086b3;
|
||||
}
|
||||
|
||||
.pl-e /* entity */,
|
||||
.pl-en /* entity.name */ {
|
||||
color: #795da3;
|
||||
}
|
||||
|
||||
.pl-smi /* variable.parameter.function, storage.modifier.package, storage.modifier.import, storage.type.java, variable.other */,
|
||||
.pl-s .pl-s1 /* string source */ {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.pl-ent /* entity.name.tag */ {
|
||||
color: #63a35c;
|
||||
}
|
||||
|
||||
.pl-k /* keyword, storage, storage.type */ {
|
||||
color: #a71d5d;
|
||||
}
|
||||
|
||||
.pl-s /* string */,
|
||||
.pl-pds /* punctuation.definition.string, string.regexp.character-class */,
|
||||
.pl-s .pl-pse .pl-s1 /* string punctuation.section.embedded source */,
|
||||
.pl-sr /* string.regexp */,
|
||||
.pl-sr .pl-cce /* string.regexp constant.character.escape */,
|
||||
.pl-sr .pl-sre /* string.regexp source.ruby.embedded */,
|
||||
.pl-sr .pl-sra /* string.regexp string.regexp.arbitrary-repitition */ {
|
||||
color: #183691;
|
||||
}
|
||||
|
||||
.pl-v /* variable */ {
|
||||
color: #ed6a43;
|
||||
}
|
||||
|
||||
.pl-id /* invalid.deprecated */ {
|
||||
color: #b52a1d;
|
||||
}
|
||||
|
||||
.pl-ii /* invalid.illegal */ {
|
||||
color: #f8f8f8;
|
||||
background-color: #b52a1d;
|
||||
}
|
||||
|
||||
.pl-sr .pl-cce /* string.regexp constant.character.escape */ {
|
||||
font-weight: bold;
|
||||
color: #63a35c;
|
||||
}
|
||||
|
||||
.pl-ml /* markup.list */ {
|
||||
color: #693a17;
|
||||
}
|
||||
|
||||
.pl-mh /* markup.heading */,
|
||||
.pl-mh .pl-en /* markup.heading entity.name */,
|
||||
.pl-ms /* meta.separator */ {
|
||||
font-weight: bold;
|
||||
color: #1d3e81;
|
||||
}
|
||||
|
||||
.pl-mq /* markup.quote */ {
|
||||
color: #008080;
|
||||
}
|
||||
|
||||
.pl-mi /* markup.italic */ {
|
||||
font-style: italic;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.pl-mb /* markup.bold */ {
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.pl-md /* markup.deleted, meta.diff.header.from-file */ {
|
||||
color: #bd2c00;
|
||||
background-color: #ffecec;
|
||||
}
|
||||
|
||||
.pl-mi1 /* markup.inserted, meta.diff.header.to-file */ {
|
||||
color: #55a532;
|
||||
background-color: #eaffea;
|
||||
}
|
||||
|
||||
.pl-mdr /* meta.diff.range */ {
|
||||
font-weight: bold;
|
||||
color: #795da3;
|
||||
}
|
||||
|
||||
.pl-mo /* meta.output */ {
|
||||
color: #1d3e81;
|
||||
}
|
||||
|
424
stylesheets/normalize.css
vendored
@ -1,424 +0,0 @@
|
||||
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
|
||||
|
||||
/**
|
||||
* 1. Set default font family to sans-serif.
|
||||
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
||||
* user zoom.
|
||||
*/
|
||||
|
||||
html {
|
||||
font-family: sans-serif; /* 1 */
|
||||
-ms-text-size-adjust: 100%; /* 2 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove default margin.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* HTML5 display definitions
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Correct `block` display not defined for any HTML5 element in IE 8/9.
|
||||
* Correct `block` display not defined for `details` or `summary` in IE 10/11
|
||||
* and Firefox.
|
||||
* Correct `block` display not defined for `main` in IE 11.
|
||||
*/
|
||||
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
main,
|
||||
menu,
|
||||
nav,
|
||||
section,
|
||||
summary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `inline-block` display not defined in IE 8/9.
|
||||
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
progress,
|
||||
video {
|
||||
display: inline-block; /* 1 */
|
||||
vertical-align: baseline; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent modern browsers from displaying `audio` without controls.
|
||||
* Remove excess height in iOS 5 devices.
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `[hidden]` styling not present in IE 8/9/10.
|
||||
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
|
||||
*/
|
||||
|
||||
[hidden],
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Links
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background color from active links in IE 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Improve readability when focused and also mouse hovered in all browsers.
|
||||
*/
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in Safari and Chrome.
|
||||
*/
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address variable `h1` font-size and margin within `section` and `article`
|
||||
* contexts in Firefox 4+, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9.
|
||||
*/
|
||||
|
||||
mark {
|
||||
background: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent and variable font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove border when inside `a` element in IE 8/9/10.
|
||||
*/
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct overflow not hidden in IE 9/10/11.
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address margin not present in IE 8/9 and Safari.
|
||||
*/
|
||||
|
||||
figure {
|
||||
margin: 1em 40px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address differences between Firefox and other browsers.
|
||||
*/
|
||||
|
||||
hr {
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Contain overflow in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address odd `em`-unit font size rendering in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-family: monospace, monospace;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Known limitation: by default, Chrome and Safari on OS X allow very limited
|
||||
* styling of `select`, unless a `border` property is set.
|
||||
*/
|
||||
|
||||
/**
|
||||
* 1. Correct color not being inherited.
|
||||
* Known issue: affects color of disabled elements.
|
||||
* 2. Correct font properties not being inherited.
|
||||
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
color: inherit; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
margin: 0; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `overflow` set to `hidden` in IE 8/9/10/11.
|
||||
*/
|
||||
|
||||
button {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
||||
* All other form control elements do not inherit `text-transform` values.
|
||||
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
||||
* Correct `select` style inheritance in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
||||
* and `video` controls.
|
||||
* 2. Correct inability to style clickable `input` types in iOS.
|
||||
* 3. Improve usability and consistency of cursor style between image-type
|
||||
* `input` and others.
|
||||
*/
|
||||
|
||||
button,
|
||||
html input[type="button"], /* 1 */
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
-webkit-appearance: button; /* 2 */
|
||||
cursor: pointer; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Re-set default cursor for disabled elements.
|
||||
*/
|
||||
|
||||
button[disabled],
|
||||
html input[disabled] {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and border in Firefox 4+.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
||||
* the UA stylesheet.
|
||||
*/
|
||||
|
||||
input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/**
|
||||
* It's recommended that you don't attempt to style these elements.
|
||||
* Firefox's implementation doesn't respect box-sizing, padding, or width.
|
||||
*
|
||||
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
||||
* 2. Remove excess padding in IE 8/9/10.
|
||||
*/
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
||||
* `font-size` values of the `input`, it causes the cursor style of the
|
||||
* decrement button to change from `default` to `text`.
|
||||
*/
|
||||
|
||||
input[type="number"]::-webkit-inner-spin-button,
|
||||
input[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
||||
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
|
||||
* (include `-moz` to future-proof).
|
||||
*/
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */ /* 2 */
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
||||
* Safari (but not Chrome) clips the cancel button when the search input has
|
||||
* padding (and `textfield` appearance).
|
||||
*/
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define consistent border, margin, and padding.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #c0c0c0;
|
||||
margin: 0 2px;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `color` not being inherited in IE 8/9/10/11.
|
||||
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
||||
*/
|
||||
|
||||
legend {
|
||||
border: 0; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove default vertical scrollbar in IE 8/9/10/11.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Don't inherit the `font-weight` (applied by a rule above).
|
||||
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
||||
*/
|
||||
|
||||
optgroup {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Tables
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove most spacing between table cells.
|
||||
*/
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
padding: 0;
|
||||
}
|
@ -1,70 +0,0 @@
|
||||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #f0f3f3; }
|
||||
.highlight .c { color: #0099FF; font-style: italic } /* Comment */
|
||||
.highlight .err { color: #AA0000; background-color: #FFAAAA } /* Error */
|
||||
.highlight .k { color: #006699; font-weight: bold } /* Keyword */
|
||||
.highlight .o { color: #555555 } /* Operator */
|
||||
.highlight .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #009999 } /* Comment.Preproc */
|
||||
.highlight .c1 { color: #0099FF; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
|
||||
.highlight .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #003300; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
|
||||
.highlight .go { color: #AAAAAA } /* Generic.Output */
|
||||
.highlight .gp { color: #000099; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #003300; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #99CC66 } /* Generic.Traceback */
|
||||
.highlight .kc { color: #006699; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #006699 } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #007788; font-weight: bold } /* Keyword.Type */
|
||||
.highlight .m { color: #FF6600 } /* Literal.Number */
|
||||
.highlight .s { color: #CC3300 } /* Literal.String */
|
||||
.highlight .na { color: #330099 } /* Name.Attribute */
|
||||
.highlight .nb { color: #336666 } /* Name.Builtin */
|
||||
.highlight .nc { color: #00AA88; font-weight: bold } /* Name.Class */
|
||||
.highlight .no { color: #336600 } /* Name.Constant */
|
||||
.highlight .nd { color: #9999FF } /* Name.Decorator */
|
||||
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
||||
.highlight .ne { color: #CC0000; font-weight: bold } /* Name.Exception */
|
||||
.highlight .nf { color: #CC00FF } /* Name.Function */
|
||||
.highlight .nl { color: #9999FF } /* Name.Label */
|
||||
.highlight .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
|
||||
.highlight .nt { color: #330099; font-weight: bold } /* Name.Tag */
|
||||
.highlight .nv { color: #003333 } /* Name.Variable */
|
||||
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.highlight .mf { color: #FF6600 } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #FF6600 } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #FF6600 } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #FF6600 } /* Literal.Number.Oct */
|
||||
.highlight .sb { color: #CC3300 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #CC3300 } /* Literal.String.Char */
|
||||
.highlight .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #CC3300 } /* Literal.String.Double */
|
||||
.highlight .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #CC3300 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #AA0000 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #CC3300 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #33AAAA } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #CC3300 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #FFCC33 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #336666 } /* Name.Builtin.Pseudo */
|
||||
.highlight .vc { color: #003333 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #003333 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #003333 } /* Name.Variable.Instance */
|
||||
.highlight .il { color: #FF6600 } /* Literal.Number.Integer.Long */
|
||||
|
||||
.type-csharp .highlight .k { color: #0000FF }
|
||||
.type-csharp .highlight .kt { color: #0000FF }
|
||||
.type-csharp .highlight .nf { color: #000000; font-weight: normal }
|
||||
.type-csharp .highlight .nc { color: #2B91AF }
|
||||
.type-csharp .highlight .nn { color: #000000 }
|
||||
.type-csharp .highlight .s { color: #A31515 }
|
||||
.type-csharp .highlight .sc { color: #A31515 }
|
@ -1,258 +0,0 @@
|
||||
* {
|
||||
box-sizing: border-box; }
|
||||
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
color: #606c71; }
|
||||
|
||||
a {
|
||||
color: #1e6bb8;
|
||||
text-decoration: none; }
|
||||
a:hover {
|
||||
text-decoration: underline; }
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
margin-bottom: 1rem;
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
background-color: rgba(255, 255, 255, 0.08);
|
||||
border-color: rgba(255, 255, 255, 0.2);
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
border-radius: 0.3rem;
|
||||
transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
|
||||
.btn + .btn {
|
||||
margin-left: 1rem; }
|
||||
|
||||
.btn:hover {
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
text-decoration: none;
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.3); }
|
||||
|
||||
@media screen and (min-width: 64em) {
|
||||
.btn {
|
||||
padding: 0.75rem 1rem; } }
|
||||
|
||||
@media screen and (min-width: 42em) and (max-width: 64em) {
|
||||
.btn {
|
||||
padding: 0.6rem 0.9rem;
|
||||
font-size: 0.9rem; } }
|
||||
|
||||
@media screen and (max-width: 42em) {
|
||||
.btn {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0.75rem;
|
||||
font-size: 0.9rem; }
|
||||
.btn + .btn {
|
||||
margin-top: 1rem;
|
||||
margin-left: 0; } }
|
||||
|
||||
.page-header {
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
background-color: #159957;
|
||||
background-image: linear-gradient(120deg, #155799, #159957); }
|
||||
|
||||
@media screen and (min-width: 64em) {
|
||||
.page-header {
|
||||
padding: 5rem 6rem; } }
|
||||
|
||||
@media screen and (min-width: 42em) and (max-width: 64em) {
|
||||
.page-header {
|
||||
padding: 3rem 4rem; } }
|
||||
|
||||
@media screen and (max-width: 42em) {
|
||||
.page-header {
|
||||
padding: 2rem 1rem; } }
|
||||
|
||||
.project-name {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.1rem;}
|
||||
|
||||
.project-name img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 64em) {
|
||||
.project-name {
|
||||
font-size: 3.25rem; } }
|
||||
|
||||
@media screen and (min-width: 42em) and (max-width: 64em) {
|
||||
.project-name {
|
||||
font-size: 2.25rem; } }
|
||||
|
||||
@media screen and (max-width: 42em) {
|
||||
.project-name {
|
||||
font-size: 1.75rem; } }
|
||||
|
||||
.project-tagline {
|
||||
margin-bottom: 2rem;
|
||||
font-weight: normal;
|
||||
opacity: 0.7; }
|
||||
|
||||
@media screen and (min-width: 64em) {
|
||||
.project-tagline {
|
||||
font-size: 1.25rem; } }
|
||||
|
||||
@media screen and (min-width: 42em) and (max-width: 64em) {
|
||||
.project-tagline {
|
||||
font-size: 1.15rem; } }
|
||||
|
||||
@media screen and (max-width: 42em) {
|
||||
.project-tagline {
|
||||
font-size: 1rem; } }
|
||||
|
||||
.main-content :first-child {
|
||||
margin-top: 0; }
|
||||
.main-content img {
|
||||
max-width: 100%; }
|
||||
.main-content h1, .main-content h2, .main-content h3, .main-content h4, .main-content h5, .main-content h6 {
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
font-weight: normal;
|
||||
color: #159957; }
|
||||
.main-content p {
|
||||
margin-bottom: 1em; }
|
||||
.main-content code {
|
||||
padding: 2px 4px;
|
||||
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
||||
font-size: 0.9rem;
|
||||
color: #383e41;
|
||||
background-color: #f3f6fa;
|
||||
border-radius: 0.3rem; }
|
||||
.main-content pre {
|
||||
padding: 0.8rem;
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
font: 1rem Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
||||
color: #567482;
|
||||
word-wrap: normal;
|
||||
background-color: #f3f6fa;
|
||||
border: solid 1px #dce6f0;
|
||||
border-radius: 0.3rem; }
|
||||
.main-content pre > code {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-size: 0.9rem;
|
||||
color: #567482;
|
||||
word-break: normal;
|
||||
white-space: pre;
|
||||
background: transparent;
|
||||
border: 0; }
|
||||
.main-content .highlight {
|
||||
margin-bottom: 1rem; }
|
||||
.main-content .highlight pre {
|
||||
margin-bottom: 0;
|
||||
word-break: normal; }
|
||||
.main-content .highlight pre, .main-content pre {
|
||||
padding: 0.8rem;
|
||||
overflow: auto;
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.45;
|
||||
border-radius: 0.3rem; }
|
||||
.main-content pre code, .main-content pre tt {
|
||||
display: inline;
|
||||
max-width: initial;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
overflow: initial;
|
||||
line-height: inherit;
|
||||
word-wrap: normal;
|
||||
background-color: transparent;
|
||||
border: 0; }
|
||||
.main-content pre code:before, .main-content pre code:after, .main-content pre tt:before, .main-content pre tt:after {
|
||||
content: normal; }
|
||||
.main-content ul, .main-content ol {
|
||||
margin-top: 0; }
|
||||
.main-content blockquote {
|
||||
padding: 0 1rem;
|
||||
margin-left: 0;
|
||||
color: #819198;
|
||||
border-left: 0.3rem solid #dce6f0; }
|
||||
.main-content blockquote > :first-child {
|
||||
margin-top: 0; }
|
||||
.main-content blockquote > :last-child {
|
||||
margin-bottom: 0; }
|
||||
.main-content table {
|
||||
display: block;
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
word-break: normal;
|
||||
word-break: keep-all; }
|
||||
.main-content table th {
|
||||
font-weight: bold; }
|
||||
.main-content table th, .main-content table td {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #e9ebec; }
|
||||
.main-content dl {
|
||||
padding: 0; }
|
||||
.main-content dl dt {
|
||||
padding: 0;
|
||||
margin-top: 1rem;
|
||||
font-size: 1rem;
|
||||
font-weight: bold; }
|
||||
.main-content dl dd {
|
||||
padding: 0;
|
||||
margin-bottom: 1rem; }
|
||||
.main-content hr {
|
||||
height: 2px;
|
||||
padding: 0;
|
||||
margin: 1rem 0;
|
||||
background-color: #eff0f1;
|
||||
border: 0; }
|
||||
|
||||
@media screen and (min-width: 64em) {
|
||||
.main-content {
|
||||
max-width: 64rem;
|
||||
padding: 2rem 6rem;
|
||||
margin: 0 auto;
|
||||
font-size: 1.1rem; } }
|
||||
|
||||
@media screen and (min-width: 42em) and (max-width: 64em) {
|
||||
.main-content {
|
||||
padding: 2rem 4rem;
|
||||
font-size: 1.1rem; } }
|
||||
|
||||
@media screen and (max-width: 42em) {
|
||||
.main-content {
|
||||
padding: 2rem 1rem;
|
||||
font-size: 1rem; } }
|
||||
|
||||
.site-footer {
|
||||
padding-top: 2rem;
|
||||
margin-top: 2rem;
|
||||
border-top: solid 1px #eff0f1; }
|
||||
|
||||
.site-footer-owner {
|
||||
display: block;
|
||||
font-weight: bold; }
|
||||
|
||||
.site-footer-credits {
|
||||
display: block;
|
||||
color: #819198; }
|
||||
|
||||
.site-powered-by {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.site-powered-by img {
|
||||
height: 1rem;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 64em) {
|
||||
.site-footer {
|
||||
font-size: 1rem; } }
|
||||
|
||||
@media screen and (min-width: 42em) and (max-width: 64em) {
|
||||
.site-footer {
|
||||
font-size: 1rem; } }
|
||||
|
||||
@media screen and (max-width: 42em) {
|
||||
.site-footer {
|
||||
font-size: 0.9rem; } }
|