-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
42 lines (39 loc) · 1.28 KB
/
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
38
39
40
41
42
<!doctype html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="popup.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous">
<script src="jquery-3.3.1.min.js"></script>
</head>
<body>
<div class="row top-bar">
<h1 id="title">no mo history</h1>
<label class="switch">
<input id="switch" type="checkbox">
<span class="slider round"></span>
</label>
</div>
<section class="settings">
<div class="row">
<div class="eye">
<i class="fas fa-eye-slash icon fa-2x"></i>
</div>
<button class="button" id="add-btn">
<i class="fas fa-plus icon"></i>
</button>
</div>
</section>
<section class="description-section">
<div class="row">
<p class="description-text">Welcome to no mo history! Add domains here that you want to automatically clear from your browser history.</p>
</section>
<section class="domain-section">
<div class="row center">
<button id="save-btn" class="button">Save</button>
</div>
</section>
<script src="popup.js"></script>
</body>
</html>