User:Spongebob244s/Common.css
Appearance
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* AI Sponge/Spongebob Miraheze CSS */ @import url('https://fonts.googleapis.com/css2?family=Slackey&display=swap'); body { background-image: url('https://static.wikia.nocookie.net/spongebob/images/5/5f/Pressure_006.png/revision/latest?cb=20200816170104&format=original'); /* Replace with actual underwater background image URL */ background-size: cover; font-family: Arial, sans-serif; color: #000000; } h1, h2, h3, h4, h5, h6 { font-family: 'Slackey', cursive; color: #008080; /* Teal blue */ text-shadow: 2px 2px 4px rgba(0,0,0,0.2); } .infobox { background-color: #8B8000; /* Dark yellow */ background-image: url('https://example.com/sand-texture.jpg'); /* Replace with sand texture URL */ border: 3px solid #696000; border-radius: 15px; padding: 15px; margin: 10px; box-shadow: 5px 5px 10px rgba(0,0,0,0.3); } .button { background-color: #8B8000; /* Dark yellow */ color: #FFFFFF; padding: 8px 15px; border: 2px solid #696000; border-radius: 20px; cursor: pointer; font-family: Arial, sans-serif; transition: background-color 0.3s; } .button:hover { background-color: #696000; } a { color: #FFFF00; /* Normal yellow */ text-decoration: none; } a:hover { text-decoration: underline; color: #FFD700; } .content { background-color: rgba(255, 255, 255, 0.8); padding: 20px; border-radius: 10px; margin: 15px; } .sidebar { background-color: #8B8000; /* Dark yellow */ background-image: url('https://example.com/sand-texture.jpg'); /* Same sand texture */ border-right: 4px solid #696000; } /* Add responsive design */ @media (max-width: 768px) { .infobox { margin: 5px; padding: 10px; } }