Added logo

This commit is contained in:
Edgar P. Burkhart 2022-01-28 08:54:36 +01:00
parent 0b42dd7d52
commit fc7098cd52
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<svg version="1.1"
width="1000" height="1000"
xmlns="http://www.w3.org/2000/svg">
<circle cx="500" cy="500" r="300" fill="#0f62fe" />
<mask id="mask">
<rect x="-100" y="-100" width="1200" height="1200" fill="white" />
<path d="M 500 500
h 300
A 300 300 180 0 0 200 500
Z" fill="black" />
</mask>
<ellipse cx="500" cy="500" rx="450" ry="100"
fill="none" stroke="#002d9c" stroke-width="50"
transform="rotate(-45 500 500)"
mask="url(#mask)"/>
<ellipse cx="500" cy="500" rx="500" ry="102"
fill="none" stroke="#002d9c" stroke-width="50"
transform="rotate(-45 500 500)"
mask="url(#mask)"/>
</svg>

After

Width:  |  Height:  |  Size: 624 B

View File

@ -6,6 +6,7 @@
<title>{% block title %}Saturn{% endblock %}</title>
<link rel="icon" type="text/svg" href="/static/svg/logo.svg" />
{% block style %}
<link rel="stylesheet" href="/static/css/main.css" />
{% endblock %}