I want this to have cursive font I want the font color to be emerald green and I want the background to be dark theme black
Browse files- components/footer.js +14 -14
- components/navbar.js +13 -13
- create.html +3 -3
- download.html +3 -3
- help.html +3 -3
- index.html +4 -4
- projects.html +3 -3
- style.css +5 -4
components/footer.js
CHANGED
|
@@ -4,12 +4,12 @@ class CustomFooter extends HTMLElement {
|
|
| 4 |
this.shadowRoot.innerHTML = `
|
| 5 |
<style>
|
| 6 |
footer {
|
| 7 |
-
background: rgba(
|
| 8 |
-
color: #
|
| 9 |
padding: 2rem 1rem;
|
| 10 |
text-align: center;
|
| 11 |
-
border-top: 1px solid #
|
| 12 |
-
|
| 13 |
.footer-content {
|
| 14 |
max-width: 1200px;
|
| 15 |
margin: 0 auto;
|
|
@@ -21,8 +21,8 @@ color: #4b5563;
|
|
| 21 |
.footer-section h3 {
|
| 22 |
font-weight: 600;
|
| 23 |
margin-bottom: 1rem;
|
| 24 |
-
color: #
|
| 25 |
-
|
| 26 |
.footer-section ul {
|
| 27 |
list-style: none;
|
| 28 |
padding: 0;
|
|
@@ -32,13 +32,13 @@ color: #4b5563;
|
|
| 32 |
margin-bottom: 0.5rem;
|
| 33 |
}
|
| 34 |
.footer-section a {
|
| 35 |
-
color: #
|
| 36 |
text-decoration: none;
|
| 37 |
transition: color 0.2s;
|
| 38 |
}
|
| 39 |
.footer-section a:hover {
|
| 40 |
-
color: #
|
| 41 |
-
|
| 42 |
.social-links {
|
| 43 |
display: flex;
|
| 44 |
gap: 1rem;
|
|
@@ -46,18 +46,18 @@ color: #4b5563;
|
|
| 46 |
margin-top: 2rem;
|
| 47 |
}
|
| 48 |
.social-links a {
|
| 49 |
-
color: #
|
| 50 |
transition: color 0.2s;
|
| 51 |
}
|
| 52 |
.social-links a:hover {
|
| 53 |
-
color: #
|
| 54 |
-
|
| 55 |
.copyright {
|
| 56 |
margin-top: 2rem;
|
| 57 |
padding-top: 1rem;
|
| 58 |
-
border-top: 1px solid #
|
| 59 |
font-size: 0.875rem;
|
| 60 |
-
|
| 61 |
@media (max-width: 768px) {
|
| 62 |
.footer-content {
|
| 63 |
grid-template-columns: 1fr;
|
|
|
|
| 4 |
this.shadowRoot.innerHTML = `
|
| 5 |
<style>
|
| 6 |
footer {
|
| 7 |
+
background: rgba(0, 0, 0, 0.98);
|
| 8 |
+
color: #10b981;
|
| 9 |
padding: 2rem 1rem;
|
| 10 |
text-align: center;
|
| 11 |
+
border-top: 1px solid #10b981;
|
| 12 |
+
}
|
| 13 |
.footer-content {
|
| 14 |
max-width: 1200px;
|
| 15 |
margin: 0 auto;
|
|
|
|
| 21 |
.footer-section h3 {
|
| 22 |
font-weight: 600;
|
| 23 |
margin-bottom: 1rem;
|
| 24 |
+
color: #10b981;
|
| 25 |
+
}
|
| 26 |
.footer-section ul {
|
| 27 |
list-style: none;
|
| 28 |
padding: 0;
|
|
|
|
| 32 |
margin-bottom: 0.5rem;
|
| 33 |
}
|
| 34 |
.footer-section a {
|
| 35 |
+
color: #10b981;
|
| 36 |
text-decoration: none;
|
| 37 |
transition: color 0.2s;
|
| 38 |
}
|
| 39 |
.footer-section a:hover {
|
| 40 |
+
color: #34d399;
|
| 41 |
+
}
|
| 42 |
.social-links {
|
| 43 |
display: flex;
|
| 44 |
gap: 1rem;
|
|
|
|
| 46 |
margin-top: 2rem;
|
| 47 |
}
|
| 48 |
.social-links a {
|
| 49 |
+
color: #10b981;
|
| 50 |
transition: color 0.2s;
|
| 51 |
}
|
| 52 |
.social-links a:hover {
|
| 53 |
+
color: #34d399;
|
| 54 |
+
}
|
| 55 |
.copyright {
|
| 56 |
margin-top: 2rem;
|
| 57 |
padding-top: 1rem;
|
| 58 |
+
border-top: 1px solid #10b981;
|
| 59 |
font-size: 0.875rem;
|
| 60 |
+
}
|
| 61 |
@media (max-width: 768px) {
|
| 62 |
.footer-content {
|
| 63 |
grid-template-columns: 1fr;
|
components/navbar.js
CHANGED
|
@@ -4,18 +4,18 @@ class CustomNavbar extends HTMLElement {
|
|
| 4 |
this.shadowRoot.innerHTML = `
|
| 5 |
<style>
|
| 6 |
nav {
|
| 7 |
-
background: rgba(
|
| 8 |
-
backdrop-filter: blur(4px);
|
| 9 |
padding: 0.75rem 2rem;
|
| 10 |
-
display: flex;
|
| 11 |
justify-content: space-between;
|
| 12 |
align-items: center;
|
| 13 |
-
border-bottom: 1px solid #
|
| 14 |
-
position: relative;
|
| 15 |
-
|
| 16 |
}
|
| 17 |
.logo {
|
| 18 |
-
color: #
|
| 19 |
font-weight: bold;
|
| 20 |
font-size: 1.25rem;
|
| 21 |
display: flex;
|
|
@@ -35,7 +35,7 @@ ul {
|
|
| 35 |
padding: 0;
|
| 36 |
}
|
| 37 |
a {
|
| 38 |
-
color: #
|
| 39 |
text-decoration: none;
|
| 40 |
transition: all 0.2s;
|
| 41 |
font-weight: 600;
|
|
@@ -46,13 +46,13 @@ ul {
|
|
| 46 |
border-radius: 0.5rem;
|
| 47 |
}
|
| 48 |
a:hover {
|
| 49 |
-
background:
|
| 50 |
-
color: #
|
| 51 |
}
|
| 52 |
.active {
|
| 53 |
-
background:
|
| 54 |
-
color: #
|
| 55 |
-
|
| 56 |
@media (max-width: 768px) {
|
| 57 |
nav {
|
| 58 |
flex-direction: column;
|
|
|
|
| 4 |
this.shadowRoot.innerHTML = `
|
| 5 |
<style>
|
| 6 |
nav {
|
| 7 |
+
background: rgba(0, 0, 0, 0.98);
|
| 8 |
+
backdrop-filter: blur(4px);
|
| 9 |
padding: 0.75rem 2rem;
|
| 10 |
+
display: flex;
|
| 11 |
justify-content: space-between;
|
| 12 |
align-items: center;
|
| 13 |
+
border-bottom: 1px solid #10b981;
|
| 14 |
+
position: relative;
|
| 15 |
+
z-index: 50;
|
| 16 |
}
|
| 17 |
.logo {
|
| 18 |
+
color: #10b981;
|
| 19 |
font-weight: bold;
|
| 20 |
font-size: 1.25rem;
|
| 21 |
display: flex;
|
|
|
|
| 35 |
padding: 0;
|
| 36 |
}
|
| 37 |
a {
|
| 38 |
+
color: #10b981;
|
| 39 |
text-decoration: none;
|
| 40 |
transition: all 0.2s;
|
| 41 |
font-weight: 600;
|
|
|
|
| 46 |
border-radius: 0.5rem;
|
| 47 |
}
|
| 48 |
a:hover {
|
| 49 |
+
background: rgba(16, 185, 129, 0.1);
|
| 50 |
+
color: #10b981;
|
| 51 |
}
|
| 52 |
.active {
|
| 53 |
+
background: rgba(16, 185, 129, 0.1);
|
| 54 |
+
color: #10b981;
|
| 55 |
+
}
|
| 56 |
@media (max-width: 768px) {
|
| 57 |
nav {
|
| 58 |
flex-direction: column;
|
create.html
CHANGED
|
@@ -12,9 +12,9 @@
|
|
| 12 |
<custom-navbar></custom-navbar>
|
| 13 |
|
| 14 |
<main class="flex-grow p-6">
|
| 15 |
-
<div class="max-w-md mx-auto bg-
|
| 16 |
-
<h1 class="text-2xl font-bold mb-4">Create New Project</h1>
|
| 17 |
-
|
| 18 |
<div>
|
| 19 |
<label class="block mb-1">Project Name</label>
|
| 20 |
<input type="text" class="w-full p-2 border rounded">
|
|
|
|
| 12 |
<custom-navbar></custom-navbar>
|
| 13 |
|
| 14 |
<main class="flex-grow p-6">
|
| 15 |
+
<div class="max-w-md mx-auto bg-black border border-emerald-500 p-6 rounded-lg shadow">
|
| 16 |
+
<h1 class="text-2xl font-bold mb-4 text-emerald-500">Create New Project</h1>
|
| 17 |
+
<form class="space-y-4">
|
| 18 |
<div>
|
| 19 |
<label class="block mb-1">Project Name</label>
|
| 20 |
<input type="text" class="w-full p-2 border rounded">
|
download.html
CHANGED
|
@@ -12,9 +12,9 @@
|
|
| 12 |
<custom-navbar></custom-navbar>
|
| 13 |
|
| 14 |
<main class="flex-grow flex items-center justify-center">
|
| 15 |
-
<div class="text-center p-6 bg-
|
| 16 |
-
<h1 class="text-3xl font-bold mb-4 text-
|
| 17 |
-
|
| 18 |
<a href="#" class="px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700 transition">
|
| 19 |
Download for Windows
|
| 20 |
</a>
|
|
|
|
| 12 |
<custom-navbar></custom-navbar>
|
| 13 |
|
| 14 |
<main class="flex-grow flex items-center justify-center">
|
| 15 |
+
<div class="text-center p-6 bg-black border border-emerald-500 rounded-lg shadow-md max-w-md mx-4">
|
| 16 |
+
<h1 class="text-3xl font-bold mb-4 text-emerald-500">Download App</h1>
|
| 17 |
+
<div class="flex flex-col gap-4">
|
| 18 |
<a href="#" class="px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700 transition">
|
| 19 |
Download for Windows
|
| 20 |
</a>
|
help.html
CHANGED
|
@@ -12,9 +12,9 @@
|
|
| 12 |
<custom-navbar></custom-navbar>
|
| 13 |
|
| 14 |
<main class="flex-grow p-6">
|
| 15 |
-
<div class="max-w-3xl mx-auto bg-
|
| 16 |
-
<h1 class="text-2xl font-bold mb-6">Help Center</h1>
|
| 17 |
-
|
| 18 |
<div>
|
| 19 |
<h3 class="font-medium text-lg">How to create a new project?</h3>
|
| 20 |
<p class="text-gray-600">Click "New Project" on the homepage or in the navigation bar.</p>
|
|
|
|
| 12 |
<custom-navbar></custom-navbar>
|
| 13 |
|
| 14 |
<main class="flex-grow p-6">
|
| 15 |
+
<div class="max-w-3xl mx-auto bg-black border border-emerald-500 p-6 rounded-lg shadow">
|
| 16 |
+
<h1 class="text-2xl font-bold mb-6 text-emerald-500">Help Center</h1>
|
| 17 |
+
<div class="space-y-4">
|
| 18 |
<div>
|
| 19 |
<h3 class="font-medium text-lg">How to create a new project?</h3>
|
| 20 |
<p class="text-gray-600">Click "New Project" on the homepage or in the navigation bar.</p>
|
index.html
CHANGED
|
@@ -14,10 +14,10 @@
|
|
| 14 |
<custom-navbar></custom-navbar>
|
| 15 |
|
| 16 |
<main class="flex-grow flex items-center justify-center" id="vanta-bg">
|
| 17 |
-
<div class="text-center p-6 bg-
|
| 18 |
-
<h1 class="text-3xl font-bold mb-4 text-
|
| 19 |
<div class="flex flex-col gap-3">
|
| 20 |
-
|
| 21 |
New Project
|
| 22 |
</a>
|
| 23 |
<a href="/projects.html" class="px-4 py-2 bg-gray-100 text-gray-800 rounded hover:bg-gray-200 transition">
|
|
@@ -50,7 +50,7 @@
|
|
| 50 |
})
|
| 51 |
</script>
|
| 52 |
<script src="https://huggingface.co/deepsite/deepsite-plehttps://huggingface.co/deepsite/deepsite-pleasease provide a downloadable ink Link
|
| 53 |
-
badge please provide a downloadable ink Link download
|
| 54 |
.js"></script>
|
| 55 |
</body>
|
| 56 |
</html>mrst"funhouse
|
|
|
|
| 14 |
<custom-navbar></custom-navbar>
|
| 15 |
|
| 16 |
<main class="flex-grow flex items-center justify-center" id="vanta-bg">
|
| 17 |
+
<div class="text-center p-6 bg-black border border-emerald-500 rounded-lg shadow-md max-w-md mx-4">
|
| 18 |
+
<h1 class="text-3xl font-bold mb-4 text-emerald-500">Mrs T's Funhouse</h1>
|
| 19 |
<div class="flex flex-col gap-3">
|
| 20 |
+
<a href="/create.html" class="px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700 transition">
|
| 21 |
New Project
|
| 22 |
</a>
|
| 23 |
<a href="/projects.html" class="px-4 py-2 bg-gray-100 text-gray-800 rounded hover:bg-gray-200 transition">
|
|
|
|
| 50 |
})
|
| 51 |
</script>
|
| 52 |
<script src="https://huggingface.co/deepsite/deepsite-plehttps://huggingface.co/deepsite/deepsite-pleasease provide a downloadable ink Link
|
| 53 |
+
badge please provide a downloadable ink Link download Link k
|
| 54 |
.js"></script>
|
| 55 |
</body>
|
| 56 |
</html>mrst"funhouse
|
projects.html
CHANGED
|
@@ -13,10 +13,10 @@
|
|
| 13 |
|
| 14 |
<main class="flex-grow p-6">
|
| 15 |
<div class="max-w-3xl mx-auto">
|
| 16 |
-
<h1 class="text-2xl font-bold mb-6">My Projects</h1>
|
| 17 |
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
| 18 |
-
<div class="bg-
|
| 19 |
-
|
| 20 |
<p class="text-sm text-gray-600 mb-2">Last edited: Today</p>
|
| 21 |
<a href="#" class="text-blue-600 text-sm">Open β</a>
|
| 22 |
</div>
|
|
|
|
| 13 |
|
| 14 |
<main class="flex-grow p-6">
|
| 15 |
<div class="max-w-3xl mx-auto">
|
| 16 |
+
<h1 class="text-2xl font-bold mb-6 text-emerald-500">My Projects</h1>
|
| 17 |
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
| 18 |
+
<div class="bg-black border border-emerald-500 p-4 rounded-lg shadow hover:shadow-md transition">
|
| 19 |
+
<h3 class="font-medium mb-2">Project 1</h3>
|
| 20 |
<p class="text-sm text-gray-600 mb-2">Last edited: Today</p>
|
| 21 |
<a href="#" class="text-blue-600 text-sm">Open β</a>
|
| 22 |
</div>
|
style.css
CHANGED
|
@@ -1,11 +1,12 @@
|
|
| 1 |
-
|
|
|
|
| 2 |
body {
|
| 3 |
-
font-family: '
|
| 4 |
-
background-color: #
|
|
|
|
| 5 |
margin: 0;
|
| 6 |
padding: 0;
|
| 7 |
}
|
| 8 |
-
|
| 9 |
/* Ensure content takes full height */
|
| 10 |
html, body {
|
| 11 |
height: 100%;
|
|
|
|
| 1 |
+
|
| 2 |
+
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');
|
| 3 |
body {
|
| 4 |
+
font-family: 'Dancing Script', cursive;
|
| 5 |
+
background-color: #000;
|
| 6 |
+
color: #10b981;
|
| 7 |
margin: 0;
|
| 8 |
padding: 0;
|
| 9 |
}
|
|
|
|
| 10 |
/* Ensure content takes full height */
|
| 11 |
html, body {
|
| 12 |
height: 100%;
|