-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
29 lines (28 loc) · 844 Bytes
/
card.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
<!DOCTYPE html>
<html style="cursor: default">
<head>
<meta charset="UTF-8" />
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: snip:; media-src 'self';"
/>
<link href="./styles.css" rel="stylesheet" />
<title>Oversnip</title>
</head>
<body style="cursor: default">
<div class="card"></div>
<div class="drag-bar"></div>
<svg
class="close-card"
xmlns="http://www.w3.org/2000/svg"
height="40"
width="40"
>
<path
d="m10.583 30.417-1-1L19 20l-9.417-9.417 1-1L20 19l9.417-9.417 1 1L21 20l9.417 9.417-1 1L20 21Z"
/>
</svg>
<script src="./renderer.js"></script>
</body>
</html>