webinaires.vue 604 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!--
  2. Page FAQ
  3. -->
  4. <template>
  5. <LayoutNavigation />
  6. <CommonStickyMenu />
  7. <WebinaireBanner />
  8. <WebinaireCatalogue />
  9. <WebinaireFAQ />
  10. <LayoutFooterPrefooter />
  11. <LayoutFooter />
  12. </template>
  13. <script setup>
  14. </script>
  15. <style scoped>
  16. /* TODO: review and harmonize with other titles */
  17. :deep(h2) {
  18. font-size: 1.5rem;
  19. font-weight: normal !important;
  20. line-height: 2rem;
  21. letter-spacing: .1rem;
  22. margin-bottom: 1rem;
  23. }
  24. :deep(h1) {
  25. font-size: 2rem;
  26. line-height: 3.5rem;
  27. letter-spacing: .1rem;
  28. margin-top: 2rem;
  29. margin-bottom: .5rem;
  30. text-transform: uppercase;
  31. }
  32. </style>