364 lines
7.2 KiB
CSS
364 lines
7.2 KiB
CSS
/* General Body Styles */
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
background-color: #FFFFFF;
|
|
color: #3A3A3C;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
/* --- Palette & Theme --- */
|
|
:root {
|
|
--primary-color: #5E5DF0;
|
|
--primary-hover-color: #4948d2;
|
|
--secondary-color: #F2F2F7;
|
|
--text-dark: #1D1D1F;
|
|
--text-light: #6c757d;
|
|
--border-radius-sm: 8px;
|
|
--border-radius-md: 12px;
|
|
--border-radius-lg: 16px;
|
|
}
|
|
|
|
/* --- Typography --- */
|
|
h1, h2, h3, h4, h5, h6 {
|
|
color: var(--text-dark);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.display-4 {
|
|
font-weight: 800;
|
|
}
|
|
|
|
.lead {
|
|
color: var(--text-light);
|
|
font-size: 1.15rem;
|
|
font-weight: 400;
|
|
}
|
|
|
|
/* --- Header & Navigation --- */
|
|
.navbar {
|
|
padding: 1.5rem 0;
|
|
}
|
|
.navbar-brand {
|
|
font-weight: 700;
|
|
font-size: 1.5rem;
|
|
color: var(--text-dark);
|
|
}
|
|
.navbar .btn-outline-primary {
|
|
border-color: var(--primary-color);
|
|
color: var(--primary-color);
|
|
border-radius: var(--border-radius-sm);
|
|
padding: 0.5rem 1rem;
|
|
font-weight: 600;
|
|
transition: all 0.2s ease;
|
|
}
|
|
.navbar .btn-outline-primary:hover {
|
|
background-color: var(--primary-color);
|
|
color: #fff;
|
|
}
|
|
|
|
/* --- Hero Section --- */
|
|
.hero {
|
|
padding: 6rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
/* --- Buttons --- */
|
|
.btn-primary {
|
|
background-color: var(--primary-color);
|
|
border-color: var(--primary-color);
|
|
border-radius: var(--border-radius-md);
|
|
padding: 1rem 2rem;
|
|
font-weight: 600;
|
|
font-size: 1.1rem;
|
|
transition: background-color 0.2s ease-in-out, transform 0.2s ease;
|
|
}
|
|
.btn-primary:hover {
|
|
background-color: var(--primary-hover-color);
|
|
border-color: var(--primary-hover-color);
|
|
transform: translateY(-2px);
|
|
}
|
|
.btn-secondary {
|
|
border-radius: var(--border-radius-md);
|
|
padding: 0.75rem 1.5rem;
|
|
}
|
|
|
|
|
|
/* --- Generator Section --- */
|
|
#generator-section {
|
|
padding: 4rem 0;
|
|
background-color: var(--secondary-color);
|
|
border-radius: var(--border-radius-lg);
|
|
}
|
|
.generator-card {
|
|
background-color: #fff;
|
|
padding: 2rem;
|
|
border-radius: var(--border-radius-lg);
|
|
box-shadow: 0 10px 30px rgba(0,0,0,0.07);
|
|
}
|
|
.form-control, .form-select {
|
|
border-radius: var(--border-radius-sm);
|
|
padding: 0.75rem 1rem;
|
|
border: 1px solid #e5e5e5;
|
|
}
|
|
.form-control:focus, .form-select:focus {
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 0 0 0.25rem rgba(94, 93, 240, 0.2);
|
|
}
|
|
|
|
/* --- Result Display --- */
|
|
#result-container {
|
|
background-color: #f8f9fa;
|
|
border: 1px solid #e9ecef;
|
|
border-radius: var(--border-radius-md);
|
|
padding: 2rem;
|
|
margin-top: 2rem;
|
|
position: relative;
|
|
white-space: pre-wrap; /* Ensures line breaks are respected */
|
|
font-family: 'Menlo', 'Monaco', monospace;
|
|
font-size: 0.95rem;
|
|
line-height: 1.6;
|
|
color: #212529;
|
|
}
|
|
#result-container.loading {
|
|
min-height: 200px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
#copy-button {
|
|
position: absolute;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
display: none; /* Initially hidden */
|
|
}
|
|
|
|
/* --- Features Section --- */
|
|
.features-section {
|
|
padding: 6rem 0;
|
|
}
|
|
.feature-icon {
|
|
width: 60px;
|
|
height: 60px;
|
|
background-color: var(--primary-color);
|
|
color: #fff;
|
|
border-radius: var(--border-radius-md);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
/* --- Footer --- */
|
|
.footer {
|
|
padding: 3rem 0;
|
|
border-top: 1px solid #e9ecef;
|
|
color: var(--text-light);
|
|
}
|
|
|
|
/* --- Utility --- */
|
|
.mt-6 {
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
/* Dashboard Styles */
|
|
.dashboard-container {
|
|
padding-top: 80px; /* Space for fixed header */
|
|
}
|
|
|
|
.dashboard-header {
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.dashboard-header h1 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.dashboard-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 1.5rem;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.dashboard-card {
|
|
background: #ffffff;
|
|
border-radius: 12px;
|
|
padding: 1.5rem;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.dashboard-card h3 {
|
|
font-size: 1.5rem;
|
|
margin-top: 0;
|
|
margin-bottom: 0.5rem;
|
|
color: #1d1d1f;
|
|
}
|
|
|
|
.dashboard-card p {
|
|
margin-bottom: 1.5rem;
|
|
color: #6e6e73;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.social-connections {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.social-connection {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.status-indicator {
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
padding: 0.3rem 0.6rem;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.status-indicator.connected {
|
|
background-color: #d4edda;
|
|
color: #155724;
|
|
}
|
|
|
|
.status-indicator.not-connected {
|
|
background-color: #f8d7da;
|
|
color: #721c24;
|
|
}
|
|
|
|
.social-btn {
|
|
border: none;
|
|
padding: 0.75rem;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
color: #fff;
|
|
width: 180px;
|
|
}
|
|
|
|
.social-btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 25px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.social-btn.youtube { background-color: #FF0000; }
|
|
.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
|
|
.social-btn.tiktok { background-color: #010101; }
|
|
.social-btn.facebook { background-color: #1877F2; }
|
|
|
|
.btn-secondary {
|
|
background-color: #e7e7f7;
|
|
color: #5E5DF0;
|
|
border: none;
|
|
padding: 0.8rem 1.5rem;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background-color: #dcdcf2;
|
|
}
|
|
|
|
.tools-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.tools-list li {
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.tools-list a {
|
|
color: #5E5DF0;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.tools-list a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Report Section */
|
|
#report-section {
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
#report-content .kpi-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 1rem;
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
#report-content .kpi {
|
|
background-color: #f8f9fa;
|
|
padding: 1rem;
|
|
border-radius: 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
#report-content .kpi .kpi-value {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
#report-content .kpi .kpi-label {
|
|
font-size: 0.9rem;
|
|
color: #6c757d;
|
|
}
|
|
|
|
#report-content h4 {
|
|
margin-top: 2rem;
|
|
border-bottom: 2px solid #e9ecef;
|
|
padding-bottom: 0.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
#report-content .post-list .post-item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
#report-content .post-list .post-thumbnail {
|
|
width: 80px;
|
|
height: 80px;
|
|
object-fit: cover;
|
|
border-radius: 8px;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
#report-content .post-list .post-info .post-caption {
|
|
font-weight: 600;
|
|
}
|
|
|
|
#report-content .post-list .post-info .post-stats {
|
|
font-size: 0.9rem;
|
|
color: #6c757d;
|
|
}
|
|
|
|
/* Strategy Section */
|
|
#strategy-section {
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
#strategy-content ul {
|
|
list-style-type: disc;
|
|
padding-left: 20px;
|
|
}
|