Spaces:
Running
Running
| /* | |
| * PhishShield — content.css | |
| * Styles injected into Gmail / Outlook pages. | |
| * All rules are namespaced with #ps- to avoid conflicts. | |
| */ | |
| @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600&display=swap'); | |
| /* Warning banner (created dynamically in content.js) */ | |
| #ps-warning-banner { | |
| font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif ; | |
| box-sizing: border-box ; | |
| } | |
| #ps-warning-banner * { | |
| box-sizing: border-box ; | |
| font-family: inherit ; | |
| } | |
| /* Slide-in animation */ | |
| @keyframes ps-slide-in { | |
| from { opacity: 0; transform: translateX(20px); } | |
| to { opacity: 1; transform: translateX(0); } | |
| } | |
| /* High-risk highlight — optional: adds a subtle red tint to the email body */ | |
| .ps-email-flagged { | |
| outline: 2px solid rgba(248, 81, 73, 0.3) ; | |
| outline-offset: 4px ; | |
| border-radius: 4px ; | |
| } | |