FAQ.vue 4.0 KB

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