-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
index.html
61 lines (61 loc) · 1.57 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>地形生成研究所</title>
<style>
h2 {
text-align: center;
}
.content{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box{
border: solid 7px #f6f6f6;
width: 300px;
height: 210px;
text-align: center;
line-height: 14px;
font-weight: bold;
font-size: 13px;
}
.box img {
max-width: 256px;
height: 160px;
}
.text{
color: #3333aa;
width: 100%;
height: 2rem;
overflow: hidden;
padding-top: 3px;
}
</style>
</head>
<body lang="ja">
<h2>
🌏地形生成研究所🌏
</h2>
<div class="content">
<section class="box">
<div>
<a href="https://github.com/Kasugaccho/DTL_RogueLike">
<img src="https://qiita-image-store.s3.amazonaws.com/0/213065/28d389da-7bf1-20f3-e99f-638c417f22e7.gif">
</a>
</div>
<p class="text"><a href="https://github.com/Kasugaccho/DTL_RogueLike">RogueLike</a></p>
</section>
<section class="box">
<div>
<a href="https://github.com/Kasugaccho/DTL_SimpleVoronoiIsland">
<img src="https://qiita-image-store.s3.amazonaws.com/0/213065/9705715f-0d89-b585-b66a-fb6a5c778670.gif" />
</a>
</div>
<p class="text"><a href="https://github.com/Kasugaccho/DTL_SimpleVoronoiIsland">Simple Voronoi Island</a></p>
</section>
</div>
</body>
</html>