This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>QR Tool</title> | |
| <style> | |
| body { background: #1a1a1a; color: #eee; font-family: monospace; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; margin: 0; overflow: hidden; } | |
| #box { padding: 20px; background: #222; border: 1px solid #444; border-radius: 8px; text-align: center; box-shadow: 0 10px 30px #000; min-width: 250px; } | |
| img { display: block; border: 4px solid #fff; width: 160px; height: 160px; margin: 0 auto 15px; background: #fff; } | |
| .st { color: #888; font-size: 12px; margin-bottom: 15px; word-break: break-all; } |