home
/
aioutajg
/
freecrazygames.xyz
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
.htaccess
2.48 KB
Rename
Delete
.htaccess.zip
16.40 KB
Rename
Delete
blog_post.php
3.34 KB
Rename
Delete
database_connection.php
672 bytes
Rename
Delete
error_log
9.66 KB
Rename
Delete
footer.php
299 bytes
Rename
Delete
header.php
1.15 KB
Rename
Delete
index.php
2.31 KB
Rename
Delete
install.php
801 bytes
Rename
Delete
login.php
4.26 KB
Rename
Delete
logout.php
919 bytes
Rename
Delete
register.php
5.44 KB
Rename
Delete
script.js
1.76 KB
Rename
Delete
style.css
7.31 KB
Rename
Delete
/* --- Basic Stylesheet (style.css) --- */ /* You can replace or augment this with Tailwind CSS if preferred (see header.php) */ /* Apply a base font and box-sizing */ body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; line-height: 1.6; color: #333; background-color: #f4f7f6; margin: 0; display: flex; /* Needed for sticky footer */ flex-direction: column; /* Needed for sticky footer */ min-height: 100vh; /* Needed for sticky footer */ } /* Basic container */ .container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; /* Add padding for smaller screens */ } /* Make main content grow to push footer down */ main { flex-grow: 1; } /* --- Header Styles --- */ header { background-color: #2c5282; /* Darker blue */ color: #fff; padding: 1rem 0; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } header nav { display: flex; justify-content: space-between; align-items: center; } header a { color: #fff; text-decoration: none; padding: 0.5rem; } header a:hover { color: #bee3f8; /* Lighter blue */ } header .font-bold { font-weight: bold; } header ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 1rem; /* Spacing between nav items */ } /* --- Footer Styles --- */ footer { background-color: #2d3748; /* Dark gray */ color: #e2e8f0; /* Light gray text */ text-align: center; padding: 1.5rem 0; margin-top: 2rem; /* Space above footer */ } /* --- Form Styles --- */ form { background-color: #fff; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); max-width: 500px; /* Limit form width */ margin: 2rem auto; /* Center form */ } form label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: #4a5568; /* Medium gray */ } form input[type="text"], form input[type="email"], form input[type="url"], form input[type="password"], form textarea { width: 100%; padding: 0.75rem; border: 1px solid #cbd5e0; /* Light gray border */ border-radius: 4px; margin-bottom: 1rem; box-sizing: border-box; /* Include padding in width */ transition: border-color 0.2s ease-in-out; } form input:focus, form textarea:focus { outline: none; border-color: #4299e1; /* Blue border on focus */ box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.5); } form button[type="submit"] { display: block; width: 100%; padding: 0.75rem; background-color: #3182ce; /* Blue */ color: white; border: none; border-radius: 4px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background-color 0.2s ease-in-out; } form button[type="submit"]:hover { background-color: #2b6cb0; /* Darker blue */ } /* Specific button colors */ form button.bg-red-600 { background-color: #e53e3e; } form button.bg-red-600:hover { background-color: #c53030; } form button.bg-blue-500 { background-color: #4299e1; } form button.bg-blue-500:hover { background-color: #3182ce; } form button.bg-blue-600 { background-color: #3182ce; } form button.bg-blue-600:hover { background-color: #2b6cb0; } /* --- Alert/Message Styles --- */ .alert { padding: 1rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: 4px; } .alert-danger, .bg-red-100 { /* Match Tailwind names used in PHP */ color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; } .alert-success, .bg-green-100 { color: #155724; background-color: #d4edda; border-color: #c3e6cb; } .alert ul { margin-top: 0.5rem; margin-bottom: 0; padding-left: 1.5rem; } /* --- Blog Post Styles --- */ article { background-color: #fff; padding: 1.5rem; margin-bottom: 1.5rem; border-radius: 8px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08); } article h3 a { color: #2b6cb0; text-decoration: none; } article h3 a:hover { text-decoration: underline; } article .text-sm { font-size: 0.875rem; } article .text-gray-500 { color: #718096; } article .text-gray-700 { color: #4a5568; } article .text-blue-600 { color: #3182ce; } /* Single Post Page Styles */ .prose { /* Basic styling for blog content area */ line-height: 1.7; } .prose p { margin-bottom: 1em; } .prose h1, .prose h2, .prose h3 { margin-bottom: 0.8em; margin-top: 1.5em; line-height: 1.3; } .prose ul, .prose ol { margin-left: 1.5em; margin-bottom: 1em; } .prose li > p { margin-bottom: 0.5em; } /* Spacing within list items */ .prose a { color: #3182ce; text-decoration: underline; } .prose code { background-color: #edf2f7; padding: 0.2em 0.4em; border-radius: 3px; font-size: 0.9em; } .prose pre { background-color: #2d3748; color: #e2e8f0; padding: 1em; border-radius: 4px; overflow-x: auto; } .prose pre code { background-color: transparent; padding: 0; font-size: 0.85em; } .prose blockquote { border-left: 4px solid #cbd5e0; padding-left: 1em; margin-left: 0; font-style: italic; color: #718096; } /* --- Thumbnail Downloader Styles --- */ .thumbnail-container img { border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); transition: transform 0.2s ease-in-out; max-width: 100%; /* Ensure images are responsive */ height: auto; display: block; /* Prevent extra space below image */ margin-left: auto; margin-right: auto; } .thumbnail-container img:hover { transform: scale(1.05); } .thumbnail-container .bg-blue-500 { background-color: #4299e1; } /* Match download button color */ .thumbnail-container .bg-blue-500:hover { background-color: #3182ce; } /* Utility Classes (if not using Tailwind) */ .text-center { text-align: center; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mt-4 { margin-top: 1rem; } .mt-8 { margin-top: 2rem; } .my-8 { margin-top: 2rem; margin-bottom: 2rem; } .my-12 { margin-top: 3rem; margin-bottom: 3rem; } .p-4 { padding: 1rem; } .p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; } .mx-auto { margin-left: auto; margin-right: auto; } .max-w-md { max-width: 28rem; } .max-w-lg { max-width: 32rem; } .max-w-2xl { max-width: 42rem; } .max-w-3xl { max-width: 48rem; } .rounded-lg { border-radius: 0.5rem; } .rounded-md { border-radius: 0.375rem; } .shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); } .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .font-bold { font-weight: 700; } .font-semibold { font-weight: 600; } .text-xs { font-size: 0.75rem; } .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; } /* Responsive Grid (Simple Example) */ .grid { display: grid; gap: 1.5rem; } /* Default gap */ @media (min-width: 640px) { /* sm breakpoint */ .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } } @media (min-width: 768px) { /* md breakpoint */ .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
Save