FAQ.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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"></script>
  53. <style scoped lang="scss">
  54. .v-row {
  55. position: relative;
  56. z-index: 2;
  57. max-width: 100%;
  58. }
  59. .subtitle {
  60. width: 100%;
  61. }
  62. .main {
  63. min-height: 450px;
  64. background-image: url('/images/components/faq/Orchestre_de_rue_avec_danseuse.jpg');
  65. background-size: cover;
  66. background-position: center 15%;
  67. background-repeat: no-repeat;
  68. height: 100%;
  69. display: flex;
  70. flex-direction: column;
  71. justify-content: center;
  72. align-items: center;
  73. position: relative;
  74. }
  75. .main::after {
  76. content: '';
  77. position: absolute;
  78. top: 0;
  79. left: 0;
  80. width: 100%;
  81. height: 100%;
  82. background: rgba(0, 0, 0, 0.6);
  83. z-index: 1;
  84. }
  85. h3 {
  86. margin-left: 20px;
  87. margin-right: 15rem;
  88. width: 28rem;
  89. margin-bottom: 3rem;
  90. font-size: 30px;
  91. font-weight: 400;
  92. @media (max-width: 600px) {
  93. width: 90%;
  94. margin-right: auto;
  95. margin-left: auto;
  96. }
  97. }
  98. .btn-faq {
  99. width: 14rem;
  100. height: 3.5rem;
  101. margin-left: 20px;
  102. border-radius: 6px;
  103. font-weight: 500;
  104. font-size: 0.8rem;
  105. z-index: 2;
  106. text-transform: none !important;
  107. line-height: 1rem;
  108. margin-right: auto;
  109. @media (max-width: 1240px) {
  110. width: 40%;
  111. margin-left: 30%;
  112. }
  113. @media (max-width: 600px) {
  114. width: 90%;
  115. margin-left: 5%;
  116. }
  117. }
  118. .links {
  119. justify-content: center;
  120. display: flex;
  121. flex-direction: column;
  122. align-items: center;
  123. @media (max-width: 1240px) {
  124. flex-direction: row;
  125. }
  126. @media (max-width: 1240px) {
  127. flex-direction: column;
  128. }
  129. .v-btn {
  130. z-index: 2;
  131. width: 23rem;
  132. height: 5.5rem;
  133. margin-left: 3rem;
  134. border-radius: 6px;
  135. font-weight: 500;
  136. font-size: 0.8rem;
  137. line-height: 1rem;
  138. border: 1px var(--on-alt-theme) solid;
  139. margin-bottom: 2rem;
  140. text-transform: none !important;
  141. background: rgba(0, 0, 0, 0.6);
  142. .v-btn__content > div {
  143. display: flex;
  144. flex-direction: row;
  145. align-items: center;
  146. }
  147. .v-img {
  148. color: var(--on-alt-theme);
  149. margin-right: 0.7rem;
  150. margin-left: 1rem;
  151. z-index: 1;
  152. width: 30px;
  153. }
  154. p {
  155. font-weight: 500;
  156. font-size: 16px;
  157. line-height: 26px;
  158. color: var(--on-alt-theme);
  159. white-space: normal !important;
  160. text-align: left;
  161. }
  162. @media (max-width: 1240px) {
  163. max-width: 40%;
  164. margin: 12px 5%;
  165. height: 8rem;
  166. .v-btn__content > div {
  167. display: flex;
  168. flex-direction: column;
  169. align-items: center;
  170. }
  171. .v-img {
  172. margin-bottom: 6px;
  173. }
  174. p {
  175. text-align: center;
  176. }
  177. }
  178. @media (max-width: 600px) {
  179. max-width: 90%;
  180. }
  181. }
  182. }
  183. </style>