|
@@ -6,14 +6,12 @@
|
|
|
<title>Privacy Policy — Printer App - All Printers</title>
|
|
<title>Privacy Policy — Printer App - All Printers</title>
|
|
|
<style>
|
|
<style>
|
|
|
:root {
|
|
:root {
|
|
|
- --blue: #3878f5;
|
|
|
|
|
--navy: #1f2e52;
|
|
--navy: #1f2e52;
|
|
|
--bg: #f6f6f6;
|
|
--bg: #f6f6f6;
|
|
|
--card: #ffffff;
|
|
--card: #ffffff;
|
|
|
--text: #1f1f1f;
|
|
--text: #1f1f1f;
|
|
|
--text-secondary: #7a7a7a;
|
|
--text-secondary: #7a7a7a;
|
|
|
--border: #ebebeb;
|
|
--border: #ebebeb;
|
|
|
- --radius: 16px;
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
@@ -27,50 +25,56 @@
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.page {
|
|
.page {
|
|
|
- max-width: 680px;
|
|
|
|
|
|
|
+ max-width: 640px;
|
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
|
- padding: 32px 20px 48px;
|
|
|
|
|
|
|
+ padding: 48px 24px 64px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- .back {
|
|
|
|
|
- display: inline-flex;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- gap: 6px;
|
|
|
|
|
- font-size: 13px;
|
|
|
|
|
- color: var(--blue);
|
|
|
|
|
- text-decoration: none;
|
|
|
|
|
- margin-bottom: 24px;
|
|
|
|
|
|
|
+ .header {
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ margin-bottom: 32px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- .back:hover { text-decoration: underline; }
|
|
|
|
|
-
|
|
|
|
|
- .card {
|
|
|
|
|
- background: var(--card);
|
|
|
|
|
- border: 1.5px solid var(--border);
|
|
|
|
|
- border-radius: var(--radius);
|
|
|
|
|
- padding: 32px 28px;
|
|
|
|
|
|
|
+ .app-name {
|
|
|
|
|
+ font-size: 13px;
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ color: var(--text-secondary);
|
|
|
|
|
+ text-transform: uppercase;
|
|
|
|
|
+ letter-spacing: 0.05em;
|
|
|
|
|
+ margin-bottom: 8px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
h1 {
|
|
|
- font-size: 24px;
|
|
|
|
|
|
|
+ font-size: 26px;
|
|
|
font-weight: 600;
|
|
font-weight: 600;
|
|
|
color: var(--navy);
|
|
color: var(--navy);
|
|
|
- margin-bottom: 6px;
|
|
|
|
|
|
|
+ letter-spacing: -0.02em;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.updated {
|
|
.updated {
|
|
|
font-size: 13px;
|
|
font-size: 13px;
|
|
|
color: var(--text-secondary);
|
|
color: var(--text-secondary);
|
|
|
- margin-bottom: 28px;
|
|
|
|
|
|
|
+ margin-top: 8px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .card {
|
|
|
|
|
+ background: var(--card);
|
|
|
|
|
+ border: 1px solid var(--border);
|
|
|
|
|
+ border-radius: 14px;
|
|
|
|
|
+ padding: 28px 24px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
h2 {
|
|
|
- font-size: 16px;
|
|
|
|
|
|
|
+ font-size: 15px;
|
|
|
font-weight: 600;
|
|
font-weight: 600;
|
|
|
color: var(--navy);
|
|
color: var(--navy);
|
|
|
margin: 24px 0 8px;
|
|
margin: 24px 0 8px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ h2:first-of-type {
|
|
|
|
|
+ margin-top: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
p, li {
|
|
p, li {
|
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
|
color: var(--text);
|
|
color: var(--text);
|
|
@@ -87,12 +91,13 @@
|
|
|
</head>
|
|
</head>
|
|
|
<body>
|
|
<body>
|
|
|
<div class="page">
|
|
<div class="page">
|
|
|
- <a class="back" href="index.html">← Back to Printer App - All Printers</a>
|
|
|
|
|
-
|
|
|
|
|
- <article class="card">
|
|
|
|
|
|
|
+ <header class="header">
|
|
|
|
|
+ <p class="app-name">Printer App - All Printers</p>
|
|
|
<h1>Privacy Policy</h1>
|
|
<h1>Privacy Policy</h1>
|
|
|
- <p class="updated">Last updated: June 29, 2026</p>
|
|
|
|
|
|
|
+ <p class="updated">Last updated: July 1, 2026</p>
|
|
|
|
|
+ </header>
|
|
|
|
|
|
|
|
|
|
+ <article class="card">
|
|
|
<p>Printer App - All Printers ("we", "our", or "us") respects your privacy. This policy explains how we handle information when you use the Printer App - All Printers macOS application.</p>
|
|
<p>Printer App - All Printers ("we", "our", or "us") respects your privacy. This policy explains how we handle information when you use the Printer App - All Printers macOS application.</p>
|
|
|
|
|
|
|
|
<h2>Information We Collect</h2>
|
|
<h2>Information We Collect</h2>
|
|
@@ -119,8 +124,8 @@
|
|
|
<h2>Changes to This Policy</h2>
|
|
<h2>Changes to This Policy</h2>
|
|
|
<p>We may update this policy from time to time. Continued use of the app after changes constitutes acceptance of the updated policy.</p>
|
|
<p>We may update this policy from time to time. Continued use of the app after changes constitutes acceptance of the updated policy.</p>
|
|
|
|
|
|
|
|
- <h2>Contact Us</h2>
|
|
|
|
|
- <p>If you have questions about this privacy policy, visit our <a href="https://sites.google.com/view/smartprinterappmacos/get-support" target="_blank" rel="noopener" style="color:#3878f5">support page</a>.</p>
|
|
|
|
|
|
|
+ <h2>Contact</h2>
|
|
|
|
|
+ <p>If you have questions about this privacy policy, contact us through the support option on the Mac App Store listing for Printer App - All Printers.</p>
|
|
|
</article>
|
|
</article>
|
|
|
</div>
|
|
</div>
|
|
|
</body>
|
|
</body>
|