FAQ.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <template>
  2. <div class="alt-theme main my-2">
  3. <div class="d-flex flex-row">
  4. <div class="d-flex flex-column">
  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. </div>
  20. <div class="d-flex flex-column justify-center 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. />
  29. <p>
  30. De nombreux articles tutoriels accessibles 24h/24
  31. </p>
  32. </div>
  33. </v-btn>
  34. <v-btn
  35. href="https://ressources.opentalent.fr/?contact"
  36. target="_blank"
  37. >
  38. <div>
  39. <v-img
  40. src="/images/icons/faq.svg"
  41. />
  42. <p class="text-btn">
  43. Support accessible du lundi au vendredi via l’outil en
  44. ligne
  45. </p>
  46. </div>
  47. </v-btn>
  48. </div>
  49. </div>
  50. </div>
  51. </template>
  52. <style scoped lang="scss">
  53. .flex-row {
  54. position: relative;
  55. z-index: 2;
  56. }
  57. .main {
  58. min-height: 600px;
  59. background-image: url("/images/logiciels/school/faq.jpg");
  60. background-size: cover;
  61. background-position: center 15%;
  62. background-repeat: no-repeat;
  63. height: 100%;
  64. display: flex;
  65. flex-direction: column;
  66. justify-content: center;
  67. align-items: center;
  68. position: relative;
  69. }
  70. .main::after {
  71. content: "";
  72. position: absolute;
  73. top: 0;
  74. left: 0;
  75. width: 100%;
  76. height: 100%;
  77. background: rgba(0, 0, 0, 0.6);
  78. z-index: 1;
  79. }
  80. h3 {
  81. margin-left: 3rem;
  82. margin-right: 15rem;
  83. width: 28rem;
  84. margin-bottom: 3rem;
  85. font-size: 30px;
  86. font-weight: 400;
  87. }
  88. .btn-faq {
  89. width: 14rem;
  90. height: 3.5rem;
  91. margin-left: 3rem;
  92. border-radius: 6px;
  93. font-weight: 500;
  94. font-size: 0.8rem;
  95. z-index: 1;
  96. text-transform: none !important;
  97. line-height: 1rem;
  98. }
  99. .links {
  100. .v-btn {
  101. z-index: 1;
  102. width: 23rem;
  103. height: 5.5rem;
  104. margin-left: 3rem;
  105. border-radius: 6px;
  106. background: transparent;
  107. font-weight: 500;
  108. font-size: 0.8rem;
  109. line-height: 1rem;
  110. border: 1px var(--on-alt-theme) solid;
  111. margin-bottom: 2rem;
  112. text-transform: none !important;
  113. .v-btn__content>div {
  114. display: flex;
  115. flex-direction: row;
  116. align-items: center;
  117. }
  118. .v-img {
  119. color: var(--on-alt-theme);
  120. margin-right: 0.7rem;
  121. margin-left: 1rem;
  122. z-index: 1;
  123. width: 30px;
  124. }
  125. p {
  126. font-weight: 500;
  127. font-size: 16px;
  128. line-height: 26px;
  129. color: var(--on-alt-theme);
  130. white-space: normal !important;
  131. text-align: left;
  132. }
  133. }
  134. }
  135. </style>