-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (86 loc) · 1.79 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>PageList</title>
<link rel="stylesheet" href="./resources/css/style.css">
<style>
.wrapper {
padding: 80px 0 0 0;
}
.logo {
position: absolute;
top:23px;
left:40px;
width: 150px;
height: 25px;
background: url("./resources/img/graphledger-logo.png") 0 0 no-repeat;
background-size: 150px;
}
.wrap_contents{
padding: 50px;
}
table {
width: 100%;
}
table td,
table th {
text-align: center;
}
table th,
table td {
height: 40px;
border-bottom: #999 1px solid;
}
table th {
background: #dcdde2;
}
table td {
background: #fff;
}
table td:nth-child(1) {
text-align: center;
}
@media all and (max-width: 560px) {
table td:nth-child(1) {
text-align: left;
padding-left: 20px;
}
table td a {
font-size: 1.4rem;
}
}
</style>
</head>
<body>
<div class="wrapper">
<!-- wrap_header -->
<div class="wrap_header">
<div class="logo"></div>
</div>
<!-- // wrap_header -->
<div class="wrap_contents">
<table>
<colgroup>
<col style="width: 50%">
<col style="width: 50%">
</colgroup>
<thead>
<tr>
<th>페이지 명</th>
<th>상태</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="views_html/graph_user_demo.html">이력 그래프 (팝업창 크기 : 1000px X 891px)</a></td>
<td>O</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>