-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrierte Leitstelle (ILS) hinzugefügt. Fixes #173
- Loading branch information
1 parent
05dc2be
commit b6ff234
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | ||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewbox="0 0 256 256"> | ||
<title>Integrierte Leitstelle</title> | ||
<defs> | ||
<style type="text/css"> | ||
{% include './fonts/fonts.j2' %} | ||
</style> | ||
<clipPath id="base"> | ||
<ellipse cx="128" cy="128" rx="64" ry="64" /> | ||
</clipPath> | ||
</defs> | ||
<ellipse fill="#FFFF00" stroke="#000000" stroke-width="5" cx="128" cy="128" rx="64" ry="64" /> | ||
<text style="font-family: 'Roboto Slab'; font-weight: bold; font-size: 48px; text-anchor: middle;" x="128" y="153">ILS</text> | ||
<rect id="top" x="64" y="64" width="128" height="32" clip-path="url(#base)" /> | ||
<path d="M10 80 L128 48 L246 80" stroke-width="5" stroke="#000000" fill="none" /> | ||
</svg> |