-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
54 lines (51 loc) · 2.55 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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<title>New Tab 4 BLM</title>
<!-- <link rel="stylesheet" href="styles.css"> -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Yatra+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Italiana&display=swap" rel="stylesheet">
<script src="popupscript.js"></script>
<body style="font-family: Italiana, cursive; color: white; background-color: black">
<div class="popup" id="outer-box" style="display: inline-block; min-width:250px; padding:10px;">
<div id="prebookmark">
<h5>Tab For Black Lives Matter</h5>
<hr style="background-color: white;display:block">
Save this resource?
<br>
<div class="row">
<div class="col-3"></div>
<div class="col-9">
<div class="custom-control">
<input type="radio" class="custom-control-input" id="read" value="read" name="selectedType" checked="checked" >
<label class="custom-control-label" for="read">Read</label>
</div>
</div>
</div>
<div class="row">
<div class="col-3">Type:</div>
<div class="col-9">
<div class="custom-control">
<input type="radio" class="custom-control-input" id="sign" value="sign" name="selectedType">
<label class="custom-control-label" for="sign">Sign</label>
</div>
</div>
</div>
<div class="row">
<div class="col-3"></div>
<div class="col-9">
<div class="custom-control">
<input type="radio" class="custom-control-input" id="donate" value="donate" name="selectedType">
<label class="custom-control-label" for="donate">Donate</label>
</div>
</div>
</div>
<button id="bookmark" style="color:black; border: 1px solid black; background-color: white;" class="btn">Save</button>
</div>
<div id="postbookmark" style="display: none;">
Saved!
</div>
</div>
</body>
</html>