UNPKG

brainrotscript

Version:

🧠 A brainrot programming language that compiles to JavaScript - because why write normal code when you can write code that's absolutely sending you? 💀

166 lines (145 loc) • 4.58 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>🧠 BrainrotScript Website</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; color: white; overflow-x: hidden; } .container { max-width: 1200px; margin: 0 auto; padding: 20px; } header { text-align: center; padding: 40px 0; background: rgba(0, 0, 0, 0.2); border-radius: 20px; margin-bottom: 30px; backdrop-filter: blur(10px); } h1 { font-size: 3rem; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); } .subtitle { font-size: 1.2rem; opacity: 0.9; } #app { background: rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 30px; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); } .loading { text-align: center; padding: 50px; font-size: 1.5rem; } .spinning { animation: spin 2s linear infinite; display: inline-block; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .button { background: linear-gradient(45deg, #ff6b6b, #ee5a24); border: none; border-radius: 15px; padding: 15px 30px; color: white; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: all 0.3s ease; margin: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); } .button:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3); } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 20px 0; } .stat-card { background: rgba(255, 255, 255, 0.1); border-radius: 15px; padding: 20px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.2); transition: transform 0.3s ease; } .stat-card:hover { transform: scale(1.05); } .stat-number { font-size: 2rem; font-weight: bold; margin-bottom: 5px; } .footer { text-align: center; margin-top: 40px; opacity: 0.8; font-size: 0.9rem; } .vibe-meter { width: 100%; height: 20px; background: rgba(255, 255, 255, 0.2); border-radius: 10px; overflow: hidden; margin: 10px 0; } .vibe-fill { height: 100%; background: linear-gradient(90deg, #ff6b6b, #feca57, #48ca7e); border-radius: 10px; transition: width 0.5s ease; } </style> </head> <body> <div class="container"> <header> <h1>🧠 BrainrotScript Website</h1> <p class="subtitle">Built with the most fire programming language! 💀🔥</p> </header> <div id="app"> <div class="loading"> <div class="spinning">🧠</div> <p>Loading BrainrotScript...</p> <p><em>Getting ready to absolutely send you!</em></p> </div> </div> <div class="footer"> <p>Made with BrainrotScript 💀 | It's giving main character energy ✨</p> <p>No cap, this website is absolutely fire! 🔥</p> </div> </div> <!-- Load your compiled BrainrotScript here --> <script src="./js/main.js"></script> </body> </html>