-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
37 lines (34 loc) · 967 Bytes
/
popup.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
<!doctype html>
<html>
<head>
<title>Accessibility Personas</title>
<link rel="stylesheet" type="text/css" href="popup_output.css" />
</head>
<body class="text-base font-sans">
<header
class="sticky top-0 bg-slate-800 text-white shadow-md px-6 pt-6 pb-2"
>
<div class="flex items-center justify-between mb-4">
<h1
id="popup-title"
class="text-xl font-semibold"
data-i18n="popupTitle"
></h1>
<button
id="reset-button"
class="hidden font-semibold text-white bg-rose-800 rounded-lg px-4 py-2"
data-i18n="resetButton"
></button>
</div>
<p
id="popup-introduction"
class="leading-6 mb-4"
data-i18n="popupIntroduction"
></p>
</header>
<main id="persona-list" role="main">
<!-- Personas are inserted here with popup.js -->
</main>
<script src="popup.js"></script>
</body>
</html>