-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (94 loc) · 3.42 KB
/
index.html
File metadata and controls
95 lines (94 loc) · 3.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css"
/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
<style>
* {
font-family: 'Open Sans', sans-serif;
}
.action-btn {
color: #2283D9;
border-color: #2283D9;
&:hover {
color: #FFF;
background-color: #2283D9;
}
&:active {
color: #2283D9;
border-color:#2283D9;
background-color: #FFF;
}
}
</style>
<title>Cronomêtro</title>
</head>
<body class="bg-dark" style="width: 250px; border-radius:5px">
<header
style="backdrop-filter: brightness(90%)"
class="d-flex container-sm justify-content-between align-items-center py-4 px-3"
>
<h5 class="text-light text-center">Cronômetro BCR-CX</h5>
<a
target="_blank"
href="https://github.com/BCR-CX/cronometro"
title="Informações"
class="h1 link-primary"
><i class="bi-info"></i
></a>
</header>
<main class="d-flex container-fluid justify-content-center pb-3">
<section class="d-flex flex-column">
<div
class="d-flex justify-content-center gap-3 align-items-center my-3"
style="width: 200px"
>
<button
title="Copiar / Ctrl+C"
id="copy-btn"
class="btn bi-clipboard action-btn"
></button>
<button
title="Tema"
id="darker-btn"
class="btn btn-outline-light bi-sun"
value="true"
></button>
<button
title="Reiniciar"
id="restart-btn"
class="btn bi-arrow-clockwise action-btn"
></button>
</div>
<p class="text-light text-center" style="font-weight: 900" id="tempo">
<span class="text-center text-light" id="minutos" value="0">00</span>
:
<span class="text-center text-light" id="segundos" value="0">00</span>
</p>
<div class="d-flex justify-content-center">
<button
title="Iniciar/Pausar"
id="play-btn"
class="btn btn-sm btn-outline-dark rounded-circle bi-play"
></button>
</div>
</section>
</main>
<footer style="backdrop-filter: brightness(90%)" class="container-sm p-3">
<p class="text-light">Horas = <span id="Horas">...</span></p>
<p class="text-primary">Desenvolvido por Gabriel Sousa</p>
</footer>
<script src="index.js"></script>
<script src="background.js"></script>
<script src="content-script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>