-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 1.25 KB
/
index.html
File metadata and controls
49 lines (48 loc) · 1.25 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
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>Live Cookies - Chrome Extension</title>
<style>
body {
height: 8em;
width: 20em;
display: flex;
justify-content: center;
align-items: center;
font-family: Roboto, sans-serif;
color: #003661;
border-radius: 25px;
}
.LiveCookiesPopup {
height: 100%;
}
.LiveCookiesPopup-button {
padding: 8px 12px;
border-radius: 5%;
background: #003661;
color: #fff;
border: none;
cursor: pointer;
font-size: 1.25em;
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
position: relative;
}
.LiveCookiesPopup-button:hover {
background-color: #0465b5;
}
.LiveCookiesPopup-title {
text-align: center;
}
</style>
</head>
<body id="LiveCookiesPopup-body">
<div class="LiveCookiesPopup">
<h2 class="LiveCookiesPopup-title">Live Cookies</h2>
<button class="LiveCookiesPopup-button" id="open_live_cookies">
Open Live Cookies
</button>
</div>
<script src="index.js"></script>
</body>
</html>