-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
63 lines (52 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 15px;
border-radius: 10px;
background: #bc4e9c; /* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #f80759, #bc4e9c); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to bottom, #f80759, #bc4e9c); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
padding: 0px 20px;
color: white;
width: 200px;
height: 150px;
}
#title {
text-align: center;
margin-top: 40px;
}
a {
color: white;
text-decoration: none;
border-bottom: 1px solid #fff;
}
.form-control {
font-size: 1rem;
display: flex;
margin-bottom: 15px;
justify-content: space-between;
align-items: center;
}
.form-control input {
width: 65px;
padding: 7px;
}
</style>
</head>
<body>
<div id="title">
<h1>Trello Mark</h1>
</div>
<div class="form-control">
<label for="list-width">List Width</label>
<input type="text" id="list-width">
</div>
<div class="form-control">
<label for="list-font">Font Size</label>
<input type="text" id="list-font">
</div>
<script src="popup.js"></script>
</body>
</html>