Help.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <!--
  2. Section "Besoin d'aide" de la page d'accueil
  3. -->
  4. <template>
  5. <LayoutContainer>
  6. <v-row class="center-90 mt-6">
  7. <v-col cols="12" lg="6" class="col">
  8. <v-img
  9. src="/images/pages/home/help/Opentalent_a_votre_service.png"
  10. alt="Un homme et une femme tous les deux le sourire aux lèvres se serre la main"
  11. />
  12. </v-col>
  13. <v-col cols="12" lg="6" class="col">
  14. <h3>Notre équipe est à vos côtés pour vous guider</h3>
  15. <p>
  16. Besoin d’aide ? <br />
  17. Vous souhaitez en savoir plus sur nos solutions ou vous avez besoin
  18. d'assistance sur l'utilisation de l'un de nos logiciels ?
  19. </p>
  20. <v-row>
  21. <ul>
  22. <li>Ouvert du lundi au vendredi de 8h30 à 17h30</li>
  23. <li>Support joignable par mail</li>
  24. <li>De nombreux articles tutoriels accessibles 24h/24</li>
  25. </ul>
  26. </v-row>
  27. <v-row>
  28. <v-btn
  29. href="https://ressources.opentalent.fr/"
  30. target="_blank"
  31. class="button-faq"
  32. >
  33. Consulter la FAQ
  34. </v-btn>
  35. </v-row>
  36. </v-col>
  37. </v-row>
  38. </LayoutContainer>
  39. </template>
  40. <script setup lang="ts"></script>
  41. <style scoped lang="scss">
  42. .v-container {
  43. margin: 64px auto 24px auto;
  44. padding: 16px;
  45. max-width: 95%;
  46. .col {
  47. padding: 0 6px;
  48. display: flex;
  49. flex-direction: column;
  50. }
  51. .col:first-child {
  52. align-items: center;
  53. }
  54. .col:nth-child(2) {
  55. padding: 60px;
  56. justify-content: center;
  57. align-items: self-start;
  58. @media (max-width: 600px) {
  59. padding: 12px;
  60. * {
  61. max-width: 100%;
  62. }
  63. }
  64. }
  65. }
  66. li {
  67. margin-left: 28px;
  68. margin-bottom: 15px;
  69. color: var(--primary-color);
  70. font-size: 1.1rem;
  71. }
  72. .v-img {
  73. width: 50rem;
  74. border-radius: 3rem;
  75. }
  76. h3 {
  77. margin-bottom: 0.7rem;
  78. font-weight: 400;
  79. font-size: 2rem;
  80. line-height: 34px;
  81. width: 25rem;
  82. }
  83. p {
  84. width: 25rem;
  85. font-weight: 300;
  86. font-size: 1.1rem;
  87. line-height: 1.4rem;
  88. color: var(--primary-color);
  89. }
  90. ul {
  91. margin-top: 20px;
  92. max-height: 160px;
  93. font-weight: 500;
  94. color: var(--primary-color);
  95. font-size: 1.2rem;
  96. line-height: 1.6rem;
  97. }
  98. .button-faq {
  99. width: 195px;
  100. height: 53px;
  101. background: var(--secondary-color);
  102. border-radius: 6px;
  103. color: var(--on-secondary-color);
  104. padding: 19px 28px;
  105. gap: 9px;
  106. margin-left: auto;
  107. margin-right: auto;
  108. @media (max-width: 1240px) {
  109. margin-top: 24px;
  110. width: 40%;
  111. margin-left: 30%;
  112. }
  113. @media (max-width: 600px) {
  114. width: 90%;
  115. margin-left: 5%;
  116. }
  117. }
  118. @media (max-width: 1240px) {
  119. .v-row {
  120. width: 100%;
  121. margin: 0;
  122. }
  123. .v-img {
  124. width: 40rem;
  125. margin-left: auto;
  126. margin-right: auto;
  127. margin-top: 4rem;
  128. }
  129. h4 {
  130. font-size: 2rem;
  131. text-align: left;
  132. width: 30rem;
  133. margin-left: auto;
  134. margin-right: auto;
  135. }
  136. p {
  137. width: 30rem;
  138. font-weight: 300;
  139. font-size: 1.1rem;
  140. line-height: 1.4rem;
  141. color: var(--primary-color);
  142. margin-left: auto;
  143. margin-right: auto;
  144. }
  145. ul {
  146. margin-left: auto;
  147. margin-right: auto;
  148. width: 30rem;
  149. }
  150. }
  151. </style>