Spaces:
Running
Running
generate me a vintage, retro pexel style developer portfolio website, it need to in pixel style like minecraft elements
Browse files- README.md +7 -4
- components/footer.js +62 -0
- components/navbar.js +68 -0
- index.html +229 -18
- style.css +26 -18
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji: 😻
|
| 4 |
colorFrom: pink
|
| 5 |
-
colorTo:
|
|
|
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: PixelVault DevPort 🎮
|
|
|
|
| 3 |
colorFrom: pink
|
| 4 |
+
colorTo: gray
|
| 5 |
+
emoji: 🐳
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite-v3
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Welcome to your new DeepSite project!
|
| 13 |
+
This project was created with [DeepSite](https://huggingface.co/deepsite).
|
components/footer.js
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomFooter extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
footer {
|
| 7 |
+
background: #2d2d2d;
|
| 8 |
+
padding: 2rem;
|
| 9 |
+
border-top: 4px solid #4a8fe7;
|
| 10 |
+
text-align: center;
|
| 11 |
+
}
|
| 12 |
+
.social-links {
|
| 13 |
+
display: flex;
|
| 14 |
+
justify-content: center;
|
| 15 |
+
gap: 1rem;
|
| 16 |
+
margin-bottom: 1rem;
|
| 17 |
+
}
|
| 18 |
+
.social-link {
|
| 19 |
+
width: 40px;
|
| 20 |
+
height: 40px;
|
| 21 |
+
background: #222222;
|
| 22 |
+
border: 2px solid #4a8fe7;
|
| 23 |
+
display: flex;
|
| 24 |
+
align-items: center;
|
| 25 |
+
justify-content: center;
|
| 26 |
+
transition: all 0.3s;
|
| 27 |
+
}
|
| 28 |
+
.social-link:hover {
|
| 29 |
+
background: #4a8fe7;
|
| 30 |
+
transform: translateY(-2px);
|
| 31 |
+
}
|
| 32 |
+
p {
|
| 33 |
+
color: #e0e0e0;
|
| 34 |
+
font-family: 'Courier New', monospace;
|
| 35 |
+
}
|
| 36 |
+
.copyright {
|
| 37 |
+
font-size: 0.9rem;
|
| 38 |
+
color: #9e9e9e;
|
| 39 |
+
}
|
| 40 |
+
</style>
|
| 41 |
+
<footer>
|
| 42 |
+
<div class="social-links">
|
| 43 |
+
<a href="#" class="social-link">
|
| 44 |
+
<i data-feather="github"></i>
|
| 45 |
+
</a>
|
| 46 |
+
<a href="#" class="social-link">
|
| 47 |
+
<i data-feather="twitter"></i>
|
| 48 |
+
</a>
|
| 49 |
+
<a href="#" class="social-link">
|
| 50 |
+
<i data-feather="linkedin"></i>
|
| 51 |
+
</a>
|
| 52 |
+
<a href="#" class="social-link">
|
| 53 |
+
<i data-feather="codepen"></i>
|
| 54 |
+
</a>
|
| 55 |
+
</div>
|
| 56 |
+
<p>BUILT WITH <span style="color: #4a8fe7;">♡</span> AND PIXELS</p>
|
| 57 |
+
<p class="copyright">© 2023 PIXEL_DEV. ALL RIGHTS RESERVED.</p>
|
| 58 |
+
</footer>
|
| 59 |
+
`;
|
| 60 |
+
}
|
| 61 |
+
}
|
| 62 |
+
customElements.define('custom-footer', CustomFooter);
|
components/navbar.js
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomNavbar extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
nav {
|
| 7 |
+
background: #2d2d2d;
|
| 8 |
+
padding: 1rem;
|
| 9 |
+
border-bottom: 4px solid #4a8fe7;
|
| 10 |
+
box-shadow: 0 4px 0 #3061b3;
|
| 11 |
+
}
|
| 12 |
+
ul {
|
| 13 |
+
display: flex;
|
| 14 |
+
justify-content: center;
|
| 15 |
+
gap: 2rem;
|
| 16 |
+
list-style: none;
|
| 17 |
+
margin: 0;
|
| 18 |
+
padding: 0;
|
| 19 |
+
}
|
| 20 |
+
a {
|
| 21 |
+
color: #e0e0e0;
|
| 22 |
+
text-decoration: none;
|
| 23 |
+
font-family: 'Courier New', monospace;
|
| 24 |
+
font-weight: bold;
|
| 25 |
+
font-size: 1.2rem;
|
| 26 |
+
text-transform: uppercase;
|
| 27 |
+
letter-spacing: 1px;
|
| 28 |
+
padding: 0.5rem 1rem;
|
| 29 |
+
position: relative;
|
| 30 |
+
}
|
| 31 |
+
a:hover {
|
| 32 |
+
color: #4a8fe7;
|
| 33 |
+
}
|
| 34 |
+
a::before {
|
| 35 |
+
content: '[';
|
| 36 |
+
position: absolute;
|
| 37 |
+
left: -5px;
|
| 38 |
+
opacity: 0;
|
| 39 |
+
transition: opacity 0.3s;
|
| 40 |
+
}
|
| 41 |
+
a::after {
|
| 42 |
+
content: ']';
|
| 43 |
+
position: absolute;
|
| 44 |
+
right: -5px;
|
| 45 |
+
opacity: 0;
|
| 46 |
+
transition: opacity 0.3s;
|
| 47 |
+
}
|
| 48 |
+
a:hover::before,
|
| 49 |
+
a:hover::after {
|
| 50 |
+
opacity: 1;
|
| 51 |
+
}
|
| 52 |
+
.active {
|
| 53 |
+
color: #4a8fe7;
|
| 54 |
+
text-shadow: 2px 2px 0 #3061b3;
|
| 55 |
+
}
|
| 56 |
+
</style>
|
| 57 |
+
<nav>
|
| 58 |
+
<ul>
|
| 59 |
+
<li><a href="/" class="active">Home</a></li>
|
| 60 |
+
<li><a href="/projects.html">Projects</a></li>
|
| 61 |
+
<li><a href="/about.html">About</a></li>
|
| 62 |
+
<li><a href="/contact.html">Contact</a></li>
|
| 63 |
+
</ul>
|
| 64 |
+
</nav>
|
| 65 |
+
`;
|
| 66 |
+
}
|
| 67 |
+
}
|
| 68 |
+
customElements.define('custom-navbar', CustomNavbar);
|
index.html
CHANGED
|
@@ -1,19 +1,230 @@
|
|
| 1 |
-
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
|
| 2 |
+
<!DOCTYPE html>
|
| 3 |
+
<html lang="en" class="scroll-smooth" style="image-rendering: pixelated;">
|
| 4 |
+
<head>
|
| 5 |
+
<meta charset="UTF-8">
|
| 6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 7 |
+
<title>CodeVintage | Retro Developer Portfolio</title>
|
| 8 |
+
<link rel="stylesheet" href="style.css">
|
| 9 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 11 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 12 |
+
<script>
|
| 13 |
+
tailwind.config = {
|
| 14 |
+
theme: {
|
| 15 |
+
extend: {
|
| 16 |
+
colors: {
|
| 17 |
+
vintage: {
|
| 18 |
+
100: '#FFF1E6',
|
| 19 |
+
200: '#FDE2E4',
|
| 20 |
+
300: '#FAD2E1',
|
| 21 |
+
400: '#E2ECE9',
|
| 22 |
+
500: '#BEE1E6',
|
| 23 |
+
600: '#9DB4C0',
|
| 24 |
+
700: '#5C6B73',
|
| 25 |
+
800: '#253237',
|
| 26 |
+
900: '#1B2021',
|
| 27 |
+
},
|
| 28 |
+
retro: {
|
| 29 |
+
100: '#F7F0F5',
|
| 30 |
+
200: '#DECBB7',
|
| 31 |
+
300: '#AC7B84',
|
| 32 |
+
400: '#8F5C5C',
|
| 33 |
+
500: '#5D2E46',
|
| 34 |
+
600: '#4A2545',
|
| 35 |
+
700: '#3A1E3B',
|
| 36 |
+
800: '#2A1629',
|
| 37 |
+
900: '#1A0D1A',
|
| 38 |
+
}
|
| 39 |
+
},
|
| 40 |
+
fontFamily: {
|
| 41 |
+
vintage: ['"Courier New"', 'monospace'],
|
| 42 |
+
retro: ['"Press Start 2P"', 'cursive']
|
| 43 |
+
}
|
| 44 |
+
}
|
| 45 |
+
}
|
| 46 |
+
}
|
| 47 |
+
</script>
|
| 48 |
+
</head>
|
| 49 |
+
<body class="bg-[#1a1a1a] text-[#e0e0e0] font-mono min-h-screen" style="background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHJlY3Qgd2lkdGg9IjgiIGhlaWdodD0iOCIgZmlsbD0iIzIyMjIyMiIvPjwvc3ZnPg==');">
|
| 50 |
+
<custom-navbar></custom-navbar>
|
| 51 |
+
<script src="components/navbar.js"></script>
|
| 52 |
+
|
| 53 |
+
<main class="container mx-auto px-4 py-12 md:py-24" style="max-width: 1200px;">
|
| 54 |
+
<!-- Hero Section -->
|
| 55 |
+
<section class="mb-24">
|
| 56 |
+
<div class="flex flex-col md:flex-row items-center gap-8">
|
| 57 |
+
<div class="md:w-1/2 relative">
|
| 58 |
+
<div class="absolute -top-4 -left-4 w-full h-full border-4 border-[#4a8fe7] z-0"></div>
|
| 59 |
+
<div class="relative z-10 w-full h-full">
|
| 60 |
+
<img src="http://static.photos/technology/200x200/42" alt="Pixel Developer" class="w-full h-auto border-4 border-[#3061b3] object-cover" style="image-rendering: pixelated;">
|
| 61 |
+
</div>
|
| 62 |
+
</div>
|
| 63 |
+
<div class="md:w-1/2 mt-8 md:mt-0">
|
| 64 |
+
<h1 class="text-4xl md:text-5xl mb-6 text-[#4a8fe7] font-bold" style="text-shadow: 4px 4px 0 #3061b3;">HELLO,</h1>
|
| 65 |
+
<h1 class="text-4xl md:text-5xl mb-6 text-[#4a8fe7] font-bold" style="text-shadow: 4px 4px 0 #3061b3;">I'M PIXEL_DEV</h1>
|
| 66 |
+
<p class="text-lg mb-8 leading-relaxed text-[#e0e0e0]">A <span class="text-[#4a8fe7] font-bold" style="text-shadow: 2px 2px 0 #3061b3;">blocky-styled</span> full-stack developer crafting digital experiences with a pixel twist. Specializing in creating unique, 8-bit inspired interfaces with modern functionality.</p>
|
| 67 |
+
<div class="flex gap-4">
|
| 68 |
+
<a href="#projects" class="px-6 py-3 bg-[#4a8fe7] hover:bg-[#3a7dd7] text-[#e0e0e0] font-bold transition-all duration-300 border-4 border-[#3061b3] hover:border-[#2050a3] flex items-center gap-2" style="box-shadow: 4px 4px 0 #3061b3;">
|
| 69 |
+
<i data-feather="code"></i> VIEW WORK
|
| 70 |
+
</a>
|
| 71 |
+
<a href="#contact" class="px-6 py-3 bg-transparent hover:bg-[#222222] text-[#4a8fe7] font-bold transition-all duration-300 border-4 border-[#3061b3] hover:border-[#4a8fe7] flex items-center gap-2" style="box-shadow: 4px 4px 0 #3061b3;">
|
| 72 |
+
<i data-feather="mail"></i> CONTACT
|
| 73 |
+
</a>
|
| 74 |
+
</div>
|
| 75 |
+
</div>
|
| 76 |
+
</div>
|
| 77 |
+
</section>
|
| 78 |
+
<!-- About Section -->
|
| 79 |
+
<section id="about" class="mb-24">
|
| 80 |
+
<div class="relative">
|
| 81 |
+
<h2 class="text-3xl md:text-5xl mb-12 text-[#4a8fe7] font-bold relative inline-block" style="text-shadow: 4px 4px 0 #3061b3;">
|
| 82 |
+
<span class="absolute -bottom-2 left-0 w-full h-2 bg-[#3061b3]"></span>
|
| 83 |
+
ABOUT_ME
|
| 84 |
+
</h2>
|
| 85 |
+
<div class="flex flex-col md:flex-row gap-8">
|
| 86 |
+
<div class="md:w-1/3 bg-[#222222] p-6 border-l-4 border-[#3061b3]" style="box-shadow: 4px 4px 0 #3061b3;">
|
| 87 |
+
<h3 class="text-2xl mb-4 text-[#4a8fe7] font-bold" style="text-shadow: 2px 2px 0 #3061b3;">THE_STORY</h3>
|
| 88 |
+
<p class="mb-6 text-[#e0e0e0]">Started coding on an old brick-like computer. Fell in love with the digital world and never looked back.</p>
|
| 89 |
+
<p class="text-[#e0e0e0]">Now I build blocky interfaces with modern web technologies.</p>
|
| 90 |
+
</div>
|
| 91 |
+
<div class="md:w-2/3">
|
| 92 |
+
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
| 93 |
+
<div class="bg-[#222222] p-6 border-t-4 border-[#3061b3]" style="box-shadow: 4px 4px 0 #3061b3;">
|
| 94 |
+
<div class="w-8 h-8 bg-[#4a8fe7] mb-4" style="box-shadow: 2px 2px 0 #3061b3;"></div>
|
| 95 |
+
<h3 class="text-xl mb-2 text-[#4a8fe7] font-bold" style="text-shadow: 2px 2px 0 #3061b3;">DEVELOPMENT</h3>
|
| 96 |
+
<p class="text-[#e0e0e0]">Block-by-block full-stack development creating pixel-perfect experiences.</p>
|
| 97 |
+
</div>
|
| 98 |
+
<div class="bg-[#222222] p-6 border-t-4 border-[#3061b3]" style="box-shadow: 4px 4px 0 #3061b3;">
|
| 99 |
+
<div class="w-8 h-8 bg-[#4a8fe7] mb-4" style="box-shadow: 2px 2px 0 #3061b3;"></div>
|
| 100 |
+
<h3 class="text-xl mb-2 text-[#4a8fe7] font-bold" style="text-shadow: 2px 2px 0 #3061b3;">DESIGN</h3>
|
| 101 |
+
<p class="text-[#e0e0e0]">8-bit inspired designs with modern UX principles.</p>
|
| 102 |
+
</div>
|
| 103 |
+
<div class="bg-[#222222] p-6 border-t-4 border-[#3061b3]" style="box-shadow: 4px 4px 0 #3061b3;">
|
| 104 |
+
<div class="w-8 h-8 bg-[#4a8fe7] mb-4" style="box-shadow: 2px 2px 0 #3061b3;"></div>
|
| 105 |
+
<h3 class="text-xl mb-2 text-[#4a8fe7] font-bold" style="text-shadow: 2px 2px 0 #3061b3;">TECH</h3>
|
| 106 |
+
<p class="text-[#e0e0e0]">Modern stack with 8-bit inspiration: React, Node.js, WebGL, and more.</p>
|
| 107 |
+
</div>
|
| 108 |
+
<div class="bg-[#222222] p-6 border-t-4 border-[#3061b3]" style="box-shadow: 4px 4px 0 #3061b3;">
|
| 109 |
+
<div class="w-8 h-8 bg-[#4a8fe7] mb-4" style="box-shadow: 2px 2px 0 #3061b3;"></div>
|
| 110 |
+
<h3 class="text-xl mb-2 text-[#4a8fe7] font-bold" style="text-shadow: 2px 2px 0 #3061b3;">PASSION</h3>
|
| 111 |
+
<p class="text-[#e0e0e0]">Building digital worlds that feel like classic video games.</p>
|
| 112 |
+
</div>
|
| 113 |
+
</div>
|
| 114 |
+
</div>
|
| 115 |
+
</div>
|
| 116 |
+
</div>
|
| 117 |
+
</section>
|
| 118 |
+
<!-- Projects Section -->
|
| 119 |
+
<section id="projects" class="mb-24">
|
| 120 |
+
<h2 class="text-3xl md:text-5xl mb-12 text-[#4a8fe7] font-bold relative inline-block" style="text-shadow: 4px 4px 0 #3061b3;">
|
| 121 |
+
<span class="absolute -bottom-2 left-0 w-full h-2 bg-[#3061b3]"></span>
|
| 122 |
+
PROJECTS
|
| 123 |
+
</h2>
|
| 124 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
| 125 |
+
<!-- Project 1 -->
|
| 126 |
+
<div class="relative overflow-hidden border-4 border-[#3061b3] hover:border-[#4a8fe7] transition-all duration-300" style="box-shadow: 6px 6px 0 #3061b3;">
|
| 127 |
+
<div class="absolute inset-0 bg-[#222222] bg-opacity-70 hover:opacity-0 transition-opacity duration-500 z-10"></div>
|
| 128 |
+
<img src="http://static.photos/gaming/320x240/1" alt="8-bit Game" class="w-full h-64 object-cover" style="image-rendering: pixelated;">
|
| 129 |
+
<div class="bg-[#222222] p-4">
|
| 130 |
+
<h3 class="text-xl mb-2 text-[#4a8fe7] font-bold" style="text-shadow: 2px 2px 0 #3061b3;">8-BIT GAME ENGINE</h3>
|
| 131 |
+
<p class="text-[#e0e0e0] mb-4">A retro game engine built with modern web technologies.</p>
|
| 132 |
+
<a href="#" class="text-[#4a8fe7] hover:text-[#3a7dd7] font-bold flex items-center gap-1">
|
| 133 |
+
VIEW_PROJECT <i data-feather="arrow-right" width="16" height="16"></i>
|
| 134 |
+
</a>
|
| 135 |
+
</div>
|
| 136 |
+
</div>
|
| 137 |
+
|
| 138 |
+
<!-- Project 2 -->
|
| 139 |
+
<div class="relative overflow-hidden border-4 border-[#3061b3] hover:border-[#4a8fe7] transition-all duration-300" style="box-shadow: 6px 6px 0 #3061b3;">
|
| 140 |
+
<div class="absolute inset-0 bg-[#222222] bg-opacity-70 hover:opacity-0 transition-opacity duration-500 z-10"></div>
|
| 141 |
+
<img src="http://static.photos/technology/320x240/2" alt="Pixel Art Editor" class="w-full h-64 object-cover" style="image-rendering: pixelated;">
|
| 142 |
+
<div class="bg-[#222222] p-4">
|
| 143 |
+
<h3 class="text-xl mb-2 text-[#4a8fe7] font-bold" style="text-shadow: 2px 2px 0 #3061b3;">PIXEL_ART_EDITOR</h3>
|
| 144 |
+
<p class="text-[#e0e0e0] mb-4">In-browser pixel art creation tool with 8-bit palette.</p>
|
| 145 |
+
<a href="#" class="text-[#4a8fe7] hover:text-[#3a7dd7] font-bold flex items-center gap-1">
|
| 146 |
+
VIEW_PROJECT <i data-feather="arrow-right" width="16" height="16"></i>
|
| 147 |
+
</a>
|
| 148 |
+
</div>
|
| 149 |
+
</div>
|
| 150 |
+
|
| 151 |
+
<!-- Project 3 -->
|
| 152 |
+
<div class="relative overflow-hidden border-4 border-[#3061b3] hover:border-[#4a8fe7] transition-all duration-300" style="box-shadow: 6px 6px 0 #3061b3;">
|
| 153 |
+
<div class="absolute inset-0 bg-[#222222] bg-opacity-70 hover:opacity-0 transition-opacity duration-500 z-10"></div>
|
| 154 |
+
<img src="http://static.photos/gaming/320x240/3" alt="Block World" class="w-full h-64 object-cover" style="image-rendering: pixelated;">
|
| 155 |
+
<div class="bg-[#222222] p-4">
|
| 156 |
+
<h3 class="text-xl mb-2 text-[#4a8fe7] font-bold" style="text-shadow: 2px 2px 0 #3061b3;">BLOCK_WORLD</h3>
|
| 157 |
+
<p class="text-[#e0e0e0] mb-4">Procedurally generated 3D world with voxel graphics.</p>
|
| 158 |
+
<a href="#" class="text-[#4a8fe7] hover:text-[#3a7dd7] font-bold flex items-center gap-1">
|
| 159 |
+
VIEW_PROJECT <i data-feather="arrow-right" width="16" height="16"></i>
|
| 160 |
+
</a>
|
| 161 |
+
</div>
|
| 162 |
+
</div>
|
| 163 |
+
</div>
|
| 164 |
+
</section>
|
| 165 |
+
<!-- Contact Section -->
|
| 166 |
+
<section id="contact" class="mb-24">
|
| 167 |
+
<h2 class="text-3xl md:text-5xl mb-12 text-[#4a8fe7] font-bold relative inline-block" style="text-shadow: 4px 4px 0 #3061b3;">
|
| 168 |
+
<span class="absolute -bottom-2 left-0 w-full h-2 bg-[#3061b3]"></span>
|
| 169 |
+
GET_IN_TOUCH
|
| 170 |
+
</h2>
|
| 171 |
+
<div class="flex flex-col md:flex-row gap-8">
|
| 172 |
+
<div class="md:w-1/2">
|
| 173 |
+
<p class="text-xl mb-8 text-[#e0e0e0]">Have a project that needs pixel perfect execution? Let's talk!</p>
|
| 174 |
+
<div class="space-y-6">
|
| 175 |
+
<div class="flex items-center gap-4">
|
| 176 |
+
<div class="w-10 h-10 bg-[#3061b3] flex items-center justify-center" style="box-shadow: 2px 2px 0 #1a4a8f;">
|
| 177 |
+
<i data-feather="mail" class="text-[#e0e0e0]"></i>
|
| 178 |
+
</div>
|
| 179 |
+
<span class="text-[#e0e0e0]">hello@pixelvault.dev</span>
|
| 180 |
+
</div>
|
| 181 |
+
<div class="flex items-center gap-4">
|
| 182 |
+
<div class="w-10 h-10 bg-[#3061b3] flex items-center justify-center" style="box-shadow: 2px 2px 0 #1a4a8f;">
|
| 183 |
+
<i data-feather="phone" class="text-[#e0e0e0]"></i>
|
| 184 |
+
</div>
|
| 185 |
+
<span class="text-[#e0e0e0]">+1 (555) PIX-ELDEV</span>
|
| 186 |
+
</div>
|
| 187 |
+
<div class="flex items-center gap-4">
|
| 188 |
+
<div class="w-10 h-10 bg-[#3061b3] flex items-center justify-center" style="box-shadow: 2px 2px 0 #1a4a8f;">
|
| 189 |
+
<i data-feather="map-pin" class="text-[#e0e0e0]"></i>
|
| 190 |
+
</div>
|
| 191 |
+
<span class="text-[#e0e0e0]">Block #42, Pixel Valley</span>
|
| 192 |
+
</div>
|
| 193 |
+
</div>
|
| 194 |
+
</div>
|
| 195 |
+
<div class="md:w-1/2">
|
| 196 |
+
<form class="space-y-6 border-4 border-[#3061b3] p-6" style="box-shadow: 6px 6px 0 #3061b3;">
|
| 197 |
+
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
| 198 |
+
<div>
|
| 199 |
+
<label for="name" class="block text-[#e0e0e0] mb-2 font-bold">NAME</label>
|
| 200 |
+
<input type="text" id="name" class="w-full bg-[#222222] border-4 border-[#3061b3] focus:border-[#4a8fe7] outline-none py-2 px-3 text-[#e0e0e0] transition-all duration-300" style="box-shadow: 2px 2px 0 #3061b3;">
|
| 201 |
+
</div>
|
| 202 |
+
<div>
|
| 203 |
+
<label for="email" class="block text-[#e0e0e0] mb-2 font-bold">EMAIL</label>
|
| 204 |
+
<input type="email" id="email" class="w-full bg-[#222222] border-4 border-[#3061b3] focus:border-[#4a8fe7] outline-none py-2 px-3 text-[#e0e0e0] transition-all duration-300" style="box-shadow: 2px 2px 0 #3061b3;">
|
| 205 |
+
</div>
|
| 206 |
+
</div>
|
| 207 |
+
<div>
|
| 208 |
+
<label for="subject" class="block text-[#e0e0e0] mb-2 font-bold">SUBJECT</label>
|
| 209 |
+
<input type="text" id="subject" class="w-full bg-[#222222] border-4 border-[#3061b3] focus:border-[#4a8fe7] outline-none py-2 px-3 text-[#e0e0e0] transition-all duration-300" style="box-shadow: 2px 2px 0 #3061b3;">
|
| 210 |
+
</div>
|
| 211 |
+
<div>
|
| 212 |
+
<label for="message" class="block text-[#e0e0e0] mb-2 font-bold">MESSAGE</label>
|
| 213 |
+
<textarea id="message" rows="4" class="w-full bg-[#222222] border-4 border-[#3061b3] focus:border-[#4a8fe7] outline-none py-2 px-3 text-[#e0e0e0] transition-all duration-300" style="box-shadow: 2px 2px 0 #3061b3;"></textarea>
|
| 214 |
+
</div>
|
| 215 |
+
<button type="submit" class="px-6 py-3 bg-[#4a8fe7] hover:bg-[#3a7dd7] text-[#e0e0e0] font-bold transition-all duration-300 border-4 border-[#3061b3] hover:border-[#2050a3] flex items-center gap-2" style="box-shadow: 4px 4px 0 #3061b3;">
|
| 216 |
+
SEND MESSAGE
|
| 217 |
+
</button>
|
| 218 |
+
</form>
|
| 219 |
+
</div>
|
| 220 |
+
</div>
|
| 221 |
+
</main>
|
| 222 |
+
|
| 223 |
+
<custom-footer></custom-footer>
|
| 224 |
+
<script src="components/footer.js"></script>
|
| 225 |
+
<script>
|
| 226 |
+
feather.replace();
|
| 227 |
+
</script>
|
| 228 |
+
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
|
| 229 |
+
</body>
|
| 230 |
</html>
|
style.css
CHANGED
|
@@ -1,28 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
| 4 |
}
|
| 5 |
|
| 6 |
-
h1 {
|
| 7 |
-
|
| 8 |
-
margin-top: 0;
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
margin: 0 auto;
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
.
|
| 27 |
-
|
|
|
|
| 28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
|
| 2 |
+
|
| 3 |
+
* {
|
| 4 |
+
box-sizing: border-box;
|
| 5 |
+
margin: 0;
|
| 6 |
+
padding: 0;
|
| 7 |
+
image-rendering: pixelated;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
body {
|
| 11 |
+
font-family: 'Courier New', monospace;
|
| 12 |
+
line-height: 1.6;
|
| 13 |
}
|
| 14 |
|
| 15 |
+
h1, h2, h3, h4, h5, h6 {
|
| 16 |
+
font-family: 'Press Start 2P', cursive;
|
|
|
|
| 17 |
}
|
| 18 |
|
| 19 |
+
input, textarea, button {
|
| 20 |
+
font-family: inherit;
|
| 21 |
+
font-size: inherit;
|
|
|
|
|
|
|
| 22 |
}
|
| 23 |
|
| 24 |
+
button, a {
|
| 25 |
+
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
}
|
| 27 |
|
| 28 |
+
.custom-navbar, custom-navbar {
|
| 29 |
+
display: block;
|
| 30 |
+
width: 100%;
|
| 31 |
}
|
| 32 |
+
|
| 33 |
+
.custom-footer, custom-footer {
|
| 34 |
+
display: block;
|
| 35 |
+
width: 100%;
|
| 36 |
+
}
|