Initial commit
This commit is contained in:
326
src/index.css
Normal file
326
src/index.css
Normal file
@@ -0,0 +1,326 @@
|
||||
/* Custom CSS for Mycelium Society */
|
||||
|
||||
/* Import Roboto Mono and Avenir fonts */
|
||||
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;500;700&display=swap');
|
||||
/* Avenir is a system font on macOS, but we'll use a web-safe fallback stack */
|
||||
|
||||
/* Reset and base styles */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
background: #000000;
|
||||
color: white;
|
||||
min-height: 100vh;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Keep all headings as Roboto Mono */
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-family: 'Roboto Mono', monospace;
|
||||
}
|
||||
|
||||
/* Keep buttons as Roboto Mono */
|
||||
button {
|
||||
font-family: 'Roboto Mono', monospace;
|
||||
}
|
||||
|
||||
/* Utility classes */
|
||||
.min-h-screen { min-height: 100vh; }
|
||||
.flex { display: flex; }
|
||||
.items-center { align-items: center; }
|
||||
.justify-center { justify-content: center; }
|
||||
.text-center { text-align: center; }
|
||||
.relative { position: relative; }
|
||||
.absolute { position: absolute; }
|
||||
.overflow-hidden { overflow: hidden; }
|
||||
.z-10 { z-index: 10; }
|
||||
.mx-auto { margin-left: auto; margin-right: auto; }
|
||||
.mb-4 { margin-bottom: 1rem; }
|
||||
.mb-8 { margin-bottom: 2rem; }
|
||||
.mb-12 { margin-bottom: 3rem; }
|
||||
.mb-16 { margin-bottom: 4rem; }
|
||||
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
|
||||
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
|
||||
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
|
||||
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
|
||||
.px-8 { padding-left: 2rem; padding-right: 2rem; }
|
||||
.p-4 { padding: 1rem; }
|
||||
.pl-6 { padding-left: 1.5rem; }
|
||||
.w-48 { width: 12rem; }
|
||||
.h-48 { height: 12rem; }
|
||||
.w-72 { width: 18rem; }
|
||||
.h-96 { height: 24rem; }
|
||||
.h-72 { height: 18rem; }
|
||||
.h-24 { height: 6rem; }
|
||||
.max-w-4xl { max-width: 56rem; }
|
||||
.max-w-3xl { max-width: 48rem; }
|
||||
.rounded-full { border-radius: 9999px; }
|
||||
.rounded-2xl { border-radius: 1rem; }
|
||||
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
|
||||
.gap-4 { gap: 1rem; }
|
||||
.gap-6 { gap: 1.5rem; }
|
||||
.space-y-12 > * + * { margin-top: 3rem; }
|
||||
.leading-tight { line-height: 1.25; }
|
||||
.leading-relaxed { line-height: 1.625; }
|
||||
.uppercase { text-transform: uppercase; }
|
||||
.font-bold { font-weight: 700; }
|
||||
.border-2 { border-width: 2px; }
|
||||
.border-l-2 { border-left-width: 2px; }
|
||||
.flex-shrink-0 { flex-shrink: 0; }
|
||||
.flex-col { flex-direction: column; }
|
||||
|
||||
/* Background classes */
|
||||
.bg-dark-gradient { background: #000000; }
|
||||
.bg-gray-900 { background-color: #111827; }
|
||||
.bg-amber-100 { background-color: #fef3c7; }
|
||||
.bg-blue-100 { background-color: #dbeafe; }
|
||||
.bg-pink-100 { background-color: #fce7f3; }
|
||||
.bg-yellow-100 { background-color: #fef3c7; }
|
||||
.bg-green-100 { background-color: #dcfce7; }
|
||||
.bg-orange-100 { background-color: #fed7aa; }
|
||||
.bg-purple-100 { background-color: #e9d5ff; }
|
||||
|
||||
/* Text colors */
|
||||
.text-white { color: #ffffff; }
|
||||
.text-gray-300 { color: #d1d5db; }
|
||||
.text-gray-400 { color: #9ca3af; }
|
||||
.text-bright-cyan { color: #00d9ff; }
|
||||
.text-red-accent { color: #ff3366; }
|
||||
|
||||
/* Border colors */
|
||||
.border-bright-cyan { border-color: #00d9ff; }
|
||||
|
||||
/* Text sizes */
|
||||
.text-sm { font-size: 0.875rem; }
|
||||
.text-lg { font-size: 1.125rem; }
|
||||
.text-xl { font-size: 1.25rem; }
|
||||
.text-2xl { font-size: 1.5rem; }
|
||||
.text-3xl { font-size: 1.875rem; }
|
||||
.text-4xl { font-size: 2.25rem; }
|
||||
.text-5xl { font-size: 3rem; }
|
||||
.text-6xl { font-size: 3.75rem; }
|
||||
.text-7xl { font-size: 4.5rem; }
|
||||
|
||||
/* Button styles */
|
||||
.btn-primary {
|
||||
background: transparent;
|
||||
border: 2px solid #00d9ff;
|
||||
color: #00d9ff;
|
||||
text-transform: uppercase;
|
||||
font-size: 0.875rem;
|
||||
padding: 0.625rem 1.5rem;
|
||||
border-radius: 2px;
|
||||
transition: all 0.3s ease;
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-family: 'Roboto Mono', monospace;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
box-shadow: 0 0 20px #00d9ff, 0 0 30px #00d9ff;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
/* Container widths */
|
||||
.container-width {
|
||||
max-width: 56rem;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-left: 1.5rem;
|
||||
padding-right: 1.5rem;
|
||||
}
|
||||
|
||||
.section-padding {
|
||||
padding-top: 5rem;
|
||||
padding-bottom: 5rem;
|
||||
}
|
||||
|
||||
/* Text gradient */
|
||||
.text-gradient {
|
||||
background: linear-gradient(to right, #00d9ff, #00ffff);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
/* Animations */
|
||||
@keyframes pulse-glow {
|
||||
0% { box-shadow: 0 0 5px #00d9ff; }
|
||||
100% { box-shadow: 0 0 20px #00d9ff, 0 0 30px #00d9ff; }
|
||||
}
|
||||
|
||||
.animate-pulse-glow {
|
||||
animation: pulse-glow 2s ease-in-out infinite alternate;
|
||||
}
|
||||
|
||||
/* Scrolling animation */
|
||||
@keyframes scroll {
|
||||
0% { transform: translateX(0); }
|
||||
100% { transform: translateX(-100%); }
|
||||
}
|
||||
|
||||
.animate-scroll {
|
||||
animation: scroll 30s linear infinite;
|
||||
}
|
||||
|
||||
/* Custom scrollbar */
|
||||
::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #00d9ff;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: #00ffff;
|
||||
}
|
||||
|
||||
/* Responsive design */
|
||||
@media (min-width: 640px) {
|
||||
.sm\:flex-row { flex-direction: row; }
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.md\:text-2xl { font-size: 1.5rem; }
|
||||
.md\:text-3xl { font-size: 1.875rem; }
|
||||
.md\:text-5xl { font-size: 3rem; }
|
||||
.md\:text-6xl { font-size: 3.75rem; }
|
||||
.md\:text-xl { font-size: 1.25rem; }
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
.lg\:text-7xl { font-size: 4.5rem; }
|
||||
.lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
|
||||
.lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
|
||||
}
|
||||
|
||||
/* Line clamp utility */
|
||||
.line-clamp-2 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Additional spacing utilities */
|
||||
.tracking-widest { letter-spacing: 0.1em; }
|
||||
|
||||
/* Terminal styles */
|
||||
.terminal-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
backdrop-filter: blur(10px);
|
||||
z-index: 50;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.terminal {
|
||||
width: 90%;
|
||||
max-width: 800px;
|
||||
height: 600px;
|
||||
background: #0a0a0a;
|
||||
border: 1px solid #00d9ff;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.terminal-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 0.75rem 1rem;
|
||||
background: #1a1a1a;
|
||||
border-bottom: 1px solid #00d9ff;
|
||||
border-top-left-radius: 8px;
|
||||
border-top-right-radius: 8px;
|
||||
color: #00d9ff;
|
||||
font-family: 'Roboto Mono', monospace;
|
||||
}
|
||||
|
||||
.terminal-title {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.terminal-close {
|
||||
background: none;
|
||||
border: none;
|
||||
color: #ff3366;
|
||||
cursor: pointer;
|
||||
font-family: 'Roboto Mono', monospace;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.terminal-body {
|
||||
flex-grow: 1;
|
||||
padding: 1.5rem;
|
||||
overflow-y: auto;
|
||||
font-family: 'Roboto Mono', monospace;
|
||||
color: #00ff00;
|
||||
}
|
||||
|
||||
#terminal-content {
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.terminal-cursor {
|
||||
display: inline-block;
|
||||
width: 10px;
|
||||
height: 1.2em;
|
||||
background: #00ff00;
|
||||
animation: blink 1s step-end infinite;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.text-green-400 {
|
||||
color: #4ade80;
|
||||
}
|
||||
|
||||
.text-red-400 {
|
||||
color: #f87171;
|
||||
}
|
||||
|
||||
.text-cyan-400 {
|
||||
color: #22d3ee;
|
||||
}
|
||||
|
||||
.font-mono {
|
||||
font-family: 'Roboto Mono', monospace;
|
||||
}
|
||||
|
||||
.focus\:outline-none:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.focus\:ring-0:focus {
|
||||
box-shadow: none;
|
||||
}
|
Reference in New Issue
Block a user