-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (69 loc) · 1.35 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo</title>
<link rel="stylesheet" href="index.css" />
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
*:before, *:after {
box-sizing: border-box;
}
html, body {
font-family: Roboto;
}
#root {
position: relative;
height: 100%;
min-height: 100%;
}
.app {
margin: 20px auto;
max-width: 400px;
}
ul.friend-list {
list-style: none;
margin: 0;
padding: 0;
}
ul.friend-list li {
border-radius: 3px;
background-color: #eee;
padding: 7px;
margin: 5px 0;
}
.friend-thumbnail h4 {
color: #555;
}
.friend-thumbnail .username {
color: #9aa;
font-size: 90%;
font-weight: normal;
}
#search-input {
-moz-appearance:none;
-webkit-appearance:none;
width: 100%;
height: 35px;
font-size: 90%;
outline: none;
border: 2px solid rgb(219, 228, 237);
border-radius: 3px;
padding-right: 5px;
transition: all 0.30s ease-in-out;
}
#search-input:focus {
border: 2px solid rgb(189, 198, 207);
}
</style>
</head>
<body>
<div id="root"></div>
<script src="common.js"></script>
<script src="index.js"></script>
</body>
</html>