-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
105 lines (104 loc) · 3.25 KB
/
Copy pathpopup.html
File metadata and controls
105 lines (104 loc) · 3.25 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Beauty Captions for your subtitle videos</title>
<link rel="stylesheet" href="./styles/main.css" />
</head>
<body>
<header>
<div class="branding">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 256 256"
id="brand-icon"
>
<path
d="M248,152a8,8,0,0,1-8,8H224v16a8,8,0,0,1-16,0V160H192a8,8,0,0,1,0-16h16V128a8,8,0,0,1,16,0v16h16A8,8,0,0,1,248,152ZM56,72H72V88a8,8,0,0,0,16,0V72h16a8,8,0,0,0,0-16H88V40a8,8,0,0,0-16,0V56H56a8,8,0,0,0,0,16ZM184,192h-8v-8a8,8,0,0,0-16,0v8h-8a8,8,0,0,0,0,16h8v8a8,8,0,0,0,16,0v-8h8a8,8,0,0,0,0-16ZM219.31,80,80,219.31a16,16,0,0,1-22.62,0L36.68,198.63a16,16,0,0,1,0-22.63L176,36.69a16,16,0,0,1,22.63,0l20.68,20.68A16,16,0,0,1,219.31,80ZM208,68.69,187.31,48l-32,32L176,100.69Z"
></path>
</svg>
<h1>Beauty Captions</h1>
</div>
<nav class="hidden" id="navigation">
<label for="toggle-extension-checkbox" class="switch">
<input type="checkbox" id="toggle-extension-checkbox" />
<span class="slider"></span>
</label>
</nav>
</header>
<div class="w-full">
<div
role="alert"
aria-live="assertive"
class="alert alert-warning hidden"
id="alert-subtitles"
>
<div class="backdrop"></div>
<p>
Please, <strong>you first need to turn on the subtitles</strong> for
your YouTube video
</p>
</div>
<div
role="alert"
aria-live="polite"
class="alert alert-info hidden"
id="alert-extension"
>
<div class="backdrop"></div>
<p>
Turn on <strong>Beautiful Subtitles</strong> for the best YouTube
subtitles experience!
</p>
</div>
</div>
<main class="hidden">
<div class="w-full">
<section class="border-b">
<h3 class="section-title">Box</h3>
<div id="section-boxType"></div>
</section>
<section>
<h3 class="section-title">Font size</h3>
<div id="section-fontSize" class="flex"></div>
</section>
</div>
<div class="w-full border-l">
<section>
<h3 class="section-title">Font family</h3>
<div id="section-fontFamily"></div>
</section>
</div>
<div class="w-full border-l">
<section>
<h3 class="section-title">Color</h3>
<div id="section-color"></div>
</section>
</div>
</main>
<footer>
<p>
© <span id="current-year"></span> Beauty Captions developed by
<a
href="https://moiseshp.dev"
target="_blank"
title="go to moiseshp website"
>
moiseshp</a
>
source code on
<a
href="https://github.com/moiseshp/beauty-captions"
target="_blank"
title="go to github source code"
>
Github
</a>
</p>
<p>version 0.1.0</p>
</footer>
<script src="./scripts/utils.js" defer></script>
<script src="./popup.js" defer></script>
</body>
</html>