-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (63 loc) · 2.06 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>RxJS Intro</title>
<style>
ul {
list-style: none;
padding-left: 5px;
}
li {
padding-top: 5px;
}
li img {
width: 40px;
vertical-align: middle;
border-radius: 20px;
}
#followBox {
border: 1px solid #CCCCCC;
border-radius: 4px;
display: inline-block;
padding: 5px;
}
#typeBox {
border: 1px solid #CCCCCC;
border-radius: 4px;
display: inline-block;
padding: 5px;
vertical-align: top;
}
</style>
</head>
<body>
<div id="followBox">
<span>Who to follow</span>
<button id="refreshBtn">Refresh</button>
<div id="userCon">
<ul id="userList">
<li id="sug1" style="visibility:hidden">
<img>
<a href="" target="_blank" class="username">login</a>
<a href="#" class="close close1">×</a>
</li>
<li id="sug2" style="visibility:hidden">
<img>
<a href="" target="_blank" class="username">login</a>
<a href="#" class="close close2">×</a>
</li>
<li id="sug3" style="visibility:hidden">
<img>
<a href="" target="_blank" class="username">login</a>
<a href="#" class="close close3">×</a>
</li>
</ul>
</div>
</div>
<div id="typeBox">
<input id="inputBox" type="text" placeholder="Type anything"/>
<button id="countBtn">Counter</button>
</div>
<script src="dist/bundle.js"></script>
</body>
</html>