-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomparison-table.html
More file actions
270 lines (259 loc) · 9.17 KB
/
Copy pathcomparison-table.html
File metadata and controls
270 lines (259 loc) · 9.17 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Abortion by Mail / Telehealth Comparison</title>
<style>
:root{
--bg: #0b0d12;
--card: #111521;
--text: #e9eefc;
--muted: #a9b4d6;
--border: rgba(255,255,255,.12);
--shadow: 0 10px 30px rgba(0,0,0,.35);
--radius: 14px;
}
body{
margin:0;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.35;
padding: 24px;
}
.wrap{
max-width: 1100px;
margin: 0 auto;
}
h1{
font-size: clamp(18px, 2.2vw, 26px);
margin: 0 0 10px;
letter-spacing: .2px;
}
p.sub{
margin: 0 0 18px;
color: var(--muted);
font-size: 14px;
}
.table-card{
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow);
overflow: hidden;
}
/* Desktop/tablet: normal table with horizontal scroll safety */
.table-scroll{
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
table{
width: 100%;
border-collapse: separate;
border-spacing: 0;
min-width: 900px; /* keeps columns readable; scrolls on smaller screens */
}
thead th{
text-align: left;
font-weight: 650;
font-size: 13px;
color: var(--muted);
padding: 14px 14px;
border-bottom: 1px solid var(--border);
background: rgba(255,255,255,.02);
position: sticky;
top: 0;
backdrop-filter: blur(6px);
}
tbody td{
vertical-align: top;
padding: 14px 14px;
border-bottom: 1px solid var(--border);
font-size: 14px;
}
tbody tr:last-child td{
border-bottom: none;
}
.provider{
font-weight: 700;
color: var(--text);
margin-bottom: 4px;
}
.type{
font-size: 12px;
color: var(--muted);
}
.pill{
display: inline-block;
padding: 2px 8px;
border: 1px solid var(--border);
border-radius: 999px;
font-size: 12px;
color: var(--muted);
margin-right: 6px;
margin-bottom: 6px;
white-space: nowrap;
}
/* Mobile: convert rows into stacked cards */
@media (max-width: 780px){
.table-scroll{ overflow: visible; }
table{ min-width: 0; }
thead{ display:none; }
table, tbody, tr, td{ display:block; width:100%; }
tbody tr{
border-bottom: 1px solid var(--border);
padding: 10px 12px;
}
tbody tr:last-child{ border-bottom: none; }
tbody td{
border: none;
padding: 10px 0;
}
tbody td + td{
border-top: 1px dashed rgba(255,255,255,.10);
}
tbody td[data-label]::before{
content: attr(data-label);
display:block;
font-size: 12px;
color: var(--muted);
margin-bottom: 6px;
letter-spacing: .2px;
text-transform: uppercase;
}
}
/* Optional link styling (only if you add links) */
a{ color: #8fb3ff; }
a:hover{ opacity: .9; }
</style>
</head>
<body>
<div class="wrap">
<h1>Medication Abortion / Abortion-by-Mail Comparison</h1>
<p class="sub">Clean, responsive table (desktop: normal table; mobile: stacked cards). Edit text as needed.</p>
<div class="table-card">
<div class="table-scroll">
<table aria-label="Abortion by mail providers comparison">
<thead>
<tr>
<th>Provider / Resource</th>
<th>Type of service</th>
<th>Where it operates</th>
<th>Medical consult?</th>
<th>Medication delivery?</th>
<th>Cost (approx.)</th>
<th>Notes / limitations</th>
</tr>
</thead>
<tbody>
<tr>
<td data-label="Provider / Resource">
<div class="provider">Hey Jane</div>
<div class="type">Telehealth clinic (medication abortion)</div>
</td>
<td data-label="Type of service">
<span class="pill">Telehealth care</span>
<span class="pill">Medication abortion</span>
</td>
<td data-label="Where it operates">
U.S. (selected states; availability varies)
</td>
<td data-label="Medical consult?">Yes (licensed clinician)</td>
<td data-label="Medication delivery?">Yes (mailed)</td>
<td data-label="Cost (approx.)">
Often sliding scale; varies by state/payment method
</td>
<td data-label="Notes / limitations">
State-limited; provides support before/during/after care; eligibility screening required.
</td>
</tr>
<tr>
<td data-label="Provider / Resource">
<div class="provider">Women on Web</div>
<div class="type">International online abortion service</div>
</td>
<td data-label="Type of service">
<span class="pill">Online service</span>
<span class="pill">Self-managed support</span>
</td>
<td data-label="Where it operates">
Worldwide / many countries (local legal context varies)
</td>
<td data-label="Medical consult?">Yes (questionnaire review)</td>
<td data-label="Medication delivery?">Yes (mailed)</td>
<td data-label="Cost (approx.)">
Varies by country; often designed to be affordable
</td>
<td data-label="Notes / limitations">
Non-profit; often used where local clinic/telehealth access is limited; timelines and shipping vary.
</td>
</tr>
<tr>
<td data-label="Provider / Resource">
<div class="provider">Just the Pill</div>
<div class="type">Telehealth abortion pill provider</div>
</td>
<td data-label="Type of service">
<span class="pill">Telehealth care</span>
<span class="pill">Medication abortion</span>
</td>
<td data-label="Where it operates">
U.S. (regional / state-dependent)
</td>
<td data-label="Medical consult?">Yes</td>
<td data-label="Medication delivery?">Yes (mailed)</td>
<td data-label="Cost (approx.)">
Varies by state/service; check current pricing
</td>
<td data-label="Notes / limitations">
Availability depends on state laws and program footprint; eligibility screening required.
</td>
</tr>
<tr>
<td data-label="Provider / Resource">
<div class="provider">Plan C</div>
<div class="type">Information hub (not a clinic)</div>
</td>
<td data-label="Type of service">
<span class="pill">Resource directory</span>
<span class="pill">Education</span>
</td>
<td data-label="Where it operates">
U.S. (information tool)
</td>
<td data-label="Medical consult?">No (doesn’t provide care)</td>
<td data-label="Medication delivery?">No (doesn’t ship pills)</td>
<td data-label="Cost (approx.)">Free to use</td>
<td data-label="Notes / limitations">
Aggregates options/resources and updates; you still use an actual provider/pharmacy/clinic separately.
</td>
</tr>
<tr>
<td data-label="Provider / Resource">
<div class="provider">Aid Access</div>
<div class="type">Telemedicine abortion pill provider</div>
</td>
<td data-label="Type of service">
<span class="pill">Telemedicine</span>
<span class="pill">Medication abortion</span>
</td>
<td data-label="Where it operates">
U.S. and international (model varies by location)
</td>
<td data-label="Medical consult?">Yes (questionnaire review)</td>
<td data-label="Medication delivery?">Yes (mailed)</td>
<td data-label="Cost (approx.)">
Often around ~$150 with sliding scale in some cases
</td>
<td data-label="Notes / limitations">
Availability and shipping can vary; legal context differs by location; eligibility screening required.
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>