This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
157 lines (144 loc) · 3.62 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Game List</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<style>
* {
outline: none;
max-width: 100%;
box-sizing: border-box;
font-family: Montserrat;
text-align: center;
}
body {
margin: 0;
padding: 0;
background: #efefef;
}
.container {
width: 400px;
margin: 0 auto;
overflow: hidden;
}
ul {
margin: 0;
padding: 0;
background: white;
border-radius: 10px;
overflow: hidden;
}
ul li {
list-style-type: none;
transition: 0.5s all;
border-bottom: 1px solid #efefef;
cursor: pointer;
}
ul li:hover{
background: black;
}
ul li div{
text-transform: uppercase;
font-weight: bold;
font-size: 0.8em;
padding-bottom: 10px;
}
ul li a {
text-decoration: none;
padding: 10px 20px;
font-size: 1.2em;
display: block;
transition: 0.5s all;
font-weight: bold;
color: #222;
}
ul li:hover a{
color: #F92672;
}
ul li:hover div{
color: white;
}
a{
color: inherit;
}
.author{
text-transform: uppercase;
font-size: 1em;
font-weight: bold;
margin-bottom: 30px;
}
.footer{
padding: 20px;
}
@media screen and (max-width: 960px) {
.container {
width: 100%;
padding: 0px 10px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Game List</h1>
<div class="author">Made By: Luki Centuri</div>
</div>
<ul>
<li>
<a href="star-battle/index.html">Star Battle</a>
<div> (This is ASC 2018 Client Side Task) </div>
</li>
<li>
<a href="angrybird/index.html">Angry Bird</a>
</li>
<li>
<a href="brick/index.html">Brick Game</a>
</li>
<li>
<a href="2048/index.html">2048</a>
</li>
<li>
<a href="dragon/index.html">Dragon Game</a>
</li>
<li>
<a href="elastic/index.html">Elastic Pipe</a>
</li>
<li>
<a href="manaus/index.html">Manaus River</a>
</li>
<li>
<a href="othello/index.html">Othello</a>
</li>
<li>
<a href="snake/index.html">Snake</a>
</li>
<li>
<a href="stack-2d/index.html">Stack 2D</a>
</li>
<li>
<a href="stack-3d/index.html">Stack 3D</a>
</li>
<li>
<a href="sudoku/index.html">Sudoku</a>
</li>
<li>
<a href="candycrush/index.html">Candy Crush</a>
</li>
<li>
<a href="duet/index.html">Duet</a>
</li>
<li>
<a href="pipe/index.html">Pipe Game</a>
</li>
<li>
<a href="curvy/index.html">Curvy Game</a>
</li>
</ul>
<div class="footer">
This is open source project. You can see the source code on <a href="https://github.com/lukicenturi/lukicenturi.github.io">here</a>
</div>
</body>
</div>
</html>