chore: Remove screenshot artifacts and backup files
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
|
Before Width: | Height: | Size: 352 KiB |
|
Before Width: | Height: | Size: 488 KiB |
|
Before Width: | Height: | Size: 372 KiB |
|
Before Width: | Height: | Size: 374 KiB |
|
Before Width: | Height: | Size: 406 KiB |
|
Before Width: | Height: | Size: 468 KiB |
|
Before Width: | Height: | Size: 145 KiB |
|
Before Width: | Height: | Size: 206 KiB |
|
Before Width: | Height: | Size: 273 KiB |
|
Before Width: | Height: | Size: 282 KiB |
|
Before Width: | Height: | Size: 286 KiB |
|
Before Width: | Height: | Size: 51 KiB |
|
Before Width: | Height: | Size: 68 KiB |
|
Before Width: | Height: | Size: 97 KiB |
|
Before Width: | Height: | Size: 115 KiB |
|
Before Width: | Height: | Size: 68 KiB |
|
Before Width: | Height: | Size: 81 KiB |
|
Before Width: | Height: | Size: 122 KiB |
|
Before Width: | Height: | Size: 178 KiB |
|
Before Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 148 KiB |
|
Before Width: | Height: | Size: 79 KiB |
|
Before Width: | Height: | Size: 166 KiB |
|
Before Width: | Height: | Size: 266 KiB |
|
Before Width: | Height: | Size: 93 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 322 KiB |
|
Before Width: | Height: | Size: 308 KiB |
|
Before Width: | Height: | Size: 337 KiB |
|
Before Width: | Height: | Size: 482 KiB |
|
Before Width: | Height: | Size: 483 KiB |
|
Before Width: | Height: | Size: 503 KiB |
|
Before Width: | Height: | Size: 520 KiB |
|
Before Width: | Height: | Size: 146 KiB |
|
Before Width: | Height: | Size: 270 KiB |
|
Before Width: | Height: | Size: 452 KiB |
|
Before Width: | Height: | Size: 300 KiB |
|
Before Width: | Height: | Size: 319 KiB |
|
Before Width: | Height: | Size: 319 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,63 +0,0 @@
|
||||
/* Enhanced FAQ Styles - Iterations 3-10 Combined */
|
||||
|
||||
/* Stronger question typography */
|
||||
.accordion-toggle p {
|
||||
margin: 0;
|
||||
color: var(--color-text-primary);
|
||||
flex: 1;
|
||||
transition: color 0.3s ease;
|
||||
font-weight: 600;
|
||||
font-size: 17px;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
/* Checkmark for open state */
|
||||
.accordion-item[open] .accordion-toggle::before {
|
||||
content: '✓';
|
||||
background: linear-gradient(135deg, var(--color-success), #0d9488);
|
||||
color: white;
|
||||
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
|
||||
}
|
||||
|
||||
/* Divider between question and answer */
|
||||
.accordion-item[open] .accordion-toggle {
|
||||
border-bottom: 1px solid rgba(129, 140, 248, 0.2);
|
||||
padding-bottom: var(--space-l);
|
||||
}
|
||||
|
||||
/* Missing closing bracket and rotation */
|
||||
.accordion-chevron {
|
||||
color: var(--color-accent);
|
||||
font-size: 20px;
|
||||
transition: transform 0.3s ease;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
[open] .accordion-chevron {
|
||||
transform: rotate(180deg);
|
||||
color: var(--color-success);
|
||||
}
|
||||
|
||||
/* Better answer styling */
|
||||
.accordion-content {
|
||||
padding: var(--space-l) var(--space-xl) var(--space-xl) var(--space-xl);
|
||||
color: var(--color-text-secondary);
|
||||
margin-left: 48px;
|
||||
animation: slideDown 0.3s ease;
|
||||
}
|
||||
|
||||
/* Number indicator for FAQ items */
|
||||
.accordion-toggle::after {
|
||||
content: attr(data-index);
|
||||
position: absolute;
|
||||
right: 60px;
|
||||
font-size: 11px;
|
||||
color: var(--color-text-tertiary);
|
||||
font-weight: 600;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.accordion-item:hover .accordion-toggle::after {
|
||||
opacity: 1;
|
||||
color: var(--color-accent);
|
||||
}
|
||||