-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (115 loc) · 2.39 KB
/
index.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cookie Jar extension</title>
<style>
:root {
font-family: system-ui;
font-size: 16px;
}
* {
box-sizing: border-box;
margin: 0;
}
body {
background: linear-gradient(
110deg,
rgba(248, 196, 249, 0.6) 22%,
rgba(253, 122, 4, 0.2) 64%
);
color: #233142;
display: flex;
flex-direction: column;
min-height: 100dvh;
padding-inline: 12px;
}
header,
main,
section,
nav,
footer {
margin-inline: auto;
max-width: 500px;
padding-block: 16px;
}
header {
text-align: center;
}
img {
display: flex;
height: auto;
max-width: 100%;
}
footer {
display: flex;
flex-direction: column;
font-size: 14px;
gap: 16px;
text-align: center;
}
a {
color: inherit;
font-family: monospace;
}
.install {
align-items: center;
background: #fafafa;
box-shadow:
inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075),
0 0 0 1px hsla(0, 0%, 0%, 0.05),
0 0.3px 0.4px hsla(0, 0%, 0%, 0.02),
0 0.9px 1.5px hsla(0, 0%, 0%, 0.045),
0 3.5px 6px hsla(0, 0%, 0%, 0.09);
border-radius: 4px;
color: #5254d8;
display: flex;
gap: 16px;
padding: 12px 16px;
text-decoration: none;
}
.install:hover {
background: #e1eeff;
}
h1 {
font-size: 32px;
font-weight: bold;
margin-bottom: 16px;
}
h2 {
font-size: 18px;
font-weight: bolder;
}
</style>
</head>
<body>
<header>
<h1>Cookie Jar</h1>
<h2>Stop signing in everywhere after clearing your browser history.</h2>
</header>
<main>
<p>
<em>Cookie Jar</em> is a Chrome extension that clears your browser cache
but keeps the data useful for your existing bookmarks.
</p>
</main>
<section>
<img src="preview.avif" width="2324" height="1534" />
</section>
<section>
<a
class="install"
href="https://chromewebstore.google.com/detail/cookie-jar/kkiiipjojjiecidkhgagdkppinddcigl"
target="_blank"
><img src="chrome.svg" width="32" height="28" /><span
>Install Chrome Extension</span
>
</a>
</section>
<footer>
<a href="https://github.com/pioug/cookie-jar">GitHub repository</a>
<a href="https://piou.io/">piou.io</a>
</footer>
</body>
</html>