/* * privacy-policy.css - Style dédié pour la politique de confidentialité * Music Services Search Extension */ /* Règle pour ajouter automatiquement un espace insécable avant les deux-points en français */ html[lang="fr"] .policy-section p::after, html[lang="fr"] .policy-section li::after { content: ""; white-space: nowrap; } :root { /* Palette de couleurs basée sur #214c58 (bleu pétrole) */ --accent-color: #214c58; --accent-light: #466772; --accent-dark: #1b343b; --text-primary: #24292f; --text-secondary: #57606a; --text-tertiary: #6e7781; --text-link: #214c58; --text-link-hover: #2e5865; --bg-main: #ffffff; --bg-secondary: #f7fafb; --border-color: #d0d7de; --border-light: #eaeff1; --success-color: #26505c; --danger-color: #b56c60; --highlight-bg: #f0f7fa; --highlight-border: #cce5ff; --quote-bg: #f8f9fa; --quote-border: #e1e4e8; } @media (prefers-color-scheme: dark) { :root { --accent-color: #466772; --accent-light: #69838c; --accent-dark: #214c58; --text-primary: #e6edf3; --text-secondary: #b2bfc4; --text-tertiary: #8b949e; --text-link: #69838c; --text-link-hover: #8da1a8; --bg-main: #121d20; --bg-secondary: #17282e; --border-color: #30363d; --border-light: #242f35; --highlight-bg: #1d2d35; --highlight-border: #1f4a68; --quote-bg: #1c262c; --quote-border: #30363d; } } * { box-sizing: border-box; margin: 0; padding: 0; } html, body { height: 100%; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background-color: var(--bg-main); color: var(--text-primary); line-height: 1.5; font-size: 18px; -webkit-font-smoothing: antialiased; } .container { max-width: 720px; margin: 0 auto; padding: 70px 40px; } header { text-align: center; margin-bottom: 60px; padding-bottom: 30px; border-bottom: 1px solid var(--border-color); position: relative; } header::after { content: ""; position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: var(--accent-color); border-radius: 3px; } .logo-container { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; } .logo-container img { width: 32px; height: 32px; margin-right: 12px; } h1 { font-size: 2.25rem; font-weight: 600; margin-bottom: 16px; color: var(--text-primary); letter-spacing: -0.025em; } h2 { font-size: 1.65rem; font-weight: 600; margin: 2.5em 0 1em; color: var(--text-primary); position: relative; padding-bottom: 12px; letter-spacing: -0.01em; } h2:after { content: ""; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background-color: var(--accent-color); border-radius: 3px; } p, ul, ol { margin-bottom: 1.6em; color: var(--text-secondary); font-size: 1.05rem; line-height: 1.55; } ul, ol { padding-left: 1.8em; } li { margin-bottom: 0.85em; position: relative; } ul li::marker { color: var(--accent-light); } strong { font-weight: 600; color: var(--text-primary); } .policy-content { margin-top: 30px; } .policy-section { margin-bottom: 60px; padding: 0; border-radius: 8px; transition: transform 0.2s ease; } .policy-section:hover { transform: translateY(-2px); } a { color: var(--text-link); text-decoration: none; transition: color 0.2s ease; font-weight: 500; } a:hover { color: var(--text-link-hover); text-decoration: underline; } .back-link { display: inline-flex; align-items: center; margin-top: 40px; padding: 10px 20px; background-color: var(--bg-secondary); border-radius: 6px; border: 1px solid var(--border-color); transition: all 0.2s ease; font-size: 16px; } .back-link:hover { background-color: var(--bg-main); text-decoration: none; border-color: var(--accent-light); } .back-link::before { content: "←"; margin-right: 10px; font-size: 18px; } footer { margin-top: 80px; padding-top: 25px; border-top: 1px solid var(--border-color); color: var(--text-tertiary); font-size: 0.9rem; text-align: center; } blockquote { margin: 30px 0; padding: 18px 24px; background-color: var(--quote-bg); border-left: 4px solid var(--quote-border); border-radius: 4px; font-style: italic; color: var(--text-secondary); } blockquote p:last-child { margin-bottom: 0; } .issue-link { display: inline-flex; align-items: center; padding: 6px 12px; background-color: var(--bg-secondary); border: 1px solid var(--border-light); border-radius: 6px; transition: all 0.2s ease; color: var(--text-link); } .issue-link:hover { background-color: var(--highlight-bg); text-decoration: none; border-color: var(--accent-light); } .issue-link::before { content: "🐛"; margin-right: 8px; } .header-description { color: var(--text-secondary); font-size: 1.2rem; max-width: 500px; margin: 0 auto; } .service-list { list-style: none; padding-left: 0; margin: 24px 0; } .service-list li { padding: 12px 0; border-bottom: 1px solid var(--border-color); } .service-list li:last-child { border-bottom: none; } .security-callout { margin: 30px 0; padding: 24px; background-color: var(--highlight-bg); border-left: 5px solid var(--accent-color); border-radius: 6px; font-size: 1.05rem; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03); } .security-callout p { margin-bottom: 0; display: flex; align-items: center; } .security-callout p::before { content: "🔒"; margin-right: 10px; font-size: 1.2em; } @media (max-width: 680px) { .container { padding: 40px 24px; } h1 { font-size: 1.8rem; } h2 { font-size: 1.4rem; margin: 2em 0 0.75em; } .header-description { font-size: 1.1rem; } body { font-size: 16px; } p, ul, ol { font-size: 1rem; line-height: 1.55; } .security-callout { padding: 18px; } }