-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
40 lines (40 loc) · 1.03 KB
/
popup.html
File metadata and controls
40 lines (40 loc) · 1.03 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GoFastCall</title>
<style type="text/css">
* {
box-sizing: border-box;
}
body {
background: #FCFFFE;
margin: 0;
font-family: system-ui, sans-serif;
width: 300px;
text-align: center;
}
h4 {
color: #666;
margin: 6px;
padding: 6px;
background: rgba(0, 0, 0, 0.05);
border-radius: 18px;
}
a {
color: #33CC99;
}
a:hover {
color: #44DDAA;
}
a:active {
color: #22BB88;
}
</style>
</head>
<body>
<h4 id="title">You have no meetings in the next hour!</h4>
<p><a href="#" id="all">View upcoming meetings</a></p>
<script src="popup.js"></script>
</body>
</html>