/* ========================================================================== ADB Device Manager - VirusTotal Reports Stylesheet Implements a strict editorial design system: - Narrower content (max-width: 820px) - Strict spacing scale (4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px, 96px) - High visual rhythm and whitespace - Clean card-like tables and file type indicators ========================================================================== */ :root { --color-primary: #2563eb; --color-primary-hover: #1d4ed8; --color-bg-page: #ffffff; --color-bg-card: #fafafa; --color-text-title: #111111; --color-text-body: #444444; --color-text-muted: #666666; --color-border: #eaeaea; --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; } * { margin: 0; padding: 0; box-sizing: border-box; } body { width: 100%; min-height: 100vh; background: var(--color-bg-page); font-family: var(--font-sans); color: var(--color-text-body); line-height: 1.6; -webkit-font-smoothing: antialiased; } /* Header styling */ .header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--color-border); padding: 16px 32px; } .header-content { width: 100%; max-width: 820px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; } .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--color-text-title); font-weight: 700; font-size: 1.1rem; } .logo-icon { width: 32px; height: 32px; } .nav { display: flex; gap: 24px; } .nav-link { text-decoration: none; color: var(--color-text-muted); font-weight: 500; font-size: 0.9rem; transition: color 0.15s ease; } .nav-link:hover { color: var(--color-primary); } /* Main Container: Narrow max-width for premium reading experience */ .main-container { max-width: 820px; margin: 0 auto; padding: 48px 24px 96px; } /* Hero Section */ .hero { text-align: left; margin-bottom: 32px; } .hero-title { font-size: 32px; font-weight: 800; color: var(--color-text-title); letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 12px; } .hero-subtitle { font-size: 14px; font-weight: 400; color: var(--color-text-muted); line-height: 1.5; max-width: 640px; } /* Unified Page Summary / Metadata Block */ .page-summary-block { display: flex; justify-content: space-between; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 8px; padding: 24px; margin-bottom: 48px; gap: 32px; } .summary-index { display: flex; flex-direction: column; gap: 8px; } .summary-index h4 { font-size: 11px; font-weight: 700; color: var(--color-text-title); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; } .summary-index ul { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 24px; } .summary-index li a { font-size: 13px; color: var(--color-primary); text-decoration: none; font-weight: 500; } .summary-index li a:hover { text-decoration: underline; } .summary-meta { display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--color-border); padding-left: 32px; min-width: 140px; gap: 4px; flex-shrink: 0; } .summary-meta span { font-size: 11px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; } .summary-meta strong { font-size: 13px; color: var(--color-text-title); font-weight: 700; } /* High-Scannability Summary Badges */ .summary-badges { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-bottom: 48px; } .summary-badge-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--color-text-title); background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 6px; padding: 8px 16px; } .summary-badge-item i { width: 14px; height: 14px; color: var(--color-primary); flex-shrink: 0; } /* Custom separator spacing */ .hero-divider, .section-divider { height: 1px; background-color: var(--color-border); border: none; margin: 64px 0; } /* Version sections */ .version-section { margin-bottom: 64px; } .version-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--color-border); } .version-header h2 { font-size: 18px; font-weight: 700; color: var(--color-text-title); letter-spacing: -0.2px; } .version-badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; text-transform: uppercase; } .version-badge.latest { background: #e0f7ff; color: var(--color-primary); border: 1px solid rgba(37, 99, 235, 0.2); } .version-badge.previous { background: #f3f4f6; color: var(--color-text-muted); border: 1px solid var(--color-border); } /* Detection Compact Warning Box */ .detection-note { display: flex; align-items: flex-start; gap: 12px; background: #fffbeb; border: 1px solid #fde68a; border-left: 3px solid #f59e0b; border-radius: 6px; padding: 16px 24px; margin-bottom: 48px; font-size: 13px; color: #78350f; line-height: 1.5; } .detection-note p { margin: 0; } .detection-note strong { color: #92400e; } .detection-note code { font-family: monospace; font-size: 12px; background: rgba(245, 158, 11, 0.1); padding: 1px 4px; border-radius: 3px; color: #b45309; } /* Table Style: Wrapped inside rounded cards */ .table-wrapper { overflow-x: auto; margin: 24px 0; border: 1px solid var(--color-border); border-radius: 8px; background: var(--color-bg-card); padding: 16px; } table { width: 100%; border-collapse: collapse; } th { padding: 12px 16px; text-align: left; font-weight: 700; color: var(--color-text-title); font-size: 13px; border-bottom: 1px solid var(--color-border); } td { padding: 12px 16px; border-bottom: 1px solid var(--color-border); color: var(--color-text-body); font-size: 13px; } tr:last-child td { border-bottom: none; } .file-name { font-weight: 600; color: var(--color-text-title); font-family: monospace; } /* File platform labels */ .file-type { font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; } .file-type.exe { background: #f3f4f6; color: #374151; border: 1px solid #e5e7eb; } .file-type.apk { background: #f5f3ff; color: #5b21b6; border: 1px solid #ddd6fe; } .file-type.zip { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; } /* Security scan status indicators */ .status-badge { font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; } .status-badge.safe { color: #10b981; } .status-badge.warning { color: #f59e0b; } /* Action view report links */ .report-link { color: var(--color-primary); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; } .report-link:hover { text-decoration: underline; } .report-link svg { width: 12px; height: 12px; } /* Related Links Footnote */ .related-link { margin-top: 32px; padding-top: 16px; border-top: 1px dashed var(--color-border); font-size: 13px; } .related-link p { color: var(--color-text-muted); } .related-link a { color: var(--color-primary); text-decoration: none; font-weight: 600; } .related-link a:hover { text-decoration: underline; } /* Lucide Icon override */ i[data-lucide] { display: inline-block; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; } /* Responsive adjustments */ @media (max-width: 768px) { .header { padding: 16px; } .header-content { flex-direction: column; gap: 12px; } .nav { gap: 16px; } .main-container { padding: 32px 16px 64px; } .hero-title { font-size: 26px; } .page-summary-block { flex-direction: column; gap: 16px; } .summary-meta { border-left: none; border-top: 1px solid var(--color-border); padding-left: 0; padding-top: 16px; } }