/* * Blog Build Admin Styles * * Styles for WordPress admin dashboard - documentation page, premium notices, and welcome banners. * Clean white gradient backgrounds for professional appearance. * * @package Blog_Build */ /* ===== DOCUMENTATION PAGE STYLES ===== */ /* Pro Banner in Documentation Page */ .blog-build-pro-banner { background: linear-gradient(135deg, #facdcd 0%, #77b9fa 100%); border: 1px solid #e0e0e0; border-radius: 12px; margin: 20px 0 30px 0; padding: 0; overflow: hidden; position: relative; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); } .blog-build-pro-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%); animation: shimmer 3s ease-in-out infinite; } @keyframes shimmer { 0%, 100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } } .pro-banner-content { display: flex; align-items: center; padding: 40px; position: relative; z-index: 2; } .pro-banner-left { flex: 1; color: #333; } .pro-banner-title { font-size: 28px; font-weight: 700; margin: 0 0 10px 0; color: #333 !important; animation: fadeInUp 0.6s ease-out; } .pro-banner-subtitle { font-size: 16px; margin: 0 0 30px 0; color: #666; animation: fadeInUp 0.6s ease-out 0.2s both; } .pro-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; animation: fadeInUp 0.6s ease-out 0.4s both; } .pro-feature-item { display: flex; align-items: center; gap: 10px; padding: 10px 15px; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); border: 1px solid #e0e0e0; border-radius: 8px; transition: all 0.3s ease; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); } .pro-feature-item:hover { background: linear-gradient(135deg, #ffffff 0%, #f0f1f3 100%); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .feature-icon { font-size: 18px; animation: bounce 2s infinite; } .feature-text { font-size: 14px; font-weight: 500; color: #333; } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-5px); } 60% { transform: translateY(-3px); } } .pro-banner-buttons { display: flex; gap: 15px; animation: fadeInUp 0.6s ease-out 0.6s both; } .pro-btn { padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.3s ease; display: inline-block; border: none; cursor: pointer; } .pro-btn-primary { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3); } .pro-btn-primary:hover { background: linear-gradient(135deg, #5a67d8 0%, #6a4093 100%); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3); color: white; text-decoration: none; } .pro-btn-secondary { background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); color: #667eea; border: 1px solid #e0e0e0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); } .pro-btn-secondary:hover { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); transform: translateY(-2px); color: #5a67d8; text-decoration: none; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); } .pro-banner-right { flex: 0 0 200px; position: relative; height: 200px; } .pro-banner-image { position: relative; width: 100%; height: 100%; } .floating-element { position: absolute; font-size: 24px; animation: float 3s ease-in-out infinite; color: #667eea; } .element-1 { top: 20px; right: 20px; animation-delay: 0s; } .element-2 { top: 60px; right: 60px; animation-delay: 1s; } .element-3 { top: 100px; right: 30px; animation-delay: 2s; } @keyframes float { 0%, 100% { transform: translateY(0px) rotate(0deg); } 33% { transform: translateY(-10px) rotate(5deg); } 66% { transform: translateY(5px) rotate(-5deg); } } .pro-mockup { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120px; height: 80px; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); border: 1px solid #e0e0e0; border-radius: 8px; padding: 10px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .mockup-screen { width: 100%; height: 100%; background: white; border-radius: 4px; padding: 8px; } .mockup-header { height: 8px; background: #667eea; border-radius: 2px; margin-bottom: 6px; } .mockup-line { height: 4px; background: #f0f0f0; border-radius: 2px; margin-bottom: 4px; } .mockup-line.short { width: 60%; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } /* Documentation Styles */ .blog-build-documentation { max-width: 800px; background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%); border: 1px solid #e0e0e0; border-radius: 8px; padding: 30px; margin-top: 20px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); } .documentation-section { margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid #f0f0f1; } .documentation-section:last-child { border-bottom: none; margin-bottom: 0; } .documentation-section h2 { color: #1d2327; font-size: 24px; font-weight: 600; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid #2271b1; } .documentation-section h3 { color: #1d2327; font-size: 18px; font-weight: 600; margin: 25px 0 15px 0; } .documentation-section ul, .documentation-section ol { margin-left: 20px; margin-bottom: 20px; } .documentation-section li { margin-bottom: 10px; line-height: 1.6; } .documentation-section p { line-height: 1.6; margin-bottom: 15px; color: #50575e; } .documentation-section a { color: #2271b1; text-decoration: none; } .documentation-section a:hover { color: #135e96; text-decoration: underline; } .documentation-section strong { color: #1d2327; font-weight: 600; } /* Premium Notice Styles */ .blog-build-premium-notice { background: linear-gradient(135deg, #dbf5d6 0%, #d7ebff 50%, #f1efb6 100%); border: 1px solid #e0e0e0 !important; border-radius: 12px !important; padding: 0 !important; position: relative; overflow: hidden; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); margin: 15px 0; } .blog-build-premium-notice::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); animation: shine 3s infinite; } @keyframes shine { 0% { left: -100%; } 100% { left: 100%; } } .premium-notice-content { padding: 25px 30px; position: relative; z-index: 2; display: flex; align-items: center; gap: 30px; } .premium-notice-text { flex: 1; color: #333; } .premium-notice-title { margin: 0 0 10px 0 !important; color: #333 !important; font-size: 20px !important; font-weight: 700 !important; animation: fadeInUp 0.6s ease-out; } .premium-notice-description { margin: 10px 0 !important; font-size: 14px !important; line-height: 1.5 !important; color: #666 !important; animation: fadeInUp 0.6s ease-out 0.1s both; } .premium-features-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 15px 0; animation: fadeInUp 0.6s ease-out 0.2s both; } .premium-feature { background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); border: 1px solid #e0e0e0; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; color: #333; transition: all 0.3s ease; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); } .premium-feature:hover { background: linear-gradient(135deg, #ffffff 0%, #f0f1f3 100%); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); } .premium-notice-buttons { display: flex !important; gap: 12px; align-items: center; margin-top: 15px !important; animation: fadeInUp 0.6s ease-out 0.3s both; flex-wrap: wrap; } .premium-btn { padding: 8px 16px !important; border-radius: 6px !important; text-decoration: none !important; font-weight: 600 !important; font-size: 13px !important; transition: all 0.3s ease !important; border: none !important; cursor: pointer !important; display: inline-block !important; } .premium-btn-primary { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important; color: white !important; box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3) !important; } .premium-btn-primary:hover { background: linear-gradient(135deg, #5a67d8 0%, #6a4093 100%) !important; color: white !important; transform: translateY(-2px) !important; box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4) !important; } .premium-btn-secondary { background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important; color: #667eea !important; border: 1px solid #e0e0e0 !important; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important; } .premium-btn-secondary:hover { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important; color: #5a67d8 !important; transform: translateY(-2px) !important; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important; } .premium-notice-icon { flex: 0 0 80px; display: flex; align-items: center; justify-content: center; position: relative; } .animated-icon { font-size: 24px; position: relative; z-index: 2; animation: bounce 2s infinite; color: #667eea; } .pulse-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; border: 2px solid rgba(102, 126, 234, 0.3); border-radius: 50%; animation: pulse 2s infinite; } @keyframes pulse { 0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; } } /* Welcome Notice Styles */ .blog-build-welcome-notice { background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%); border: 1px solid #e0e0e0 !important; border-radius: 8px !important; color: #333; padding: 0 !important; position: relative; overflow: hidden; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); margin: 15px 0; } .welcome-notice-content { display: flex; align-items: center; padding: 20px; gap: 20px; position: relative; z-index: 2; } .welcome-notice-icon { flex: 0 0 60px; font-size: 30px; text-align: center; animation: bounce 2s infinite; } .welcome-emoji { font-size: 30px; animation: bounce 2s infinite; } .welcome-notice-text { flex: 1; } .welcome-notice-title { margin: 0 0 10px 0 !important; color: #333 !important; font-size: 18px !important; font-weight: 700 !important; animation: fadeInUp 0.6s ease-out; } .welcome-notice-description { margin: 10px 0 !important; color: #666 !important; font-size: 14px !important; line-height: 1.5 !important; animation: fadeInUp 0.6s ease-out 0.1s both; } .welcome-notice-buttons { margin-top: 15px !important; display: flex !important; gap: 10px; align-items: center; animation: fadeInUp 0.6s ease-out 0.2s both; flex-wrap: wrap; } .welcome-btn { padding: 8px 16px !important; border-radius: 6px !important; text-decoration: none !important; font-weight: 600 !important; font-size: 13px !important; transition: all 0.3s ease !important; border: none !important; cursor: pointer !important; display: inline-block !important; } .welcome-btn-primary { background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%) !important; color: white !important; box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3) !important; } .welcome-btn-primary:hover { background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%) !important; color: white !important; transform: translateY(-2px) !important; box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4) !important; } .welcome-btn-secondary { background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important; color: #4CAF50 !important; border: 1px solid #e0e0e0 !important; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important; } .welcome-btn-secondary:hover { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important; color: #45a049 !important; transform: translateY(-2px) !important; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important; } /* Responsive Styles */ @media (max-width: 768px) { .pro-banner-content { flex-direction: column; text-align: center; padding: 30px 20px; } .pro-banner-right { flex: none; margin-top: 20px; } .pro-features-grid { grid-template-columns: 1fr; } .pro-banner-buttons { flex-direction: column; align-items: center; gap: 10px; } .premium-notice-content { flex-direction: column; text-align: center; padding: 20px; gap: 20px; } .premium-features-list { justify-content: center; } .premium-notice-buttons { flex-direction: column !important; align-items: center !important; gap: 10px !important; } .premium-btn { width: 100% !important; text-align: center !important; } .welcome-notice-content { flex-direction: column; text-align: center; } .welcome-notice-buttons { flex-direction: column !important; width: 100%; } .welcome-btn { width: 100% !important; text-align: center !important; } } @media (max-width: 782px) { .blog-build-documentation { padding: 20px; margin-top: 15px; } .documentation-section h2 { font-size: 20px; } .documentation-section h3 { font-size: 16px; } .premium-notice-content, .welcome-notice-content { padding: 15px; } .premium-notice-title, .welcome-notice-title { font-size: 16px !important; } } #wp-admin-bar-blog_build_upgrade_pro .ab-item { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important; color: white !important; font-weight: 600 !important; border-radius: 4px !important; margin: 4px 8px !important; transition: all 0.3s ease !important; } #wp-admin-bar-blog_build_upgrade_pro .ab-item:hover { background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important; color: white !important; transform: scale(1.05) !important; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important; } #wp-admin-bar-blog_build_upgrade_pro .ab-item:before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%); animation: shine 2s infinite; border-radius: 4px; } @keyframes shine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } } #wp-admin-bar-blog_build_upgrade_pro { position: relative; }