forked from mackeylol/copyofmasite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathai.htm
63 lines (63 loc) · 1.34 KB
/
ai.htm
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
<!DOCTYPE html>
<html>
<head>
<title>2048 Game</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
body {
margin: 0;
padding: 0;
font-family: sans-serif;
background-color: #faf8ef;
}
.container {
margin-top: 20px;
padding: 0;
background-color: #bbada0;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.row {
margin: 0;
padding: 0;
}
.col {
margin: 0;
padding: 0;
text-align: center;
font-size: 50px;
font-weight: bold;
color: #776e65;
background-color: #cdc1b4;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.col-empty {
background-color: #cdc1b4;
}
.col-2 {
background-color: #eee4da;
color: #776e65;
}
.col-4 {
background-color: #ede0c8;
color: #776e65;
}
.col-8 {
background-color: #f2b179;
color: #f9f6f2;
}
.col-16 {
background-color: #f59563;
color: #f9f6f2;
}
.col-32 {
background-color: #f67c5f;
color: #f9f6f2;
}
.col-64 {
background-color: #f65e