-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
26 lines (26 loc) · 926 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<style>
.center {
flex-direction: column;
display: flex;
justify-content: center;
align-items: center;
},
</style>
</head>
<body style="margin:0;overflow:hidden;background-image: linear-gradient(-45deg, #FFFFFF, #ede3fe);height: 130px;width: 250px;">
<div style="flex-direction: row;display: flex;justify-content: center;margin: 10px">
<img src="images/icon48.png" style="margin-right:20px;" width="48" height="48">
<h1>Cursory</h1>
<strong>v1</strong>
</div>
<div class="center">
<br>
<button style="border-radius: 5px;padding: 5px 8px;background-color: #575757;color: #e3d3fe;border: none;" id="cursify">Cursify now!</button>
<img id="loader" src="images/loader.gif" alt="Please wait ..." width="48" height="48">
</div>
<script src="popup.js"></script>
</body>
</html>