forked from bengesoff/ipcortex-dynamic-contacts-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 941 Bytes
/
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
<html>
<head>
<title>IPCortex Dynamic Contacts</title>
<script src="https://pabx.hostname/api/api.js"></script>
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/icon?family=Material+Icons' rel='stylesheet' type='text/css'>
<style>
body {
font-family: 'Montserrat', sans-serif;
font-size: 12px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
font-size: 20px;
line-height: 30px;
border-bottom: 1px solid #ccc;
}
li:last-child {
border: none;
}
li a {
text-decoration: none;
color: #000;
display: block;
width: 800px;
transition: font-size 0.3s ease, background-color 0.3s ease;
}
li a:hover {
font-size: 30px;
background: #f6f6f6;
}
</style>
</head>
<body>
<div id="root" />
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>