-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNamelist.html
140 lines (126 loc) · 3.14 KB
/
Namelist.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
<!doctype html>
<head>
<title>Search Bar for Names to Add</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<script src='js/namelist.js' defer></script>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jstorage.js"></script>
<script type="text/javascript" src="js/parse.js"></script>
<script type="text/javascript" src="js/api_auth.js" ></script>
<script type="text/javascript" src="js/namelist.js" defer></script>
<style>
body,html{
margin: 0px;
}
*{
font-family: 'Open Sans', sans-serif;
background-color: #fff;
}
#searchBar{
position: fixed;
top: 0px;
border-bottom: 1px solid #ccc;
padding-left: 5px;
height: 60px;
width: 100%;
color: #6c7a89;
font-size: 20px;
line-height: 80px;
background-color: #eee;
z-index: 1000;
}
#wrapper{
margin-top: 61px;
position: relative;
}
#scrollableMenu{
z-index: 800;
position: relative;
overflow: scroll;
}
.person{
position: relative;
border-bottom: 1px solid #ddd;
background-color: #f6f6f6;
height: 60px;
padding-left: 10px;
color: #34495e;
}
.name{
font-size: 20px;
margin-left: 60px;
line-height: 60px;
background-color: inherit;
}
#searchIcon{
float: left;
margin-top: 17.5px;
margin-left: 5px;
background: url(img/icons/Search_Icon.png);
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
height: 25px;
width: 25px;
margin-right: 5px;
}
.profile{
float: left;
border-radius: 50%;
height: 40px;
width: 40px;
margin-top: 10px;
margin-left: 10px;
}
.addButton{
top: 15px;
right: 10px;
position: absolute;
background: url(img/icons/Add_Button.png);
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
height: 30px;
width: 30px;
opacity: 0.5;
}
#searchInput{
position: relative;
top: -5px;
padding: 5px;
border: none;
border-radius: 0px;
border-bottom: 0.5px solid #bbb;
width: 70%;
background: none;
color: inherit;
font-size: 22px;
font-family: inherit;
margin-left: 5px;
}
#closeButton{
position: absolute;
top: 20px;
right: 25px;
background: url(img/icons/Close_Button.png);
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
height: 20px;
width: 20px;
opacity: 0.5;
}
</style>
</head>
<body>
<div id="searchBar">
<div id="searchIcon"></div>
<input id="searchInput" type="name" placeholder="Search for name"/>
<a href="frontPage.html"><div id="closeButton"></div></a>
</div>
<div id="wrapper">
<div id="scrollableMenu">
</div>
</div>
</body>