-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
55 lines (55 loc) · 1.19 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
<!doctype html>
<html>
<head>
<title>npm-janitor: clean up all your package.json's</title>
<style type="text/css">
.green {
color: green;
}
.red {
color: red;
}
.yellow {
color: orange;
}
.cardStyle {
width: 25%;
margin: 2%;
padding:15px;
display: inline-block;
vertical-align: top;
/*height: 150px;*/
overflow: auto;
}
img {
display: block;
margin: 0 auto;
}
input {
display: block;
width: 300px;
height: 2em;
margin: 0 auto;
border: 1px #ccc solid;
border-radius: 2px;
padding-left: 1em;
font-size: 14px;
}
.info {
text-align: center;
font-family: 'Prociono', serif;
}
.loader {
top: 50%;
margin-top: 100px;
position: absolute;
left: 50%;
}
</style>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Prociono">
</head>
<body>
<div id="content"></div>
<script src="bundle.js"></script>
</body>
</html>