-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
323 lines (281 loc) · 10.9 KB
/
index.html
File metadata and controls
323 lines (281 loc) · 10.9 KB
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
<!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Armory | 3D Content Creation Tools</title>
<meta name="description" content="3D content creation tools.">
<link href="css/bootstrap.min.css" rel="stylesheet">
<style>
[data-bs-theme=dark] {
--bs-body-bg: #000;
--bs-body-bg-rgb: 25, 28, 32;
--bs-secondary-bg: #111111;
--bs-secondary-bg-rgb: 17, 17, 17;
--bs-tertiary-bg: #111111;
--bs-tertiary-bg-rgb: 17, 17, 17;
}
.bg-dark {
background-color: #000 !important;
}
.btn-primary {
background-color: #cf2b43 !important;
border-color: #cf2b43 !important;
}
header {
position: relative;
background-color: black;
overflow: hidden;
height: 60vh;
display: block;
}
header img {
position: absolute;
top: 7%;
left: 40%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
transform: translateX(-40%) translateY(-25%);
object-fit: cover;
z-index: 0;
}
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
.nav-pills .nav-link.active {
background-color: #cc334d !important;
color: white !important;
}
.glass-navbar {
background-color: rgba(0, 0, 0, 0.78) !important;
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
transition: background-color 0.3s ease;
}
.glass-hero {
background-color: rgba(17, 17, 17, 0.60) !important;
border: 1px solid rgba(255, 255, 255, 0.05);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
@font-face {
font-family: 'Satoshi';
src: url('css/Satoshi-Variable.woff2') format('woff2');
font-weight: 300 900;
font-style: normal;
font-display: swap;
}
:root {
--font-sans: 'Satoshi', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
body, p, .lead {
font-weight: 400;
}
h1, .display-5, .display-4 {
font-weight: 500;
}
.navbar-nav .nav-link {
font-weight: 500;
}
body, h1, .display-5, .display-4, .lead, p, .nav-link, .dropdown-item, .btn, h5 {
font-family: var(--font-sans);
}
:root {
font-feature-settings: "ss01", "tnum";
}
.gallery {
column-count: 1;
column-gap: 1rem;
margin: 0 auto;
max-width: 1200px;
}
.gallery-item {
break-inside: avoid;
margin-bottom: 1rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
transform: scale(1.03);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
@media (min-width: 576px) {
.gallery { column-count: 2; }
}
.footer-center ul {
padding-left: 0;
}
.footer-center {
margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
.footer-center {
text-align: center;
margin-bottom: 0;
}
.footer-center > div {
display: inline-block;
text-align: left;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top glass-navbar">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#mynavbar" aria-expanded="false" aria-label="Toggle">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-center" id="mynavbar">
<ul class="navbar-nav align-items-center">
<li>
<a href="https://armory3d.org/" class="navbar-brand me-4">
<img src="img/Logo.png" style="width: 50px;" class="rounded" alt="Armory">
</a>
</li>
<li class="nav-item dropdown me-4">
<a class="nav-link dropdown-toggle fw-semibold" href="#" data-bs-toggle="dropdown" aria-expanded="false">
ARMORY
</a>
<ul class="dropdown-menu rounded-3 shadow">
<li>
<a class="dropdown-item rounded-2" href="https://armorpaint.org/">
<img src="img/paint.png" style="width: 25px;" class="rounded" /> ARMORPAINT
</a>
</li>
<li>
<a class="dropdown-item rounded-2" href="https://armory3d.org/engine">
<img src="img/Logo.png" style="width: 25px;" class="rounded" /> ARMORY ENGINE
</a>
</li>
</ul>
</li>
<li class="nav-item"><a class="nav-link" href="https://armory3d.org">HOME</a></li>
</ul>
</div>
</div>
</nav>
<main>
<header>
<img src="img/FeaturedCover.jpg" />
<div class="position-relative p-5 mx-auto mx-md-5 my-5">
<div class="p-5 mx-auto mx-md-5 my-5 glass-hero rounded-3" style="width: 440px;">
<h1 class="display-5 pb-3">3D <span class="text-body-emphasis">Content<br/>Creation</span> Tools</h1>
</div>
</div>
</header>
<!------------------------------------->
<div class="container col-xxl-9 py-1 fade-in">
<div class="row flex-lg-row-reverse align-items-center g-sm-5 py-5">
<div class="col-lg-6 rounded pt-3">
<h1 class="display-5 text-body-emphasis lh-1 mb-3">ArmorPaint</h1>
<p class="lead">ArmorPaint is a software designed for physically-based texture painting. Drag & drop your 3D models and start painting.</p>
<p><a href="https://armorpaint.org"><button type="button" class="btn btn-primary px-4 me-sm-3">Learn More</button></a></p>
</div>
<div class="col-lg-6">
<img src="img/1.jpg" class="d-block mx-lg-auto img-fluid rounded" width="700" height="500" loading="lazy">
</div>
</div>
</div>
<!------------------------------------->
<div class="container p-5 fade-in bg-body-tertiary rounded">
<div class="row flex-lg-row-reverse align-items-center g-sm-5 py-5">
<div class="col-lg-6">
<img src="img/3.jpg" class="d-block mx-lg-auto img-fluid rounded shadow-lg" width="700" height="500" loading="lazy">
</div>
<div class="col-lg-6 rounded">
<h1 class="display-5 text-body-emphasis lh-1 mb-3">Armory 3D Engine</h1>
<p class="lead">Build games in Blender.</p>
<p><a href="https://armory3d.org/engine"><button type="button" class="btn btn-primary px-4 me-sm-3">Learn More</button></a></p>
</div>
</div>
</div>
<!------------------------------------->
<footer class="container py-5">
<div class="row pb-4">
<div class="col-12 col-md footer-center">
<a href="https://armory3d.org/"><img class='col-3 col-md-6 img-fluid rounded' src="img/Logo.png"/></a>
</div>
<div class="col-6 col-md footer-center">
<div>
<h5>Projects</h5>
<ul class="list-unstyled text-small">
<li><a class="link-secondary text-decoration-none" href="https://armorpaint.org/">ArmorPaint</a></li>
<li><a class="link-secondary text-decoration-none" href="https://armory3d.org/engine">Armory Engine</a></li>
<li><span id="view-count" style="color: #333;"></span></li>
<script>
fetch('https://counters.armory3d.workers.dev' + window.location.pathname)
.then(res => res.text())
.then(count => {
document.getElementById('view-count').innerText = count;
});
</script>
</ul>
</div>
</div>
<div class="col-6 col-md footer-center">
<div>
<h5>Social</h5>
<ul class="list-unstyled text-small">
<li><a class="link-secondary text-decoration-none" href="https://youtube.com/c/armory3d">YouTube</a></li>
<li><a class="link-secondary text-decoration-none" href="https://artstation.com/armory">ArtStation</a></li>
<li><a class="link-secondary text-decoration-none" href="https://x.com/armory3d">X</a></li>
</ul>
</div>
</div>
<div class="col-6 col-md footer-center">
<div>
<h5>Links</h5>
<ul class="list-unstyled text-small">
<li><a class="link-secondary text-decoration-none" href="https://github.com/armory3d/armorpaint">GitHub</a></li>
<li><a class="link-secondary text-decoration-none" href="https://github.com/armory3d/armorpaint/issues">Tracker</a></li>
<li><a class="link-secondary text-decoration-none" href="https://forums.armorpaint.org/c/releases">Releases</a></li>
</ul>
</div>
</div>
<div class="col-6 col-md footer-center">
<div>
<h5>About</h5>
<ul class="list-unstyled text-small">
<script language="JavaScript">
var user_name = "lubos";
var host_name = "armory3d.com";
document.write("<li><a class='link-secondary text-decoration-none' href='" + "mail" + "to:" + user_name + "@" + host_name + "'>Contact</a></li>");
</script>
<li><a class="link-secondary text-decoration-none" href="https://armorpaint.org/privacy">Privacy</a></li>
<li><a class="link-secondary text-decoration-none" href="https://github.com/armory3d/armorpaint/blob/main/license.md">License</a></li>
</ul>
</div>
</div>
</div>
</footer>
</main>
<script src="css/bootstrap.bundle.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
const fadeIns = document.querySelectorAll('.fade-in');
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
observer.unobserve(entry.target);
}
});
}, observerOptions);
fadeIns.forEach((fadeIn) => {
observer.observe(fadeIn);
});
});
</script>
</body>
</html>