-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
44 lines (36 loc) · 1.11 KB
/
Copy pathpopup.html
File metadata and controls
44 lines (36 loc) · 1.11 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
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<style>
button {
padding: .7rem 2rem;
border: none;
border-radius: 6px;
font-size: 1.2rem;
text-transform: lowercase;
letter-spacing: 1.5px;
background: linear-gradient(to top, #CDF1F9, #B0D8F0);
color: #fff;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
button:hover {
background: linear-gradient(to bottom, #CDF1F9, #B0D8F0);
}
button:active {
border-radius: 6px;
}
h4 {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
text-align: center;
letter-spacing: 1.1px;
text-transform: lowercase;
color: #757575
}
</style>
</head>
<body>
<!-- <h4>Refresh time in seconds</h4> -->
<button id="on_off_button">Start</button>
<script src="popup.js"></script>
</body>
</html>