-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
69 lines (58 loc) · 1.47 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
</head>
<style>
body {
font-family: Arial;
font-size: 15px;
font-weight: bold;
color: white;
background-color: black;
}
textarea,
button,
label {
display: block;
}
textarea {
resize: none;
border-radius: 4px;
background-color: transparent;
color: white;
}
#submit {
color: white;
background-color: green;
border: 0;
border-radius: 5px;
width: 100%;
padding: 5px;
}
#submit:hover {
background-color: darkgreen;
}
#submit:disabled {
opacity: 0.6;
}
</style>
<body>
<label for="textbox-buy">whisper (buy)</label>
<textarea
placeholder="Hi! I want to buy: {item} for {cost} platinum. (warframe.market)"
id="textbox-buy"
rows="4"
cols="25"
></textarea>
<label for="textbox-sell">whisper (sell)</label>
<textarea
placeholder="Hi! I want to sell: {item} for {cost} platinum. (warframe.market)"
id="textbox-sell"
rows="4"
cols="25"
></textarea>
<button id="submit">save</button>
<script src="popup.js"></script>
</body>
</html>