forked from scratchfoundation/scratchx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
new.html
191 lines (191 loc) · 6.36 KB
/
new.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>X3non</title>
<link rel="icon" type="image/x-icon" href="https://x3nonmod.github.io/dev/images/x3non_icon.png">
<script type="text/javascript" src="libs/base64ab.js" async></script>
<script type="text/javascript" src="libs/bowser.min.js"></script>
<script type="text/javascript" src="libs/swfobject.js"></script>
<script type="text/javascript" src="libs/jquery-1.11.2.min.js"></script>
<script type="text/javascript" src="libs/socket.io-1.3.7.js"></script>
<script type="text/javascript" src="libs/underscore-min.js" async></script>
<script type="text/javascript" src="libs/ZeroClipboard.min.js" async></script>
<script type="text/javascript" src="js/scratchx.js" defer></script>
<script type="text/javascript" src="scratch_extensions/scratch_proxies.js" defer></script>
<script type="text/javascript" src="scratch_extensions/scratch_plugin.js" defer></script>
<script type="text/javascript" src="scratch_extensions/scratch_nmh.js" defer></script>
<script type="text/javascript" src="scratch_extensions/scratch_deviceManager.js" defer></script>
<script type="text/javascript" src="scratch_extensions/scratch_ext.js" defer></script>
<style>
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #121212;
color: #e0e0e0;
line-height: 1.6;
}
header {
background-color: #1f1f1f;
color: white;
padding: 10px 0;
}
header nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
header nav .left,
header nav .right {
display: flex;
align-items: center;
}
header nav .left a,
header nav .right a {
color: white;
text-decoration: none;
padding: 10px 20px;
font-size: 16px;
transition: background-color 0.3s ease, color 0.3s ease;
}
header nav .left a:hover,
header nav .right a:hover {
background-color: #333333;
border-radius: 5px;
}
header nav .right a {
background-color: #ff5722;
margin-left: 10px;
border-radius: 5px;
}
header nav .right a:hover {
background-color: #e64a19;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.intro {
text-align: center;
padding: 50px 0;
}
.intro h1 {
font-size: 2.5em;
margin-bottom: 20px;
color: #ffeb3b;
text-transform: uppercase;
letter-spacing: 1px;
}
.intro p {
font-size: 1.2em;
color: #bbbbbb;
margin-bottom: 30px;
}
.buttons a {
display: inline-block;
margin: 0 10px;
padding: 15px 30px;
color: white;
background-color: #ff5722;
border-radius: 5px;
text-decoration: none;
font-size: 1em;
transition: background-color 0.3s ease, transform 0.3s ease;
}
.buttons a:hover {
background-color: #e64a19;
transform: scale(1.05);
}
.section {
margin-top: 50px;
}
.section h2 {
text-align: center;
margin-bottom: 30px;
font-size: 2em;
color: #ffeb3b;
text-transform: uppercase;
letter-spacing: 1px;
}
.section p {
font-size: 1.1em;
color: #bbbbbb;
text-align: center;
max-width: 800px;
margin: 0 auto;
}
footer {
background-color: #1f1f1f;
color: #bbbbbb;
text-align: center;
padding: 20px 0;
margin-top: 50px;
}
footer p {
margin: 10px 0;
}
footer a {
color: #ff5722;
text-decoration: none;
margin: 0 10px;
transition: color 0.3s ease;
}
footer a:hover {
text-decoration: underline;
color: #e64a19;
}
</style>
</head>
<body>
<main>
<header>
<nav>
<div class="left">
<a href="#home"><img src="../images/x3non_title.png" alt="X3non Logo" height="40"></a>
<a href="https://x3nonmod.github.io/dev/editor">Create</a>
<a href="https://x3nonmod.github.io/dev/gallery">Extensions</a>
<a href="#">Discuss</a>
<a href="#">Help</a>
</div>
<div class="right">
<!-- Add more links or buttons if needed -->
</div>
</nav>
</header>
<article id="editor">
</article>
<div class="container">
<div class="intro">
<h1>Unleash Your Game Development Potential with X3non</h1>
<p>X3non: A game engine based on ScratchX, empowering you to create advanced interactive projects and innovative digital experiences.</p>
<div class="buttons">
<a href="https://x3nonmod.github.io/dev/editor">Try X3non</a>
<a href="https://x3nonmod.github.io/dev/gallery">View Extensions</a>
</div>
</div>
<article id="home">
<section class="main-content section">
<div>
<h2>Welcome to X3non</h2>
<p>Unleash your creativity and explore the possibilities with X3non. Whether you're a seasoned coder or a curious beginner, X3non provides the tools and resources you need to bring your game ideas to life.</p>
<p>Get started today and embark on a journey of discovery and innovation!</p>
</div>
</section>
</article>
</div>
<footer>
<p>© 2024 X3non. All rights reserved.</p>
<p>
<a href="#privacy">Privacy Policy</a> |
<a href="#terms">Terms of Service</a>
</p>
</footer>
</main>
</body>
</html>