-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
48 lines (43 loc) · 1.48 KB
/
popup.html
File metadata and controls
48 lines (43 loc) · 1.48 KB
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
<!DOCTYPE html>
<html>
<head>
<style>
body {padding:10px 15px; position:relative;}
button {
outline: none;
font-size:12px;
padding:5px 10px;
border:none; cursor:pointer;
position:absolute;
bottom:12px;
}
span { margin-bottom:5px; display:block; font-weight:bold;}
#start-btn { background-color:#4CAF50; color:white; }
#end-btn { background-color:#d8117d; color:white; }
#display-one, #display-two { width:180px; margin-bottom:50px;}
#display-two,#display-one { display:none; }
#display-one>:first-child, #display-two>:first-child { margin-top:0; }
#icon-cancel { display: inline-block;
float: right;
font-size: 14px;
width: 18px;
height: 18px;
border-radius: 16px;
border:2px solid red;
text-align: center;
line-height: 1.1;
cursor:pointer; }
</style>
<script type="text/javascript" src="oauth.js"></script>
</head>
<body>
<div id="display-one">
<p><span>Client</span><input id="client" type="text"></p>
<p><span>Job Descripion</span><textarea id="description" rows="4"></textarea></p>
<p><button id="start-btn">Start</button></p>
</div>
<div id="display-two">
</div>
<script src="popup.js"></script>
</body>
</html>