This repository has been archived by the owner on Dec 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoptions.html
34 lines (29 loc) · 1.51 KB
/
options.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
<!DOCTYPE html>
<html>
<head><title>Liqui.io Blocker</title></head>
<style>
::selection { background: #1A78FF; color: #fff; }
* { box-sizing: border-box; }
body { max-width: 980px; margin: 0 auto; padding: 30px; }
.header { text-align: center; margin-bottom: 60px; }
.header img { width: 280px; height: auto; }
input { width: 100%; border-radius: 5px; line-height: 24px; padding: 8px; border: 1px solid grey; outline: none; margin-bottom: 15px; font-size: 15px; }
#save { width: 100%; border-radius: 5px; background: #1A78FF; border: none; color: #FFF; font-size: 15px; padding: 15px; margin: 0; font-weight: bold; text-transform: uppercase; cursor: pointer;}
#usernames { margin-top: 45px; display: grid; grid-template-columns: repeat(5, 1fr); grid-gap: 10px; grid-auto-rows: minmax(auto, auto); }
#usernames li { font-size: 13px; list-style: none; line-height: 15px; }
#usernames li a { display: inline-block; margin-right: 10px; text-decoration: none; color: #1A78FF; border: 1px solid #1A78FF; border-radius: 50%; line-height: 1; padding: 1px 4px; width: 15px; font-size: 10px; height: 15px; vertical-align: middle;}
#usernames li a:hover { background: #1A78FF; color: #fff; }
</style>
<body>
<div class="header">
<a href="https://liqui.io">
<img src="https://liqui.io/img/logo.svg" />
</a>
</div>
<input id="username" placeholder="Username" type="text" />
<div id="status"></div>
<button id="save">Mute</button>
<div id="usernames"></div>
<script src="options.js"></script>
</body>
</html>