forked from qlik-oss/enigma.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Car Models</title>
<style>
@import url(https://fonts.googleapis.com/css?family=Noto+Sans:400,700);
html, body {
margin: 0;
padding: 0;
height: 100%;
}
body {
font-family: 'Noto Sans', sans-serif;
font-size: 14px;
color: #595959;
padding: 20px;
}
input, textarea, select, button {
font-family: 'Noto Sans', sans-serif;
font-size: 13px;
}
.tooltip {
min-height: 28px;
box-sizing: border-box;
display: inline-block;
padding: 5px 10px;
border-radius: 3px;
font-size: 13px;
position: relative;
transition: opacity 50ms ease-out;
opacity: 1.0;
z-index: 1021;
color: #FFFFFF;
background-color: rgba(0, 0, 0, 0.9);
}
</style>
</head>
<body>
<app></app>
<script src="app.js"></script>
</body>
</html>