-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
51 lines (49 loc) · 1.09 KB
/
popup.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
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<title>Demo Notes</title>
<style>
* {
margin: 0px;
padding: 0px;
}
textarea {
width: 300px;
height: 400px;
padding: 5px 3px 2px 3px;
}
h3 {
text-align: center;
padding: 5px;
background: rgb(63, 63, 240);
color: white;
}
.button {
width: 100%;
height: 40px;
padding: 5px;
background-color: blueviolet;
}
button {
width: 70px;
height: 40px;
padding: 5px 10px 5px 10px;
}
.button > button:last-child {
float: right;
margin-right: 15px;
padding-right: 10px;
}
</style>
</head>
<body>
<script src="function.js"></script>
<h3>Demo Notes</h3>
<textarea name="notes" id="content-area">
</textarea>
<div class="button">
<button id="saveBut">Save</button>
<button id="openBut">Open</button>
</div>
</body>
</html>