-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
72 lines (62 loc) · 1.67 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>
<style>
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,500,700);
body {
width: 300px;
height: 200px;
padding: 10px;
font-family: 'Roboto', sans-serif;
color: #fff;
background: #1e1e1e;
font-size: 20px;
}
h1 {
font-weight: 300;
margin: 0 0 20px 0;
}
.hidden {
display: none;
}
.project-data {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
.client {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.client a {
color: #fff;
text-decoration: none;
font-weight: 300;
}
.title {
/* remove some space between client items and title */
font-size: 25px;
}
</style>
<body>
<div class="app">
<h1>API Test</h1>
<div class="project-data">
<div class="client">
<a class="title">Client</a>
<a>Username: <span class="username">Unknown</span></a>
<a>Public Name: <span class="public-name">Unknown</span></a>
<a style="color: #2196F3; text-decoration: underline; cursor: pointer;" class="view-profile">View Profile</a>
</div>
<div class="project">
</div>
</div>
</div>
<div class="no-app">
<h1>API Test</h1>
<p>Open a project on Freelancer.com to see more details.</p>
</div>
<script src="popup.js"></script>
</body>
</html>