-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (52 loc) · 1.34 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
<!doctype html>
<html>
<head>
<title>某漫畫網站</title>
<meta name="viewport" content="width=device-width, initial-scale=1 , maximum-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap-theme.min.css">
<style>
html,
body,
#root{
margin:0;
height:100%;
}
*{
font-family: "微軟正黑體","Helvetica Neue",Helvetica,Arial,sans-serif;
}
.container-fluid{
padding-left: 5px !important;
padding-right: 5px !important;
}
/* sorttableList */
.grid {
background: #F5F5F5;
box-shadow: #ccc 0px 0px .1px inset;
}
.grid > div{
min-width: 200px;
display: inline-block;
vertical-align: middle;
margin: 2px 5px;
height: 300px;
overflow-y: hidden;
}
/* fix bootstrap label */
label{
font-weight: inherit;
}
/*.grid:after{
clear: both;
content: "";
display: block;
}*/
</style>
</head>
<body>
<div id="root"></div>
</body>
<script src="/dist/bundle.js"></script>
</html>