Skip to content

Commit 5eb7573

Browse files
authored
More design Improvements + Updated Navbar/Burger Menu
1 parent 1f4ecc3 commit 5eb7573

File tree

6 files changed

+25
-43
lines changed

6 files changed

+25
-43
lines changed

about.html

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
<a href="impr.html">IMP Renewed</a>
3232
<a href="oer.html">Otyacraft Engine Renewed</a>
3333
</div>
34+
<a href="testing.html" class="active">Test Uploads</a>
3435
</div>
3536
</div>
3637
</div>
@@ -76,15 +77,5 @@ <h2>Get Involved</h2>
7677
</div>
7778
</main>
7879
<script src="assets/js/nav-theme.js"></script>
79-
<h2>A Song</h2>
80-
<p>Cause why not?</p>
81-
<div id="spotify-embed"></div>
82-
<script>
83-
fetch('embedd.txt') // adjust path if needed
84-
.then(res => res.text())
85-
.then(code => {
86-
document.getElementById('spotify-embed').innerHTML = code;
87-
});
88-
</script>
8980
</body>
9081
</html>

impr.html

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
<a href="impr.html">IMP Renewed</a>
3232
<a href="oer.html">Otyacraft Engine Renewed</a>
3333
</div>
34+
<a href="testing.html" class="active">Test Uploads</a>
3435
</div>
3536
</div>
3637
</div>
@@ -74,15 +75,5 @@ <h2>Download and Support</h2>
7475
</div>
7576
</main>
7677
<script src="assets/js/nav-theme.js"></script>
77-
<h2>A Song</h2>
78-
<p>Cause why not?</p>
79-
<div id="spotify-embed"></div>
80-
<script>
81-
fetch('embedd.txt') // adjust path if needed
82-
.then(res => res.text())
83-
.then(code => {
84-
document.getElementById('spotify-embed').innerHTML = code;
85-
});
86-
</script>
8778
</body>
8879
</html>

index.html

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
<a href="impr.html">IMP Renewed</a>
3232
<a href="oer.html">Otyacraft Engine Renewed</a>
3333
</div>
34+
<a href="testing.html" class="active">Test Uploads</a>
3435
</div>
3536
</div>
3637
</div>
@@ -66,15 +67,5 @@ <h2>Stay Connected</h2>
6667
</div>
6768
</main>
6869
<script src="assets/js/nav-theme.js"></script>
69-
<h2>A Song</h2>
70-
<p>Cause why not?</p>
71-
<div id="spotify-embed"></div>
72-
<script>
73-
fetch('embedd.txt') // adjust path if needed
74-
.then(res => res.text())
75-
.then(code => {
76-
document.getElementById('spotify-embed').innerHTML = code;
77-
});
78-
</script>
7970
</body>
8071
</html>

oer.html

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
<a href="impr.html">IMP Renewed</a>
3232
<a href="oer.html">Otyacraft Engine Renewed</a>
3333
</div>
34+
<a href="testing.html" class="active">Test Uploads</a>
3435
</div>
3536
</div>
3637
</div>
@@ -74,15 +75,5 @@ <h2>Download and Support</h2>
7475
</div>
7576
</main>
7677
<script src="assets/js/nav-theme.js"></script>
77-
<h2>A Song</h2>
78-
<p>Cause why not?</p>
79-
<div id="spotify-embed"></div>
80-
<script>
81-
fetch('embedd.txt') // adjust path if needed
82-
.then(res => res.text())
83-
.then(code => {
84-
document.getElementById('spotify-embed').innerHTML = code;
85-
});
86-
</script>
8778
</body>
8879
</html>

style.css

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ p {
238238
.btn {
239239
display: inline-block;
240240
align-self: center;
241-
background: var(--primary);
241+
background: var(--bg-light);
242242
color: var(--text);
243243
padding: 1rem 2rem;
244244
text-decoration: none;
@@ -251,9 +251,27 @@ p {
251251
}
252252

253253
.btn:hover {
254-
background: var(--bg-light);
254+
background: var(--primary);
255255
}
256256

257+
.btnsec {
258+
display: inline-block;
259+
align-self: center;
260+
background: var(--secondary);
261+
color: var(--text);
262+
padding: 1rem 2rem;
263+
text-decoration: none;
264+
border-radius: 6px;
265+
margin: 0.5rem;
266+
transition: all 0.3s ease;
267+
font-size: 1.1rem;
268+
font-weight: 500;
269+
font-family: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
270+
}
271+
272+
.btnsec:hover {
273+
background: var(--bg-light);
274+
}
257275
.card {
258276
background: var(--bg);
259277
padding: 2rem;

testing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<a href="oer.html">Otyacraft Engine Renewed</a>
8989
</div>
9090
</div>
91-
<a href="test-uploads.html" class="active">Test Uploads</a>
91+
<a href="testing.html" class="active">Test Uploads</a>
9292
</div>
9393
</div>
9494

0 commit comments

Comments
 (0)