-
Notifications
You must be signed in to change notification settings - Fork 5
/
popup.html
47 lines (42 loc) · 902 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
font-family: 'Roboto', sans-serif;
font-size: 16px;
overflow: hidden;
margin: 0;
background: #111118;
color: #7d7da1;
}
</style>
<link rel="stylesheet" href="satus.css">
<link rel="stylesheet" href="popup.css">
</head>
<body>
<script src="satus.js"></script>
<script src="popup.js"></script>
<style>
@font-face {
font-family: 'Roboto';
src: url(fonts/Roboto/Roboto-Regular.ttf);
}
@font-face {
font-family: 'Roboto';
font-weight: 500;
src: url(fonts/Roboto/Roboto-Medium.ttf);
}
@font-face {
font-family: 'Roboto';
font-weight: 700;
src: url(fonts/Roboto/Roboto-Bold.ttf);
}
@font-face {
font-family: 'Roboto Mono';
src: url(fonts/Roboto\ Mono/RobotoMono-Regular.ttf);
}
</style>
</body>
</html>