forked from drj-io/employees
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemployees.html
More file actions
50 lines (42 loc) · 1.75 KB
/
employees.html
File metadata and controls
50 lines (42 loc) · 1.75 KB
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
<!doctype html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src='employees.js'></script>
<script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyDY0kkJiTPVd2U7aTOAwhc9ySH6oHxOIYM&sensor=false">
</script>
<style>
body { background-color: #9EAEB3; }
table td { padding: 5px ; border: 1px solid #000084; background-color: #D3D3D3;}
#add { margin-top: 5px; }
#edit_box {display: none;}
input {background-color: #D3D3D3;}
input:focus {border-color: #000084;}
button {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #46618f), color-stop(1, #112947));
background:-moz-linear-gradient(top, #46618f 5%, #112947 100%);
background:-webkit-linear-gradient(top, #46618f 5%, #112947 100%);
background:-o-linear-gradient(top, #46618f 5%, #112947 100%);
background:-ms-linear-gradient(top, #46618f 5%, #112947 100%);
background:linear-gradient(to bottom, #46618f 5%, #112947 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#46618f', endColorstr='#112947',GradientType=0);
background-color:#46618f;
-moz-border-radius:28px;
-webkit-border-radius:28px;
border-radius:5px;
border:1px solid #13204a;
color: #fff;
text-decoration:none;
text-shadow:0px 1px 0px #0a1836;
}
</style>
</head>
<body>
<h1>Employee List</h1>
<div id="employee_list"></div>
<button id="add">Add Employee</button>
<div id = "edit_box">
</div>
<div id="displaymap" style="width:500px;height:380px;margin-top:10px"></div>
</body>
</html>