-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvg.html
44 lines (40 loc) · 1.34 KB
/
svg.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!--
~ Copyright (c) BSI Business Systems Integration AG. All rights reserved.
~ http://www.bsiag.com/
~
~ This file contains inline SVG images used in various places within specific .html or .hbs files.
~ Use this file if you need to make changes to an inline SVG or to add a new one.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SVG</title>
<style>
.dropshadow {
filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.4));
}
</style>
</head>
<body>
<!-- Version Circle -->
<svg height="36" width="36" class="dropshadow">
<circle cx="18" cy="18" r="17" stroke="#014786" stroke-width="2" fill="white" />
</svg>
<!-- Demo App Donut -->
<!-- Radius set to 24 instead of 25 to avoid browser cutting off parts of the circle
on some zoom levels -->
<svg height="50" width="50">
<circle cx="25" cy="25" r="24" fill="#014786" />
<circle cx="25" cy="25" r="5" fill="white" />
</svg>
<!-- Demo App Dots -->
<svg height="50" width="175">
<circle cx="25" cy="25" r="5" fill="#BBBBBB" />
<circle cx="55" cy="25" r="5" fill="#BBBBBB" />
<circle cx="85" cy="25" r="5" fill="#BBBBBB" />
<circle cx="115" cy="25" r="5" fill="#BBBBBB" />
<circle cx="145" cy="25" r="5" fill="#BBBBBB" />
</svg>
</body>
</html>