d5575b58e3
Features: - Mission Control dashboard - HP Submissions tracking - AI Agents integration - Lead management CRM - Marketing email templates - Chrome extension support Tech: Next.js, TypeScript, Tailwind CSS, MySQL
29 lines
492 B
CSS
29 lines
492 B
CSS
/* Content script styles for X.com */
|
|
|
|
/* Hover effect on tweets */
|
|
[data-testid="tweet"]:hover .hookd-checkbox {
|
|
display: flex !important;
|
|
}
|
|
|
|
/* Save button hover */
|
|
.hookd-save-btn:hover {
|
|
opacity: 1 !important;
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
/* Notification animation */
|
|
@keyframes hookd-slide-in {
|
|
from {
|
|
transform: translateY(100%);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
#hookd-floating-bar {
|
|
animation: hookd-slide-in 0.3s ease-out;
|
|
}
|