-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathembed.html
More file actions
319 lines (290 loc) · 18.9 KB
/
embed.html
File metadata and controls
319 lines (290 loc) · 18.9 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Piercing Angle & Depth Guide - Embed</title>
<link rel="stylesheet" href="css/style.css">
<style>
/* Embed-specific overrides */
body {
margin: 0;
padding: 0;
}
.piercing-angle-guide__main {
padding: var(--spacing-lg) var(--spacing-md);
}
.piercing-angle-guide__container {
max-width: 100%;
}
/* Hide elements not needed in embed */
.community-feedback,
.piercing-angle-guide__footer,
.related-tools {
display: none;
}
.embed__email-section{background:linear-gradient(135deg,#3B82F6 0%,#8B5CF6 100%);padding:2rem 1rem;margin:2rem 0;border-radius:8px}
.embed__email-box{max-width:500px;margin:0 auto;text-align:center}
.embed__email-title{font-size:1.3rem;font-weight:700;color:#FFF;margin-bottom:0.5rem}
.embed__email-subtitle{font-size:0.9rem;color:rgba(255,255,255,0.9);margin-bottom:1rem}
.embed__email-input-group{display:flex;gap:0.5rem;margin-bottom:0.75rem}
.embed__email-input{flex:1;padding:0.75rem;border:2px solid rgba(255,255,255,0.3);border-radius:6px;background:rgba(255,255,255,0.95);color:#1A1A1A;font-size:0.9rem}
.embed__email-input:focus{outline:none;border-color:#FFF;background:#FFF}
.embed__email-submit{padding:0.75rem 1.5rem;background:#8B5CF6;color:#FFF;border:none;border-radius:6px;font-weight:600;cursor:pointer;transition:all 0.3s ease;font-size:0.9rem}
.embed__email-submit:hover{background:#7C3AED;transform:translateY(-2px)}
.embed__email-success,.embed__email-error{padding:0.5rem;border-radius:6px;font-size:0.85rem;margin-top:0.5rem}
.embed__email-success{background:rgba(40,167,69,0.2);color:#FFF;border:1px solid rgba(40,167,69,0.5)}
.embed__email-error{background:rgba(220,53,69,0.2);color:#FFF;border:1px solid rgba(220,53,69,0.5)}
.embed__email-trust{display:flex;justify-content:center;gap:1rem;font-size:0.75rem;color:rgba(255,255,255,0.8);flex-wrap:wrap}
.embed__features-section{background:#F8F8F8;padding:2rem 1rem;margin:2rem 0;border-radius:8px;border:2px solid #E0E0E0}
.embed__features-title{font-size:1.3rem;font-weight:700;color:#8B5CF6;margin-bottom:1rem;text-align:center}
.embed__features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:0.75rem;max-width:600px;margin:0 auto}
.embed__feature-item{display:flex;align-items:center;gap:0.5rem;padding:0.75rem;background:#FFF;border-radius:6px;font-size:0.9rem;border:1px solid #E8E8E8}
.embed__feature-check{color:#28A745;font-size:1.1rem;font-weight:700}
.embed__feature-text{color:#333}
@media (max-width:600px){.embed__email-input-group{flex-direction:column}.embed__features-grid{grid-template-columns:1fr}}
.embed-footer{background:#F8F8F8;padding:1.5rem;text-align:center;border-top:2px solid #E0E0E0}
.embed-footer-content{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap}
.embed-footer-btn{display:inline-flex;align-items:center;gap:0.5rem;padding:0.75rem 1.25rem;border-radius:6px;font-weight:600;text-decoration:none;transition:all 0.3s ease}
.embed-footer-btn--tools{background:linear-gradient(135deg,#3B82F6 0%,#8B5CF6 100%);color:#FFF}
.embed-footer-btn--support{background:#FF5E5B;color:#FFF}
.embed-footer-link{color:#8B5CF6;text-decoration:none;font-weight:600}
</style>
</head>
<body>
<div class="piercing-angle-guide">
<!-- SIMPLIFIED HEADER FOR EMBED -->
<header class="piercing-angle-guide__header">
<div class="piercing-angle-guide__header-content">
<!-- Logo -->
<div class="piercing-angle-guide__logo-container">
<img src="images/Poli-International-Co.webp"
alt="Poli International Logo"
class="piercing-angle-guide__logo">
</div>
<!-- Title Group -->
<div class="piercing-angle-guide__title-group">
<h1 class="piercing-angle-guide__header-title">Piercing Angle & Depth Guide</h1>
<p class="piercing-angle-guide__header-subtitle">
Professional Reference Tool for Licensed Piercers
</p>
</div>
<!-- Buttons -->
<div class="piercing-angle-guide__header-buttons">
<!-- Ko-fi Button -->
<a href='https://ko-fi.com/C0C81NEXBV' target='_blank' class="piercing-angle-guide__kofi-button">
<span class="kofi-icon">☕</span>
<span class="kofi-text">Buy Me a Coffee</span>
</a>
<!-- Dark Mode Toggle -->
<button id="darkModeToggle" class="piercing-angle-guide__dark-mode-toggle">
<span class="dark-mode-icon">◐</span>
</button>
</div>
</div>
</header>
<!-- MAIN TOOL CONTENT -->
<main class="piercing-angle-guide__main">
<div class="piercing-angle-guide__container">
<!-- PROFESSIONAL-ONLY WARNING -->
<div class="professional-warning">
<div class="professional-warning__icon">⚠️</div>
<div class="professional-warning__content">
<h2 class="professional-warning__title">FOR LICENSED PROFESSIONAL PIERCERS ONLY</h2>
<p class="professional-warning__text">
<strong>This tool is designed exclusively for trained, licensed body piercing professionals.</strong>
Do NOT attempt piercings without proper training, certification, sterile equipment, and health department compliance.
</p>
</div>
</div>
<!-- PIERCING SELECTOR -->
<section class="piercing-selector">
<h2 class="piercing-selector__title">Select Piercing Type</h2>
<div class="piercing-categories">
<!-- EAR PIERCINGS -->
<div class="piercing-category">
<h3 class="piercing-category__title">👂 Ear Piercings</h3>
<div class="piercing-buttons">
<button class="piercing-btn" data-piercing="earlobe">Earlobe</button>
<button class="piercing-btn" data-piercing="helix">Helix</button>
<button class="piercing-btn" data-piercing="forward-helix">Forward Helix</button>
<button class="piercing-btn" data-piercing="tragus">Tragus</button>
<button class="piercing-btn" data-piercing="anti-tragus">Anti-Tragus</button>
<button class="piercing-btn" data-piercing="conch">Conch</button>
<button class="piercing-btn" data-piercing="rook">Rook</button>
<button class="piercing-btn" data-piercing="daith">Daith</button>
<button class="piercing-btn" data-piercing="industrial">Industrial</button>
</div>
</div>
<!-- FACIAL PIERCINGS -->
<div class="piercing-category">
<h3 class="piercing-category__title">😊 Facial Piercings</h3>
<div class="piercing-buttons">
<button class="piercing-btn" data-piercing="nostril">Nostril</button>
<button class="piercing-btn" data-piercing="septum">Septum</button>
<button class="piercing-btn" data-piercing="bridge">Bridge</button>
<button class="piercing-btn" data-piercing="eyebrow">Eyebrow</button>
<button class="piercing-btn" data-piercing="labret">Labret</button>
<button class="piercing-btn" data-piercing="monroe">Monroe</button>
<button class="piercing-btn" data-piercing="medusa">Medusa</button>
<button class="piercing-btn" data-piercing="tongue">Tongue</button>
</div>
</div>
<!-- BODY PIERCINGS -->
<div class="piercing-category">
<h3 class="piercing-category__title">💪 Body Piercings</h3>
<div class="piercing-buttons">
<button class="piercing-btn" data-piercing="navel">Navel</button>
<button class="piercing-btn" data-piercing="nipple">Nipple</button>
<button class="piercing-btn" data-piercing="surface">Surface</button>
<button class="piercing-btn" data-piercing="dermal">Dermal Anchor</button>
</div>
</div>
<!-- GENITAL PIERCINGS -->
<div class="piercing-category">
<h3 class="piercing-category__title">🔒 Genital Piercings (Advanced)</h3>
<div class="piercing-buttons">
<button class="piercing-btn" data-piercing="prince-albert">Prince Albert</button>
<button class="piercing-btn" data-piercing="vch">VCH</button>
<button class="piercing-btn" data-piercing="christina">Christina</button>
<button class="piercing-btn" data-piercing="frenum">Frenum</button>
</div>
</div>
</div>
</section>
<!-- PIERCING DETAILS DISPLAY -->
<section class="piercing-details" id="piercingDetails" style="display: none;">
<h2 class="piercing-details__title" id="piercingName">Select a piercing to view details</h2>
<!-- ANATOMICAL SPECIFICATIONS -->
<div class="details-card">
<h3 class="details-card__title">📐 Anatomical Specifications</h3>
<div class="spec-grid">
<div class="spec-item">
<span class="spec-label">Optimal Angle:</span>
<span class="spec-value" id="optimalAngle">-</span>
</div>
<div class="spec-item">
<span class="spec-label">Insertion Depth:</span>
<span class="spec-value" id="insertionDepth">-</span>
</div>
<div class="spec-item">
<span class="spec-label">Tissue Type:</span>
<span class="spec-value" id="tissueType">-</span>
</div>
<div class="spec-item">
<span class="spec-label">Healing Time:</span>
<span class="spec-value" id="healingTime">-</span>
</div>
</div>
</div>
<!-- JEWELRY SPECIFICATIONS -->
<div class="details-card">
<h3 class="details-card__title">💎 Jewelry Specifications</h3>
<div class="spec-grid">
<div class="spec-item">
<span class="spec-label">Initial Gauge:</span>
<span class="spec-value" id="jewelryGauge">-</span>
</div>
<div class="spec-item">
<span class="spec-label">Initial Length:</span>
<span class="spec-value" id="jewelryLength">-</span>
</div>
<div class="spec-item">
<span class="spec-label">Jewelry Type:</span>
<span class="spec-value" id="jewelryType">-</span>
</div>
<div class="spec-item">
<span class="spec-label">Downsize After:</span>
<span class="spec-value" id="downsizeTime">-</span>
</div>
</div>
</div>
<!-- ANATOMICAL POSITIONING -->
<div class="details-card">
<h3 class="details-card__title">🎯 Anatomical Positioning</h3>
<div class="positioning-content" id="positioningContent">
<p>Select a piercing to view positioning guidelines.</p>
</div>
</div>
<!-- SAFETY WARNINGS -->
<div class="details-card details-card--warning">
<h3 class="details-card__title">⚠️ Safety Considerations</h3>
<div class="safety-content" id="safetyContent">
<p>Select a piercing to view safety guidelines.</p>
</div>
</div>
<!-- REFUSE UNSUITABLE ANATOMY -->
<div class="details-card details-card--danger">
<h3 class="details-card__title">🚫 Refuse Unsuitable Anatomy</h3>
<div class="refuse-content" id="refuseContent">
<p>Select a piercing to view refusal criteria.</p>
</div>
</div>
<!-- AFTERCARE GUIDELINES -->
<div class="details-card">
<h3 class="details-card__title">🧼 Aftercare Guidelines</h3>
<div class="aftercare-content" id="aftercareContent">
<p>Select a piercing to view aftercare protocols.</p>
</div>
</div>
</section>
<!-- EMBED FOOTER CREDIT -->
<div style="text-align: center; padding: var(--spacing-xl) var(--spacing-md); border-top: 2px solid var(--border-primary); margin-top: var(--spacing-2xl);">
<p style="color: var(--text-secondary); font-size: 0.9rem; margin-bottom: var(--spacing-sm);">
⚠️ FOR LICENSED PROFESSIONAL PIERCERS ONLY
</p>
<p style="color: var(--text-secondary); font-size: 0.9rem;">
Powered by <a href="https://poliinternational.com" target="_blank" style="color: var(--primary-color); text-decoration: none; font-weight: 600;">Poli International</a>
</p>
</div>
</div>
</main>
</div>
<section class="embed__email-section">
<div class="embed__email-box">
<h2 class="embed__email-title">🔔 Get Notified of New Tools!</h2>
<p class="embed__email-subtitle">Be first to know when we launch new free tools for piercing professionals.</p>
<form id="embed-email-form"><div class="embed__email-input-group">
<input type="email" id="embed-email-input" class="embed__email-input" placeholder="Your email address" required>
<button type="submit" class="embed__email-submit">Notify Me</button>
</div>
<p class="embed__email-success" id="embed-email-success" style="display:none">✅ Thanks! We'll notify you when new tools launch!</p>
<p class="embed__email-error" id="embed-email-error" style="display:none">❌ Please enter a valid email address.</p>
<div class="embed__email-trust"><span>✅ Free tool updates only</span><span>✅ No spam</span><span>✅ Unsubscribe anytime</span></div>
</form>
</div>
</section>
<section class="embed__features-section">
<h2 class="embed__features-title">✨ Tool Features</h2>
<div class="embed__features-grid">
<div class="embed__feature-item"><span class="embed__feature-check">✅</span><span class="embed__feature-text">Angle & Depth Calculator</span></div>
<div class="embed__feature-item"><span class="embed__feature-check">✅</span><span class="embed__feature-text">Placement Guidance</span></div>
<div class="embed__feature-item"><span class="embed__feature-check">✅</span><span class="embed__feature-text">Safety Recommendations</span></div>
<div class="embed__feature-item"><span class="embed__feature-check">✅</span><span class="embed__feature-text">Visual Diagrams</span></div>
<div class="embed__feature-item"><span class="embed__feature-check">✅</span><span class="embed__feature-text">Mobile-Responsive Design</span></div>
<div class="embed__feature-item"><span class="embed__feature-check">✅</span><span class="embed__feature-text">Dark/Light Mode</span></div>
<div class="embed__feature-item"><span class="embed__feature-check">✅</span><span class="embed__feature-text">100% Free, No Ads</span></div>
<div class="embed__feature-item"><span class="embed__feature-check">✅</span><span class="embed__feature-text">Professional Results</span></div>
</div>
</section>
<footer class="embed-footer">
<div class="embed-footer-content">
<a href="https://poliinternational.com/tools" target="_blank" class="embed-footer-btn embed-footer-btn--tools"><span class="btn-icon">🔧</span><span class="btn-text">More Tools</span></a>
<a href='https://ko-fi.com/C0C81NEXBV' target='_blank' class="embed-footer-btn embed-footer-btn--support"><span class="btn-icon">☕</span><span class="btn-text">Support Us</span></a>
<a href="index.html" target="_blank" class="embed-footer-link">Open Full Version →</a>
</div>
</footer>
<!-- SCRIPTS -->
<script src="js/piercing-guide.js"></script>
<script>
// Simplified dark mode for embed (no localStorage needed for embed)
document.addEventListener('DOMContentLoaded', function() {
const darkModeToggle = document.getElementById('darkModeToggle');
const body = document.body;
darkModeToggle.addEventListener('click', function() {
body.classList.toggle('dark-mode');
});
});
</script>
</body>
</html>