-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 868 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Capture Window</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="title-bar">
<div class="drag-bar"></div>
<div class="title">Capture Window</div>
<div class="window-controls">
<span class="control minimize">
<i class="material-icons">remove</i>
</span>
<span class="control maximize">
<i class="material-icons">add</i>
</span>
<span class="control close">
<i class="material-icons">clear</i>
</span>
</div>
</div>
<div class="info-bar">
<span id="dimensions" contenteditable="true"></span> <a id="reset" href="#"><i class="material-icons">not_interested</i></a>
</div>
<script src="window.js"></script>
</body>
</html>