Category: Blogging
/* Deep Sea Background */ body { background-color: #000814; /* Darker for better contrast */ background-image: radial-gradient(circle at 50% 50%, #001d3d 0%, #000814 100%); background-attachment: fixed; scrollbar-face-color: #003566; } /* Custom Scrollbar for Chrome/Safari */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: #000814; } ::-webkit-scrollbar-thumb { backgrou... » Continue Reading
» View Blog Entry
Category: Art and Photography
/* CUSTOM BUBBLE CURSOR */ html, body { cursor: url('https://cur.cursors-4u.net/nature/nat-10/nat977.cur'), auto !important; } /* Deep Sea Liquid Background */ @keyframes oceanFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } .aero-container { background: linear-gradient(-45deg, #001219, #005f73, #0a9396, #001219); background-... » Continue Reading
» View Blog Entry
— 2 Comments
Category: Art and Photography
@keyframes oceanWave { 0%, 100% { border-radius: 60% 40% 70% 30% / 30% 70% 40% 60%; } 50% { border-radius: 30% 70% 40% 60% / 60% 40% 70% 30%; } } .wave-header { width: 100%; background: linear-gradient(180deg, #00c9ff 0%, #92fe9d 100%); padding: 30px 10px; color: white; font-family: 'Trebuchet MS', sans-serif; text-align: center; border: 2px solid #fff; animation: oceanWave 6s ease-in-out infinite... » Continue Reading
» View Blog Entry
Category: Art and Photography
/* Core Animations */ @keyframes blinker { 50% { opacity: 0; } } .blink { animation: blinker 1.5s linear infinite; } @keyframes wave { 0%, 100% { transform: translateY(0px) scale(1); } 50% { transform: translateY(-15px) scale(1.02); } } .ocean-move { animation: wave 5s ease-in-out infinite; } /* New Scanning Line Effect */ @keyframes scan { 0% { top: 0%; opacity: 0; } 50% { opacity: 0.5; } 100% { ... » Continue Reading
» View Blog Entry
Category: Writing and Poetry
/* San Agustin / Private School Aesthetic */ body { background-color: #000505; background-image: linear-gradient(180deg, #001d3d 0%, #000505 100%); background-attachment: fixed; } /* The "Mansion" Container */ .luxury-tank { background: rgba(0, 18, 25, 0.7); /* Slightly deeper blue-tinted black */ border: 1px solid #d4af37; border-radius: 5px; padding: 40px; color: #f0f0f0; font-family: 'Garamond'... » Continue Reading
» View Blog Entry