under-attack-challenge.css in Vigilant – 100% Free Security Suite: Firewall, 2FA, Login, Headers, Scanner… 2.10.0, at assets/css/under-attack-challenge.css
| 1 | /** |
| 2 | * Under Attack mode - Challenge page styles |
| 3 | * |
| 4 | * @package Vigilante |
| 5 | */ |
| 6 | |
| 7 | * { |
| 8 | margin: 0; |
| 9 | padding: 0; |
| 10 | box-sizing: border-box; |
| 11 | } |
| 12 | |
| 13 | body { |
| 14 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; |
| 15 | background: #f0f0f0; |
| 16 | color: #333; |
| 17 | display: flex; |
| 18 | align-items: center; |
| 19 | justify-content: center; |
| 20 | min-height: 100vh; |
| 21 | } |
| 22 | |
| 23 | .challenge-container { |
| 24 | text-align: center; |
| 25 | padding: 40px 30px; |
| 26 | max-width: 420px; |
| 27 | width: 100%; |
| 28 | } |
| 29 | |
| 30 | .site-name { |
| 31 | font-size: 22px; |
| 32 | font-weight: 600; |
| 33 | color: #1d2327; |
| 34 | margin-bottom: 40px; |
| 35 | } |
| 36 | |
| 37 | .spinner { |
| 38 | width: 40px; |
| 39 | height: 40px; |
| 40 | border: 3px solid #ddd; |
| 41 | border-top-color: #888; |
| 42 | border-radius: 50%; |
| 43 | animation: vigilante-spin 0.8s linear infinite; |
| 44 | margin: 0 auto 24px; |
| 45 | } |
| 46 | |
| 47 | @keyframes vigilante-spin { |
| 48 | to { |
| 49 | transform: rotate(360deg); |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | .message { |
| 54 | font-size: 15px; |
| 55 | color: #666; |
| 56 | line-height: 1.5; |
| 57 | } |
| 58 | |
| 59 | .message-sub { |
| 60 | font-size: 13px; |
| 61 | color: #999; |
| 62 | margin-top: 8px; |
| 63 | } |
| 64 | |
| 65 | .error-msg { |
| 66 | display: none; |
| 67 | margin-top: 20px; |
| 68 | padding: 12px 16px; |
| 69 | background: #fff; |
| 70 | border: 1px solid #ddd; |
| 71 | border-radius: 4px; |
| 72 | font-size: 13px; |
| 73 | color: #666; |
| 74 | } |
| 75 | |
| 76 | noscript .error-msg { |
| 77 | display: block; |
| 78 | } |