-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
151 lines (136 loc) · 6.09 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html>
<head>
<style>
@import url(https://fonts.googleapis.com/css?family=Khula:800);
@import url('https://fonts.googleapis.com/css?family=Red+Hat+Display:900&display=swap');
button {
display: inline-block;
padding: 0.7em 1.7em;
margin: 0 0.3em 0.3em 0;
border-radius: 0.2em;
box-sizing: border-box;
text-decoration: none;
font-family:'Khula',sans-serif;
font-weight: 900;
color: #27187E;
background-color: #FF8600;
box-shadow: inset 0 -0.6em 1em -0.35em rgba(0,0,0,0.17),inset 0 0.6em 2em -0.3em rgba(255,255,255,0.15),inset 0 0 0em 0.05em rgba(255,255,255,0.12);
text-align: center;
position: relative;
}
button:active {
box-shadow:inset 0 0.6em 2em -0.3em rgba(0,0,0,0.15),inset 0 0 0em 0.05em rgba(255,255,255,0.12);
}
.center {
margin: 0;
position: absolute;
top: 70%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.bg {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.cont {
display: block;
height: 20px;
width: 20px;
}
.mainBG {
display: block;
height: 28em;
width: 28em;
}
.console-container {
font-family:Khula;
font-size: 1em;
text-align:center;
height: 20%;
width: 60%;
display:block;
position:absolute;
color:white;
top:0;
bottom:0;
left:0;
right:0;
margin:auto;
}
.console-underscore {
display:inline-block;
position:relative;
top:-0.14em;
left:10px;
color: black;
}
.hidden {
opacity:0;
}
.myHeading {
font-family: 'Red Hat Display', sans-serif;
}
.myHeading2 {
top: 20%;
font-family: 'Red Hat Display', sans-serif;
position: relative;
}
.myHeading3 {
top: 18%;
font-family: 'Khula', sans-serif;
position: relative;
}
.myHeading4 {
top: 10%;
font-family: 'Khula', sans-serif;
position: relative;
}
h1 {
font-size: 1em;
margin-left: 30%;
color: #758BFD;
}
h2 {
font-size: 1em;
margin-left: 37%;
color: black;
}
h3 {
font-size: 0.95em;
margin-left: 34%;
color: black;
}
</style>
</head>
<body>
<div class="mainBG">
<img src="images/bg.jpg" class="bg">
<div class="myHeading">
<h1>Google Meet Chat Hider</h1>
</div>
<div class='console-container'>
<span id='text'></span>
<div class='console-underscore' id='console'>_
</div>
</div>
<div class="center">
<button id="hideChat">HIDE CHAT!</button>
</div>
<div class="myHeading2">
<h2>Follow Me On</h2>
</div>
<div class="myHeading3">
<h3>Twitter: @rohit901</h3><br>
</div>
<div class="myHeading4">
<h3>Github: rohit901</h3>
</div>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="popup.js"></script>
</div>
</body>
</html>