forked from kwkevinlin/MultiCopyAndPaste
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
61 lines (57 loc) · 1.8 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
<!doctype html>
<html>
<head>
<title>Multi-Copy and Paste</title>
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/popup.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: #eee;
}
p {
font-family: 'Open Sans', sans-serif;
font-weight: 200;
font-size: 14px;
}
.dropdown-menu {
left: 50%;
right: auto;
text-align: center;
transform: translate(-50%, 0);
background-color: #eee;
}
</style>
</head>
<body>
<div align="center" style="width:460px; height: 310px;"> <!-- 225 225 -->
<h1 style="margin-bottom: 15px; border-bottom: 5px solid #57c4d0; display: inline-block; width:85%">Multi-Copy and Paste</h1>
<div class="container-fluid">
<div class="row" style="margin: 0 auto; text-align: left;">
<!-- http://stackoverflow.com/questions/1774477/centre-aligned-div-that-has-text-aligned-to-the-left -->
<div class="col-xs-12">
<div class="mainColumn">
<label>First Copy</label>
<input type="text" class="form-control" id="clipboard_1">
</div>
</div>
<div class="col-xs-12" style="margin-top: 10px">
<div class="mainColumn">
<label>Second Copy</label>
<input type="text" class="form-control" id="clipboard_2">
</div>
</div>
<div class="col-xs-12" style="margin-top: 10px">
<div class="mainColumn">
<label>Third Copy</label>
<input type="text" class="form-control" id="clipboard_3">
</div>
</div>
</div> <!-- row div -->
</div> <!-- container div -->
</div> <!-- center align div -->
</body>
</html>
<!-- Output links to new tab? -->