forked from sigma-cw/widget-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
51 lines (41 loc) · 997 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
* {
font-family: proxima-nova, Roboto, sans-serif;
}
p {
margin: 0;
}
a {
color: #ED1B53;
font-weight: 600;
}
a:visited {
color: #ED1B53;
}
.wrapper {
padding: 10px;
}
.title {
font-size: 20px;
font-weight: 800;
color: #ED1B53;
margin-bottom: 10px;
}
.dev {
font-size: 14px;
color: #606060;
margin-top: 5px;
}
</style>
</head>
<body style="width: 200px">
<div class="wrapper">
<p class="title">widget.io</p>
<p class="dev">Developed by <a target="_blank" href="https://twitter.com/sigmacw_">@sigmacw_</a></p>
<p class="dev">Designed by <a target="_blank" href="https://twitter.com/R3do_">@R3do_</a></p>
</div>
</body>
</html>