-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
109 lines (106 loc) · 2.98 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./src/styles.css" />
<style>
.logo {
position: absolute;
bottom: 16px;
right: 16px;
width: 32px;
height: 32px;
z-index: 2;
background-image: url(https://app.spline.design/_assets/_icons/icon_favicon32x32.png);
background-size: cover;
}
.logo:hover {
opacity: 0.8;
}
</style>
</head>
<body>
<div id="app">
<main>
<div class="top">
<h1>Lojuare</h1>
</div>
<div class="mid"></div>
<div class="bottom">
<h2>apreapbang</h2>
<div class="panel">
<div>one done</div>
<div>aaskdjf</div>
</div>
<div class="panel">
<div>one done</div>
<div>aaskdjf</div>
</div>
</div>
</main>
<div class="pills">
<div class="pill-container">
<div class="pill">
<svg>
<g transform="translate(25, 60) rotate(-45)">
<rect
transform="translate(2, 2)"
x="0"
y="0"
width="5"
height="30"
fill="white"
></rect>
<rect
transform="translate(-5, -2)"
x="0"
y="0"
width="5"
height="40"
fill="#142641"
></rect>
<rect
transform="translate(-14, 0)"
x="0"
y="0"
width="5"
height="35"
fill="#142641"
></rect>
</g>
</svg>
</div>
<div class="pill-label">one</div>
</div>
<div class="pill-container">
<div class="pill">33S</div>
<div class="pill-label">two</div>
</div>
<div class="pill-container">
<div class="pill">327</div>
<div class="pill-label">three</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.7.9/dat.gui.min.js"></script>
<script
async
src="https://unpkg.com/[email protected]/dist/es-module-shims.js"
></script>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/[email protected]/build/three.module.js",
"three/": "https://unpkg.com/[email protected]/"
}
}
</script>
<script defer src="src/libs/mod3.js"></script>
<script defer src="src/libs/Three.js"></script>
<script defer src="src/libs/perlin.js"></script>
<script defer src="src/libs/CPerlin.js"></script>
<script src="./src/config.js"></script>
<script type="module" src="./src/main.js"></script>
</body>
</html>