Add homepage, tarifs, legal pages, navbar, footer and full test coverage
- Homepage: hero, how it works (buyer/organizer), features, CTA
- Tarifs: 3 plans (Gratuit, Basique 10€, Sur-mesure), JSON-LD Product
- Legal pages: mentions legales, CGU (tabs buyer/organizer), CGV, RGPD, cookies, hosting
- Navbar: neubrutalism style, logo liip, mobile menu, SEO attributes
- Footer: contact, description, legal links, tarifs
- Sitemap: add /tarifs and /sitemap-orgas-{page}.xml
- Liip Imagine: remove S3, webp format on all filters
- Tests: full coverage for all controllers, services, repositories
- Fix CSP: replace inline onclick with data-tab JS
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-19 00:01:58 +01:00
|
|
|
@import "tailwindcss";
|
2026-03-18 22:44:25 +01:00
|
|
|
@import 'https://fonts.googleapis.com/css2?family=Intel+One+Mono:ital,wght@0,300..700;1,300..700&display=swap';
|
2026-03-20 10:45:54 +01:00
|
|
|
@source "../templates";
|
Add Event entity, create event page, and custom WYSIWYG editor component
- Create Event entity with fields: account, title, description (text), startAt, endAt, address, zipcode, city, eventMainPicture (VichUploader), isOnline, createdAt, updatedAt
- Create EventRepository
- Add migration for event table with all columns
- Add "Creer un evenement" button on account events tab
- Add create event page (/mon-compte/evenement/creer) with full form
- Build custom web component <e-ticket-editor> WYSIWYG editor:
- Toolbar: bold, italic, underline, paragraph, bullet list, remove formatting
- contentEditable div with HTML sync to hidden textarea
- HTML sanitizer (strips disallowed tags, XSS safe)
- Neo-brutalist CSS styling
- CSP compliant (no inline styles)
- Register editor in app.js via customElements.define
- Add editor CSS in app.scss
- Add 16 Event entity tests (all fields + isOnline + picture upload + updatedAt)
- Add 16 editor JS tests (sanitizer + custom element lifecycle)
- Add 3 AccountController tests (create event page, submit, access control)
- Update placeholders to generic examples (no association-specific data)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 12:49:24 +01:00
|
|
|
|
|
|
|
|
/* ===== E-Ticket Editor ===== */
|
|
|
|
|
e-ticket-editor {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ete-toolbar {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 0;
|
|
|
|
|
border: 3px solid #111827;
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
background: #f9fafb;
|
|
|
|
|
padding: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ete-btn {
|
|
|
|
|
width: 2.25rem;
|
|
|
|
|
height: 2.25rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
border: 2px solid transparent;
|
|
|
|
|
background: transparent;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
transition: all 0.1s;
|
|
|
|
|
}
|
2026-03-20 16:18:45 +01:00
|
|
|
|
Add Event entity, create event page, and custom WYSIWYG editor component
- Create Event entity with fields: account, title, description (text), startAt, endAt, address, zipcode, city, eventMainPicture (VichUploader), isOnline, createdAt, updatedAt
- Create EventRepository
- Add migration for event table with all columns
- Add "Creer un evenement" button on account events tab
- Add create event page (/mon-compte/evenement/creer) with full form
- Build custom web component <e-ticket-editor> WYSIWYG editor:
- Toolbar: bold, italic, underline, paragraph, bullet list, remove formatting
- contentEditable div with HTML sync to hidden textarea
- HTML sanitizer (strips disallowed tags, XSS safe)
- Neo-brutalist CSS styling
- CSP compliant (no inline styles)
- Register editor in app.js via customElements.define
- Add editor CSS in app.scss
- Add 16 Event entity tests (all fields + isOnline + picture upload + updatedAt)
- Add 16 editor JS tests (sanitizer + custom element lifecycle)
- Add 3 AccountController tests (create event page, submit, access control)
- Update placeholders to generic examples (no association-specific data)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 12:49:24 +01:00
|
|
|
.ete-btn:hover {
|
|
|
|
|
background: #fabf04;
|
|
|
|
|
border-color: #111827;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ete-separator {
|
|
|
|
|
width: 1px;
|
|
|
|
|
background: #d1d5db;
|
|
|
|
|
margin: 0.25rem 0.35rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ete-content {
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-height: 10rem;
|
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
|
border: 3px solid #111827;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
outline: none;
|
|
|
|
|
background: white;
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
}
|
2026-03-20 16:18:45 +01:00
|
|
|
|
Add Event entity, create event page, and custom WYSIWYG editor component
- Create Event entity with fields: account, title, description (text), startAt, endAt, address, zipcode, city, eventMainPicture (VichUploader), isOnline, createdAt, updatedAt
- Create EventRepository
- Add migration for event table with all columns
- Add "Creer un evenement" button on account events tab
- Add create event page (/mon-compte/evenement/creer) with full form
- Build custom web component <e-ticket-editor> WYSIWYG editor:
- Toolbar: bold, italic, underline, paragraph, bullet list, remove formatting
- contentEditable div with HTML sync to hidden textarea
- HTML sanitizer (strips disallowed tags, XSS safe)
- Neo-brutalist CSS styling
- CSP compliant (no inline styles)
- Register editor in app.js via customElements.define
- Add editor CSS in app.scss
- Add 16 Event entity tests (all fields + isOnline + picture upload + updatedAt)
- Add 16 editor JS tests (sanitizer + custom element lifecycle)
- Add 3 AccountController tests (create event page, submit, access control)
- Update placeholders to generic examples (no association-specific data)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 12:49:24 +01:00
|
|
|
.ete-content:focus {
|
|
|
|
|
border-color: #4f46e5;
|
|
|
|
|
}
|
2026-03-20 16:18:45 +01:00
|
|
|
|
Add Event entity, create event page, and custom WYSIWYG editor component
- Create Event entity with fields: account, title, description (text), startAt, endAt, address, zipcode, city, eventMainPicture (VichUploader), isOnline, createdAt, updatedAt
- Create EventRepository
- Add migration for event table with all columns
- Add "Creer un evenement" button on account events tab
- Add create event page (/mon-compte/evenement/creer) with full form
- Build custom web component <e-ticket-editor> WYSIWYG editor:
- Toolbar: bold, italic, underline, paragraph, bullet list, remove formatting
- contentEditable div with HTML sync to hidden textarea
- HTML sanitizer (strips disallowed tags, XSS safe)
- Neo-brutalist CSS styling
- CSP compliant (no inline styles)
- Register editor in app.js via customElements.define
- Add editor CSS in app.scss
- Add 16 Event entity tests (all fields + isOnline + picture upload + updatedAt)
- Add 16 editor JS tests (sanitizer + custom element lifecycle)
- Add 3 AccountController tests (create event page, submit, access control)
- Update placeholders to generic examples (no association-specific data)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 12:49:24 +01:00
|
|
|
.ete-content:empty::before {
|
|
|
|
|
content: attr(data-placeholder);
|
|
|
|
|
color: #9ca3af;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
2026-03-20 16:18:45 +01:00
|
|
|
|
|
|
|
|
.ete-content ul {
|
|
|
|
|
list-style: disc;
|
|
|
|
|
padding-left: 1.5rem;
|
|
|
|
|
margin: 0.5rem 0;
|
|
|
|
|
}
|
2026-03-20 15:05:26 +01:00
|
|
|
|
Migrate inline styles to CSS classes: error pages, attestation/not_found, register_success, email_verified
- Add reusable CSS classes in app.scss: layout, headings, cards, flash messages, forms, buttons, tables, badges, section headers, dividers
- Migrate 5 templates to use CSS classes instead of inline styles
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 15:15:56 +01:00
|
|
|
/* ===== Layout ===== */
|
2026-03-20 16:18:45 +01:00
|
|
|
.page-container {
|
|
|
|
|
max-width: 50rem;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 3rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-container-lg {
|
|
|
|
|
max-width: 60rem;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 3rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-container-sm {
|
|
|
|
|
max-width: 36rem;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 3rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-container-xs {
|
|
|
|
|
max-width: 28rem;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 3rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-container-md {
|
|
|
|
|
max-width: 40rem;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 3rem 1rem;
|
|
|
|
|
}
|
Migrate inline styles to CSS classes: error pages, attestation/not_found, register_success, email_verified
- Add reusable CSS classes in app.scss: layout, headings, cards, flash messages, forms, buttons, tables, badges, section headers, dividers
- Migrate 5 templates to use CSS classes instead of inline styles
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 15:15:56 +01:00
|
|
|
|
|
|
|
|
/* ===== Headings ===== */
|
2026-03-20 16:18:45 +01:00
|
|
|
.heading-page {
|
|
|
|
|
border-bottom: 4px solid #111827;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
Migrate inline styles to CSS classes: error pages, attestation/not_found, register_success, email_verified
- Add reusable CSS classes in app.scss: layout, headings, cards, flash messages, forms, buttons, tables, badges, section headers, dividers
- Migrate 5 templates to use CSS classes instead of inline styles
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 15:15:56 +01:00
|
|
|
|
|
|
|
|
/* ===== Cards ===== */
|
2026-03-20 16:18:45 +01:00
|
|
|
.card-brutal {
|
|
|
|
|
border: 4px solid #111827;
|
|
|
|
|
box-shadow: 6px 6px 0 rgb(0 0 0 / 100%);
|
|
|
|
|
background: white;
|
|
|
|
|
padding: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-brutal-lg {
|
|
|
|
|
border: 4px solid #111827;
|
|
|
|
|
box-shadow: 6px 6px 0 rgb(0 0 0 / 100%);
|
|
|
|
|
background: white;
|
|
|
|
|
padding: 2.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-brutal-green {
|
|
|
|
|
border: 4px solid #111827;
|
|
|
|
|
box-shadow: 4px 4px 0 rgb(0 0 0 / 100%);
|
|
|
|
|
background: #d1fae5;
|
|
|
|
|
padding: 1rem 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-brutal-red {
|
|
|
|
|
border: 4px solid #111827;
|
|
|
|
|
box-shadow: 4px 4px 0 rgb(0 0 0 / 100%);
|
|
|
|
|
background: #fee2e2;
|
|
|
|
|
padding: 1rem 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-brutal-yellow {
|
|
|
|
|
border: 4px solid #111827;
|
|
|
|
|
background: #fabf04;
|
|
|
|
|
padding: 1rem 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-brutal-warn {
|
|
|
|
|
border: 4px solid #111827;
|
|
|
|
|
box-shadow: 6px 6px 0 rgb(0 0 0 / 100%);
|
|
|
|
|
background: #fef3c7;
|
|
|
|
|
padding: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-brutal-info {
|
|
|
|
|
border: 4px solid #111827;
|
|
|
|
|
background: #f9fafb;
|
|
|
|
|
padding: 1.5rem;
|
|
|
|
|
box-shadow: 6px 6px 0 rgb(0 0 0 / 100%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-brutal-error {
|
|
|
|
|
border: 4px solid #991b1b;
|
|
|
|
|
box-shadow: 6px 6px 0 rgb(0 0 0 / 100%);
|
|
|
|
|
background: #fee2e2;
|
|
|
|
|
padding: 1.5rem;
|
|
|
|
|
}
|
Migrate inline styles to CSS classes: error pages, attestation/not_found, register_success, email_verified
- Add reusable CSS classes in app.scss: layout, headings, cards, flash messages, forms, buttons, tables, badges, section headers, dividers
- Migrate 5 templates to use CSS classes instead of inline styles
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 15:15:56 +01:00
|
|
|
|
|
|
|
|
/* ===== Flash messages ===== */
|
2026-03-20 16:18:45 +01:00
|
|
|
.flash-success {
|
|
|
|
|
border: 4px solid #111827;
|
|
|
|
|
box-shadow: 4px 4px 0 rgb(0 0 0 / 100%);
|
|
|
|
|
background: #d1fae5;
|
|
|
|
|
padding: 1rem 1.5rem;
|
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flash-error {
|
|
|
|
|
border: 4px solid #111827;
|
|
|
|
|
box-shadow: 4px 4px 0 rgb(0 0 0 / 100%);
|
|
|
|
|
background: #fee2e2;
|
|
|
|
|
padding: 1rem 1.5rem;
|
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
}
|
Migrate inline styles to CSS classes: error pages, attestation/not_found, register_success, email_verified
- Add reusable CSS classes in app.scss: layout, headings, cards, flash messages, forms, buttons, tables, badges, section headers, dividers
- Migrate 5 templates to use CSS classes instead of inline styles
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 15:15:56 +01:00
|
|
|
|
|
|
|
|
/* ===== Forms ===== */
|
2026-03-20 16:18:45 +01:00
|
|
|
.form-label {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
|
border: 3px solid #111827;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-textarea {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
|
border: 3px solid #111827;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
outline: none;
|
|
|
|
|
resize: vertical;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-file {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
|
border: 3px solid #111827;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
outline: none;
|
|
|
|
|
background: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-col {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-group {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 200px;
|
|
|
|
|
}
|
Migrate inline styles to CSS classes: error pages, attestation/not_found, register_success, email_verified
- Add reusable CSS classes in app.scss: layout, headings, cards, flash messages, forms, buttons, tables, badges, section headers, dividers
- Migrate 5 templates to use CSS classes instead of inline styles
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 15:15:56 +01:00
|
|
|
|
|
|
|
|
/* ===== Buttons ===== */
|
2026-03-20 16:18:45 +01:00
|
|
|
.btn-brutal {
|
|
|
|
|
padding: 0.75rem 2rem;
|
|
|
|
|
border: 3px solid #111827;
|
|
|
|
|
box-shadow: 4px 4px 0 rgb(0 0 0 / 100%);
|
|
|
|
|
background: #fabf04;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-brutal:hover {
|
|
|
|
|
background: #4f46e5;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-brutal-full {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0.75rem 2rem;
|
|
|
|
|
border: 3px solid #111827;
|
|
|
|
|
box-shadow: 4px 4px 0 rgb(0 0 0 / 100%);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-brutal-dark {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0.75rem 2rem;
|
|
|
|
|
border: 3px solid #111827;
|
|
|
|
|
box-shadow: 4px 4px 0 rgb(0 0 0 / 100%);
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
Migrate inline styles to CSS classes: error pages, attestation/not_found, register_success, email_verified
- Add reusable CSS classes in app.scss: layout, headings, cards, flash messages, forms, buttons, tables, badges, section headers, dividers
- Migrate 5 templates to use CSS classes instead of inline styles
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 15:15:56 +01:00
|
|
|
|
|
|
|
|
/* ===== Tables ===== */
|
2026-03-20 16:18:45 +01:00
|
|
|
.table-brutal {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-brutal th {
|
|
|
|
|
padding: 0.5rem 0;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-brutal td {
|
|
|
|
|
padding: 0.5rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-brutal tr {
|
|
|
|
|
border-bottom: 1px solid #e5e7eb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-brutal tr:last-child {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
Migrate inline styles to CSS classes: error pages, attestation/not_found, register_success, email_verified
- Add reusable CSS classes in app.scss: layout, headings, cards, flash messages, forms, buttons, tables, badges, section headers, dividers
- Migrate 5 templates to use CSS classes instead of inline styles
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 15:15:56 +01:00
|
|
|
|
|
|
|
|
/* ===== Badges ===== */
|
2026-03-20 16:18:45 +01:00
|
|
|
.badge-green {
|
|
|
|
|
background: #d1fae5;
|
|
|
|
|
border: 2px solid #111827;
|
|
|
|
|
padding: 0.15rem 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.badge-red {
|
|
|
|
|
background: #fee2e2;
|
|
|
|
|
border: 2px solid #111827;
|
|
|
|
|
padding: 0.15rem 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.badge-yellow {
|
|
|
|
|
background: #fef3c7;
|
|
|
|
|
border: 2px solid #111827;
|
|
|
|
|
padding: 0.15rem 0.5rem;
|
|
|
|
|
}
|
Migrate inline styles to CSS classes: error pages, attestation/not_found, register_success, email_verified
- Add reusable CSS classes in app.scss: layout, headings, cards, flash messages, forms, buttons, tables, badges, section headers, dividers
- Migrate 5 templates to use CSS classes instead of inline styles
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 15:15:56 +01:00
|
|
|
|
|
|
|
|
/* ===== Section headers ===== */
|
2026-03-20 16:18:45 +01:00
|
|
|
.section-header {
|
|
|
|
|
padding: 0.75rem 1.5rem;
|
|
|
|
|
background: #111827;
|
|
|
|
|
}
|
Migrate inline styles to CSS classes: error pages, attestation/not_found, register_success, email_verified
- Add reusable CSS classes in app.scss: layout, headings, cards, flash messages, forms, buttons, tables, badges, section headers, dividers
- Migrate 5 templates to use CSS classes instead of inline styles
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 15:15:56 +01:00
|
|
|
|
|
|
|
|
/* ===== Dividers ===== */
|
2026-03-20 16:18:45 +01:00
|
|
|
.divider {
|
|
|
|
|
flex: 1;
|
|
|
|
|
height: 3px;
|
|
|
|
|
background: #111827;
|
|
|
|
|
}
|
Migrate inline styles to CSS classes: error pages, attestation/not_found, register_success, email_verified
- Add reusable CSS classes in app.scss: layout, headings, cards, flash messages, forms, buttons, tables, badges, section headers, dividers
- Migrate 5 templates to use CSS classes instead of inline styles
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 15:15:56 +01:00
|
|
|
|
2026-03-20 15:28:53 +01:00
|
|
|
/* ===== Social icons ===== */
|
2026-03-20 16:18:45 +01:00
|
|
|
.bg-instagram {
|
|
|
|
|
background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
|
|
|
|
|
}
|
2026-03-20 15:28:53 +01:00
|
|
|
|
|
|
|
|
/* ===== Detail table ===== */
|
2026-03-20 16:18:45 +01:00
|
|
|
.detail-table {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.detail-table td,
|
|
|
|
|
.detail-table th {
|
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.detail-table tr {
|
|
|
|
|
border-bottom: 1px solid #e5e7eb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.detail-table tr:last-child {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
2026-03-20 15:28:53 +01:00
|
|
|
|
2026-03-20 18:48:01 +01:00
|
|
|
/* ===== Leaflet custom marker ===== */
|
|
|
|
|
.leaflet-marker-custom {
|
|
|
|
|
background: none !important;
|
|
|
|
|
border: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-20 15:05:26 +01:00
|
|
|
/* ===== Marquee ===== */
|
|
|
|
|
@keyframes marquee {
|
|
|
|
|
0% { transform: translateX(0); }
|
|
|
|
|
100% { transform: translateX(-50%); }
|
|
|
|
|
}
|
2026-03-20 16:18:45 +01:00
|
|
|
|
2026-03-20 15:05:26 +01:00
|
|
|
.animate-marquee {
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 200%;
|
|
|
|
|
animation: marquee 40s linear infinite;
|
|
|
|
|
}
|