-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
72 lines (59 loc) · 1.76 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
70
71
72
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>URL Shortener</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Raleway:400,100' rel='stylesheet' type='text/css'>
<script src="jquery-2.2.1.js"></script>
<script src="popup.js"></script>
<script src="https://apis.google.com/js/client.js?onload=init"></script>
<style>
body {
font-family: 'Raleway', sans-serif;
background-color: #e9ece5;
border-style: solid;
border: 10%;
padding: 10%;
border-color: #62bcfa;
}
#title {
font-size: 2em;
text-align: center;
color: #3b3a36;
text-decoration: underline;
}
#copy-url {
padding: 10px;
border-radius: 4px;
font-size: 2.5em;
border: 1px solid #b3c2bf;
text-decoration: none;
text-align: left;
background-color: #c0dfd9;
color: #3b3a36;
}
#copy-url:hover {
background-color: #b3c2bf !important;
}
#short-url {
text-align: center;
font-size: 2em;
color: #3b3a36;
}
#kek {
text-align: center;
}
</style>
</head>
<body>
<div>
<h1 id="title">Shortened URL</h1>
<h2 id="short-url">https://stuff/morestuff</h2>
<div id="kek">
<button class="fa fa-clipboard" id="copy-url"> COPY </button>
</div>
</div>
</body>
</html>