-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
74 lines (72 loc) · 1.66 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!doctype html>
<html>
<head>
<title>Demo</title>
<link href="style.css" rel="stylesheet" type="text/css">
<style>
.button {
background-color: #cc5500;
border: 2px solid black;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 25px;
}
.button:hover {
background-color: #white;
box-shadow: 0px 15px 20px rgba(99.61, 84.71, 69.41, 0.4);
color: #white;
transform: translateY(-3px);
}
.button2 {
background-color: white;
border: 2px solid black;
color: #cc5500;
padding: 10px 18px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 25px;
}
.button2:hover {
background-color: #white;
box-shadow: 0px 15px 20px rgba(99.61, 84.71, 69.41, 0.4);
color: #white;
transform: translateY(-3px);
}
.button3 {
background-color: #cc5500;
border: 2px solid black;
color: white;
padding: 10px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 25px;
}
.button3:hover {
background-color: #white;
box-shadow: 0px 15px 20px rgba(99.61, 84.71, 69.41, 0.4);
color: #white;
transform: translateY(-3px);
}
</style>
<script src="popup.js"></script>
</head>
<body>
<input type="button" class="button" id="btnOpenNewTab" value="See all Waitlists"/>
<input type="button" class="button2" id="btnSee" value="See my Waitlists"/>
<input type="button" class="button3" id="btnCourse" value="Course Schedule"/>
</body>
</html>