BLUE
PHP 8.2.29
Path:
/home/medyaist/arsamnerde.com
Run
Logout
Edit File
Size: 7.85 KB
Close
/home/medyaist/arsamnerde.com/admin.css
Text
Base64
* { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary-color: #1e3a8a; --primary-dark: #1e40af; --primary-light: #3b82f6; --secondary-color: #059669; --danger-color: #dc2626; --text-primary: #111827; --text-secondary: #4b5563; --text-light: #9ca3af; --bg-color: #f9fafb; --white: #ffffff; --border-color: #e5e7eb; --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } body { font-family: 'Inter', sans-serif; background: var(--bg-color); color: var(--text-primary); line-height: 1.6; } /* Login Sayfası */ .login-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ff 100%); } .login-card { background: var(--white); border-radius: 12px; padding: 40px; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); } .login-header { text-align: center; margin-bottom: 32px; } .login-header h1 { font-size: 1.875rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; } .login-header p { color: var(--text-secondary); font-size: 0.875rem; } .login-form .form-group { margin-bottom: 20px; } .login-form label { display: block; margin-bottom: 8px; font-size: 0.875rem; font-weight: 500; color: var(--text-primary); } .login-form input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border-color); border-radius: 8px; font-size: 1rem; font-family: 'Inter', sans-serif; transition: all 0.3s ease; background: var(--white); outline: none; color: var(--text-primary); } .login-form input:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1); } .login-form input::placeholder { color: var(--text-light); } .login-btn { width: 100%; padding: 14px; background: var(--primary-color); color: white; border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; box-shadow: var(--shadow); margin-top: 24px; } .login-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); } .login-btn:active { transform: translateY(0); } .form-message { font-size: 0.875rem; min-height: 20px; margin-top: 12px; padding: 10px; border-radius: 6px; text-align: center; transition: all 0.3s ease; } .form-message.success { background: #d1fae5; color: var(--secondary-color); } .form-message.error { background: #fee2e2; color: var(--danger-color); } .back-link { margin-top: 24px; text-align: center; } .back-link a { color: var(--text-secondary); text-decoration: none; font-size: 0.875rem; transition: color 0.3s ease; } .back-link a:hover { color: var(--primary-color); } /* Admin Panel */ .admin-panel { min-height: 100vh; background: var(--bg-color); } .admin-header { background: var(--white); border-bottom: 1px solid var(--border-color); padding: 20px 0; box-shadow: var(--shadow); } .header-content { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; } .admin-header h1 { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); } .header-actions { display: flex; gap: 12px; align-items: center; } .refresh-btn { width: 40px; height: 40px; border: 1px solid var(--border-color); background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-secondary); transition: all 0.3s ease; } .refresh-btn:hover { background: var(--bg-color); color: var(--primary-color); border-color: var(--primary-color); } .logout-btn { padding: 10px 20px; background: var(--danger-color); color: white; text-decoration: none; border-radius: 8px; font-size: 0.875rem; font-weight: 500; transition: all 0.3s ease; } .logout-btn:hover { background: #b91c1c; } .admin-main { max-width: 1400px; margin: 0 auto; padding: 32px 24px; } .stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-bottom: 32px; } .stat-card { background: var(--white); border-radius: 12px; padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--border-color); display: flex; align-items: center; gap: 20px; } .stat-icon { width: 56px; height: 56px; background: rgba(30, 58, 138, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-color); flex-shrink: 0; } .stat-info { flex: 1; } .stat-value { font-size: 2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; } .stat-label { font-size: 0.875rem; color: var(--text-secondary); } .table-container { background: var(--white); border-radius: 12px; box-shadow: var(--shadow); border: 1px solid var(--border-color); overflow: hidden; } .table-header { padding: 24px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; } .table-header h2 { font-size: 1.25rem; font-weight: 600; color: var(--text-primary); } .table-actions { display: flex; gap: 12px; } .export-btn { padding: 10px 20px; background: var(--secondary-color); color: white; border: none; border-radius: 8px; font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; } .export-btn:hover { background: #047857; } .table-wrapper { overflow-x: auto; } .data-table { width: 100%; border-collapse: collapse; } .data-table thead { background: var(--bg-color); } .data-table th { padding: 16px 24px; text-align: left; font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border-color); } .data-table td { padding: 16px 24px; border-bottom: 1px solid var(--border-color); color: var(--text-primary); font-size: 0.875rem; } .data-table tbody tr:hover { background: var(--bg-color); } .data-table tbody tr:last-child td { border-bottom: none; } .empty-state { text-align: center; color: var(--text-light); padding: 48px 24px !important; font-style: italic; } .delete-btn { padding: 6px 12px; background: var(--danger-color); color: white; border: none; border-radius: 6px; font-size: 0.75rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; } .delete-btn:hover { background: #b91c1c; } /* Responsive */ @media (max-width: 768px) { .login-card { padding: 32px 24px; } .header-content { flex-direction: column; gap: 16px; align-items: flex-start; } .stats-container { grid-template-columns: 1fr; } .table-header { flex-direction: column; gap: 16px; align-items: flex-start; } .data-table { font-size: 0.75rem; } .data-table th, .data-table td { padding: 12px 16px; } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 2 × Files: 4
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
.well-known
DIR
-
drwxr-xr-x
2025-12-09 18:24:11
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
id_rsa
DIR
-
drwxr-xr-x
2026-01-14 21:37:36
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
.htaccess
281 B
lrw-r--r--
2026-02-27 22:00:06
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
admin.css
7.85 KB
lrw-r--r--
2025-12-09 18:06:54
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
mds.php
7.65 KB
lrw-r--r--
2026-01-02 09:05:05
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
styles.css
10.23 KB
lrw-r--r--
2025-12-09 18:06:54
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).