-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
57 lines (56 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<style>
body{
background:#f0f7ff;
font-size:15px;
}
.btn{
height:40px;
margin-top:5px;
color:white;
font-size: 15px;
width:100%;
}
.ext-enabled{
background:#1fa300;
border: solid 2px #28cc00;
}
.ext-disabled{
background:#bf0000;
border:solid 2px #9e0000;
}
#ok-btn{
background:#1fa300;
color:white;
border: solid 2px #28cc00;
font-size:15px;
padding: 3px 10px 3px 10px;
}
#host-field{
width:65%;
border:none;
/*border-radius:2px;
border: solid 1px #ccc;*/
padding:5px;
}
</style>
</head>
<body>
<div style="width:400px">
<h2 style="text-align:center"> Hostname I suck at naming stuff </h2>
<label> Hostname </label>
<input id="host-field" type="text" value="localhost">
<button type="button" id="ok-btn" > Ok </button>
<br>
<button class="btn ext-disabled" id="ext-btn">Enable</button>
<br>
<a href="https://flameofignis.com" style="font-size:8px; color:#666"> https://flameofignis.com </a>
<br>
<a href="https://github.com/flameofignis" style="font-size:8px; color:#666"> https://github.com/flameofignis </a>
<h3 style="text-align:center"> Bottom Text </h3>
</div>
<script src="content.js"></script>
</body>
</html>