| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!--
- Page FAQ
- -->
- <template>
- <LayoutNavigation />
- <CommonStickyMenu />
- <WebinaireBanner />
- <WebinaireCatalogue />
- <WebinaireFAQ />
- <LayoutFooterPrefooter />
- <LayoutFooter />
- </template>
- <script setup>
- </script>
- <style scoped>
- /* TODO: review and harmonize with other titles */
- :deep(h2) {
- font-size: 1.5rem;
- font-weight: normal !important;
- line-height: 2rem;
- letter-spacing: .1rem;
- margin-bottom: 1rem;
- }
- :deep(h1) {
- font-size: 2rem;
- line-height: 3.5rem;
- letter-spacing: .1rem;
- margin-top: 2rem;
- margin-bottom: .5rem;
- text-transform: uppercase;
- }
- </style>
|