-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (68 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
<!DOCTYPE html>
<html lang="ko" dir="ltr" ondragstart="return false" oncontextmenu="return false" onselectstart="return false">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="pccs.css">
<style media="screen">
main {
display: flex;
justify-content: center;
}
table {
border-radius: 0.5rem;
background-color: lightgray
}
table th {
width: 5rem;
height: 2rem;
padding: 0.5rem;
}
table a {
text-decoration: none;
color: lightblue;
background-color: gray;
border-radius: 0.33rem;
padding: 8px;
}
</style>
<title>INDEX | PCCS Palette</title>
</head>
<body>
<header id="title_bar" style="background-color: lightgray">
<div id="title_image" style="background-color: gray;color: lightgray">DC</div>
<div id="title" style="color: gray">PCCS Palette</div>
<a id="developer" href="mailto:[email protected]" style="color: gray;">제작자</a>
</header>
<main>
<table>
<thead class="">
<tr>
<th></th>
<th>Ver. 1</th>
<th>Ver. 2</th>
<th>Ver. 3</th>
</tr>
</thead>
<tbody class="">
<tr>
<th>Hue</th>
<td><a href="16bit" target="_blank">16 x 16</a></td>
<td><a href="16bit/official" target="_blank"></a></td>
<td><a href="hue" target="_blank">(제작중)</a></td>
</tr>
<tr>
<th>Saturation</th>
<td><a href="saturation" target="_blank">24 x 16</a></td>
</tr>
<tr>
<th>Lightness</th>
<td><a href="lightness" target="_blank">기본형</a></td>
</tr>
</tbody>
</table>
</main>
<footer>
</footer>
</body>
</html>