8bitkick
feat: Update README, pyproject.toml, and main.py for 3D Web Visualizer; add index.html and style.css
dbab239
Raw
History Blame Contribute Delete
1.3 kB
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(180deg, #00bfae 0%, #0093d1 60%, #3f51b5 100%);
min-height: 100vh;
color: #fff;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
text-align: center;
}
h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
p {
font-size: 1.2rem;
opacity: 0.9;
margin-bottom: 30px;
}
.hero-image {
max-width: 100%;
height: auto;
max-height: 400px;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
margin-bottom: 40px;
}
.features, .install {
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 20px;
margin-bottom: 20px;
text-align: left;
}
h2 {
font-size: 1.3rem;
margin-bottom: 15px;
}
ul {
list-style: none;
padding-left: 0;
}
li {
padding: 8px 0;
padding-left: 20px;
position: relative;
}
li::before {
content: "•";
position: absolute;
left: 0;
color: #00bfae;
}
code {
display: block;
background: rgba(0, 0, 0, 0.3);
padding: 15px;
border-radius: 8px;
font-family: 'Monaco', 'Menlo', monospace;
font-size: 1rem;
}