-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (57 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Hive</title>
<link rel="stylesheet" href="./main.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<style>
body {
background-color: #2b2d42;
align-content: center;
color: #fff;
width: 100%;
height: 100%;
font-family: monospace;
white-space: nowrap;
}
.tile {
width: 100px;
height: 100px;
background-color: #cbaa24;
text-align: center;
vertical-align: middle;
margin-left: 10px;
white-space: normal;
}
.hex {
-webkit-clip-path: polygon(
50% 0%,
95% 25%,
95% 75%,
50% 100%,
5% 75%,
5% 25%
);
clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}
.sangria {
margin-left: 57px;
}
.move-vertically {
position: relative;
top: 00px;
}
.possible-move {
background-color: #f5f5f5;
color: #000;
}
</style>
</head>
<body class="fs-4"></body>
</html>