Remove page-blinking CSS animations and old deploy script

- Remove .ascii-frame-outer:hover flicker animation (caused article to
  shake/blink every time cursor entered the ticket container)
- Remove body flicker animation (caused full page blink every 30s)
- Remove deploy.sh (deployment now handled by Gitea CI/CD)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-19 11:04:03 -04:00
parent f3c15e2582
commit 6fbba3939f
2 changed files with 0 additions and 27 deletions

View File

@@ -148,14 +148,6 @@ body::before {
100% { transform: translate(0); } 100% { transform: translate(0); }
} }
.ascii-frame-outer:hover {
animation: flicker 0.15s ease-in-out 1;
}
/* Random screen glitch every 30 seconds */
body {
animation: flicker 0.2s ease-in-out 30s infinite;
}
/* Subtle data stream effect in corner */ /* Subtle data stream effect in corner */
body::after { body::after {

View File

@@ -1,19 +0,0 @@
#!/bin/bash
set -e
echo "Deploying tinker_tickets to web server..."
# Deploy web_template (shared UI framework) into the app directory so nginx serves it
echo "Syncing web_template to web server..."
rsync -avz --delete --exclude='.git' --exclude='node' --exclude='php' --exclude='python' --exclude='README.md' --exclude='Claude.md' /root/code/web_template/ root@10.10.10.45:/var/www/html/tinkertickets/web_template/
# Deploy to web server
echo "Syncing to web server (10.10.10.45)..."
rsync -avz --delete --exclude='.git' --exclude='deploy.sh' --exclude='.env' --exclude='web_template' ./ root@10.10.10.45:/var/www/html/tinkertickets/
# Set proper permissions on the web server
echo "Setting proper file permissions..."
ssh root@10.10.10.45 "chown -R www-data:www-data /var/www/html/tinkertickets && find /var/www/html/tinkertickets -type f -exec chmod 644 {} \; && find /var/www/html/tinkertickets -type d -exec chmod 755 {} \;"
echo "Deployment to web server complete!"
echo "Don't forget to commit and push your changes via VS Code when ready."