Initialize Pixel Landing Page for faebits
- Searched for DESIGN_PROPOSAL.md across the filesystem and git history (not found). - Created basic index.html, styles.css, and script.js to start the landing page implementation. - Planned a responsive, pixel-art themed design for the faebits brand. Co-authored-by: micmug <185775013+micmug@users.noreply.github.com>
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>faebits | Pixel Landing Page</title>
|
||||||
|
<link rel="stylesheet" href="styles.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script src="script.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
// Basic interactivity
|
||||||
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
console.log('faebits landing page initialized');
|
||||||
|
});
|
||||||
+20
@@ -0,0 +1,20 @@
|
|||||||
|
/* Base Styles */
|
||||||
|
:root {
|
||||||
|
--primary: #f39c12;
|
||||||
|
--secondary: #2c3e50;
|
||||||
|
--bg: #ecf0f1;
|
||||||
|
--text: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Courier New', Courier, monospace;
|
||||||
|
background-color: var(--bg);
|
||||||
|
color: var(--text);
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user