FAQ.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <template>
  2. <div class="alt-theme main my-2">
  3. <div class="center-90">
  4. <v-row class="subtitle">
  5. <v-col cols="12">
  6. <LayoutUISubTitle class="mt-12 ml-3">
  7. Vous voulez tirer le meilleur de notre logiciel ?
  8. </LayoutUISubTitle>
  9. </v-col>
  10. </v-row>
  11. </div>
  12. <v-row>
  13. <v-col cols="12" lg="6">
  14. <h3 class="mt-12">
  15. Quelle que soit votre demande, notre équipe est à vos côtés pour vous
  16. guider
  17. </h3>
  18. </v-col>
  19. <v-col cols="12" lg="6" class="links">
  20. <v-btn
  21. href="https://ressources.opentalent.fr/space/FAQ/2496592/Tutoriels+vid%C3%A9os"
  22. aria-label="De nombreux articles tutoriels accessibles 24h/24"
  23. target="_blank"
  24. >
  25. <div>
  26. <v-img
  27. src="/images/components/faq/Icone_tutoriels-videos.svg"
  28. alt="Icône livre avec logo Youtube"
  29. />
  30. <p>De nombreux articles tutoriels accessibles 24h/24</p>
  31. </div>
  32. </v-btn>
  33. <v-btn
  34. href="https://ressources.opentalent.fr/"
  35. target="_blank"
  36. aria-label="Support accessible du lundi au vendredi via l’outil en ligne"
  37. >
  38. <div>
  39. <v-img
  40. src="/images/components/faq/Icone_FAQ.svg"
  41. alt="Icône deux bulles de conversation avec indiquée FAQ à l’intérieur d’une"
  42. />
  43. <p class="text-btn">
  44. Support accessible du lundi au vendredi via l’outil en ligne
  45. </p>
  46. </div>
  47. </v-btn>
  48. </v-col>
  49. </v-row>
  50. </div>
  51. </template>
  52. <script setup lang="ts">
  53. </script>
  54. <style scoped lang="scss">
  55. .v-row {
  56. position: relative;
  57. z-index: 2;
  58. max-width: 100%;
  59. }
  60. .subtitle {
  61. width: 100%;
  62. }
  63. .main {
  64. min-height: 450px;
  65. background-image: url('/images/components/faq/Orchestre_de_rue_avec_danseuse.jpg');
  66. background-size: cover;
  67. background-position: center 15%;
  68. background-repeat: no-repeat;
  69. height: 100%;
  70. display: flex;
  71. flex-direction: column;
  72. justify-content: center;
  73. align-items: center;
  74. position: relative;
  75. }
  76. .main::after {
  77. content: '';
  78. position: absolute;
  79. top: 0;
  80. left: 0;
  81. width: 100%;
  82. height: 100%;
  83. background: rgba(0, 0, 0, 0.6);
  84. z-index: 1;
  85. }
  86. h3 {
  87. margin-left: 20px;
  88. margin-right: 15rem;
  89. width: 28rem;
  90. margin-bottom: 3rem;
  91. font-size: 30px;
  92. font-weight: 400;
  93. @media (max-width: 600px) {
  94. width: 90%;
  95. margin-right: auto;
  96. margin-left: auto;
  97. }
  98. }
  99. .btn-faq {
  100. width: 14rem;
  101. height: 3.5rem;
  102. margin-left: 20px;
  103. border-radius: 6px;
  104. font-weight: 500;
  105. font-size: 0.8rem;
  106. z-index: 2;
  107. text-transform: none !important;
  108. line-height: 1rem;
  109. margin-right: auto;
  110. @media (max-width: 1240px) {
  111. width: 40%;
  112. margin-left: 30%;
  113. }
  114. @media (max-width: 600px) {
  115. width: 90%;
  116. margin-left: 5%;
  117. }
  118. }
  119. .links {
  120. justify-content: center;
  121. display: flex;
  122. flex-direction: column;
  123. align-items: center;
  124. @media (max-width: 1240px) {
  125. flex-direction: row;
  126. }
  127. @media (max-width: 1240px) {
  128. flex-direction: column;
  129. }
  130. .v-btn {
  131. z-index: 2;
  132. width: 23rem;
  133. height: 5.5rem;
  134. margin-left: 3rem;
  135. border-radius: 6px;
  136. font-weight: 500;
  137. font-size: 0.8rem;
  138. line-height: 1rem;
  139. border: 1px var(--on-alt-theme) solid;
  140. margin-bottom: 2rem;
  141. text-transform: none !important;
  142. background: rgba(0, 0, 0, 0.6);
  143. .v-btn__content > div {
  144. display: flex;
  145. flex-direction: row;
  146. align-items: center;
  147. }
  148. .v-img {
  149. color: var(--on-alt-theme);
  150. margin-right: 0.7rem;
  151. margin-left: 1rem;
  152. z-index: 1;
  153. width: 30px;
  154. }
  155. p {
  156. font-weight: 500;
  157. font-size: 16px;
  158. line-height: 26px;
  159. color: var(--on-alt-theme);
  160. white-space: normal !important;
  161. text-align: left;
  162. }
  163. @media (max-width: 1240px) {
  164. max-width: 40%;
  165. margin: 12px 5%;
  166. height: 8rem;
  167. .v-btn__content > div {
  168. display: flex;
  169. flex-direction: column;
  170. align-items: center;
  171. }
  172. .v-img {
  173. margin-bottom: 6px;
  174. }
  175. p {
  176. text-align: center;
  177. }
  178. }
  179. @media (max-width: 600px) {
  180. max-width: 90%;
  181. }
  182. }
  183. }
  184. </style>