-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
42 lines (34 loc) · 1.28 KB
/
popup.html
File metadata and controls
42 lines (34 loc) · 1.28 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MiExt for Camila Oliveira - Leitura Salva</title>
<link rel="stylesheet" href="./src/styles/popup.css">
</head>
<body>
<div class="header">
<h1>📚 Meus Conteúdos Salvos</h1>
</div>
<div class="content" id="listView">
<div class="empty-state" id="emptyState">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"></path>
</svg>
<p>Nenhum conteúdo salvo ainda</p>
<p style="font-size: 12px;">Visite camilaloliveira.com e clique em "Salvar para ler depois"</p>
</div>
<div id="savedList"></div>
</div>
<div class="reading-view" id="readingView">
<button class="back-btn" id="backBtn">← Voltar</button>
<div class="reading-content" id="readingContent"></div>
</div>
<!-- Models -->
<script src="./src/models/PopupModel.js"></script>
<!-- Views -->
<script src="./src/views/PopupView.js"></script>
<!-- Controllers -->
<script src="./src/controllers/PopupController.js"></script>
</body>
</html>