-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (114 loc) · 3.6 KB
/
index.html
File metadata and controls
130 lines (114 loc) · 3.6 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
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
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>App Privacy Policies</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #f5f5f7;
color: #1d1d1f;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 40px 20px;
}
.wordmark {
font-size: 0.8em;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #6e6e73;
margin-bottom: 48px;
}
h1 {
font-size: 2em;
font-weight: 700;
letter-spacing: -0.02em;
margin-bottom: 8px;
text-align: center;
}
.subtitle {
font-size: 1em;
color: #6e6e73;
margin-bottom: 48px;
text-align: center;
}
.cards {
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
max-width: 680px;
width: 100%;
}
.card {
background: #fff;
border-radius: 18px;
padding: 32px 28px;
width: 300px;
text-decoration: none;
color: inherit;
box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
transition: transform 0.15s ease, box-shadow 0.15s ease;
display: flex;
flex-direction: column;
gap: 10px;
}
.card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
}
.card-icon {
font-size: 2em;
line-height: 1;
}
.card-name {
font-size: 1.05em;
font-weight: 600;
letter-spacing: -0.01em;
}
.card-desc {
font-size: 0.85em;
color: #6e6e73;
line-height: 1.5;
}
.card-link {
font-size: 0.8em;
font-weight: 500;
color: #0066cc;
margin-top: auto;
padding-top: 8px;
}
footer {
margin-top: 56px;
font-size: 0.78em;
color: #aeaeb2;
}
</style>
</head>
<body>
<div class="wordmark">Wear Parts & Equipment Co.</div>
<h1>App Privacy Policies</h1>
<p class="subtitle">Plain-language privacy information for our iOS applications.</p>
<div class="cards">
<a class="card" href="./bolt-hole-spacing/">
<div class="card-icon">🔩</div>
<div class="card-name">Bolt Hole Spacing Calculator</div>
<div class="card-desc">A simple utility for calculating bolt hole patterns. Collects no data whatsoever.</div>
<div class="card-link">Read Privacy Policy →</div>
</a>
<a class="card" href="./wpfield/">
<div class="card-icon">📋</div>
<div class="card-name">WP Field</div>
<div class="card-desc">Internal sales call reporting for the WPE sales team. Distributed via Apple Business Manager.</div>
<div class="card-link">Read Privacy Policy →</div>
</a>
</div>
<footer>© Wear Parts & Equipment Co.</footer>
</body>
</html>