-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
43 lines (40 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<style>
.button-order {
border: none;
background-color: inherit;
transform: translate(57%,150%);
margin: 14px 15px;
font-size: 16px;
cursor: pointer;
display: inline-block;
}
.button-order:hover {background: #eee;}
.takeorder {color: black}
.navbar {
list-style-type: none;
float: left;
margin-right: 50%;
overflow: hidden;
background-color: white;
}
.nav-item {
color: white;
text-decoration: none;
}
</style>
</head>
<body>
<div style="width: 200px; height: 300px;">
<div id="upper-button">
<button style="text-decoration: none; width: 100%;" id='to-page' href="http://sampleproject-env.eba-d26fhkqt.us-east-2.elasticbeanstalk.com/"><strong><h2>Dilly</h2></strong></button>
</div>
<div style="padding-bottom: 10px;" id="order">
<button class="button-order" id="scrapePage">Get order</button>
</div>
<script src="popup.js"></script>
</div>
</body>
</html>