FAQ.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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/pages/viewpage.action?pageId=75170564"
  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/?contact"
  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: 3rem;
  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: 3rem;
  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. @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. background: transparent;
  129. font-weight: 500;
  130. font-size: 0.8rem;
  131. line-height: 1rem;
  132. border: 1px var(--on-alt-theme) solid;
  133. margin-bottom: 2rem;
  134. text-transform: none !important;
  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>
  177. <script setup lang="ts">
  178. </script>