FAQ.vue 4.0 KB

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