-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewTab.html
25 lines (25 loc) · 1.11 KB
/
newTab.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My New Tab</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="bg-myWhite padding-10 border-radius-10 main-block cdbm_timers" id="cdbm_timers">
<div id="cdbm_timers_active"></div>
<!-- <div id="cdbm_timers_inactive"></div> -->
</div>
<div class="bg-myWhite padding-10 border-radius-10 main-block text-middle" style="flex-direction: row; gap:5px;">
<span class="links cursor-pointer" id="byMichalFutera">© by Michal Futera</span>
||<span class="links cursor-pointer" id="aboutPlugin">About plugin</span>
||<span id="bigReset" class="links cursor-pointer">Reset plugin</span>
<!-- ||<span id="options" class="links cursor-pointer">Options</span> -->
</div>
<dialog id="mainPopUp" class="border-radius-10" style="max-width: 50%;"></dialog>
<script src="chrome_scripts.js"></script>
<script src="scripts.js"></script>
<script src="index_scripts.js"></script>
</body>
</html>