Files
pixel-faebits/styles.css
google-labs-jules[bot] 7d946908c8 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>
2026-04-11 15:16:53 +00:00

21 lines
322 B
CSS

/* 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;
}