-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
55 lines (46 loc) · 1.65 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
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<link id="theme" rel="stylesheet" href="css\day.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<style>
#Notes{
min-width: 200px;
min-height: 140px;
max-width: 450px;
max-height: 450px;
outline: 0px !important;
caret-color: #f90;
}
textarea{
resize: auto;
width: 100%;
border: none;
}
.colors{
border-radius: 50%;
width: 25px;
height: 25px;
}
.icon{
width: 30px;
height: 30px;
margin: 8px 8px;
cursor: pointer;
}
</style>
</head>
<body>
<div>
<h4 style="text-align: center; margin: 4px 8px">Easy Notes <img src="assets/icon32.png" alt="Pencil"></h2>
<hr>
<textarea name="Notes" id="Notes" autofocus style="width: 306px;height: 140px; margin: 0px;"></textarea>
</div>
<div class="container-fluid pd-5">
<hr>
</div>
<div id="iconDiv"></div>
<script src="js/jquery.js"></script>
<script src="js/popup.js"></script>
</body>
</html>