| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <template>
- <div class="alt-theme main my-2">
- <div class="d-flex flex-row">
- <div class="d-flex flex-column">
- <LayoutUISubTitle class="mt-12 ml-3">
- Vous voulez tirer le meilleur de notre logiciel ?
- </LayoutUISubTitle>
- <h3 class="mt-6">
- Quelle que soit votre demande, notre équipe est à vos côtés pour
- vous guider
- </h3>
- <v-btn
- href="https://ressources.opentalent.fr/"
- target="_blank"
- class="btn-faq inv-theme"
- >
- Consulter notre FAQ
- </v-btn>
- </div>
- <div class="d-flex flex-column justify-center links">
- <v-btn
- href="https://ressources.opentalent.fr/pages/viewpage.action?pageId=75170564"
- target="_blank"
- >
- <div>
- <v-img
- src="/images/icons/tuto.svg"
- />
- <p>
- De nombreux articles tutoriels accessibles 24h/24
- </p>
- </div>
- </v-btn>
- <v-btn
- href="https://ressources.opentalent.fr/?contact"
- target="_blank"
- >
- <div>
- <v-img
- src="/images/icons/faq.svg"
- />
- <p class="text-btn">
- Support accessible du lundi au vendredi via l’outil en
- ligne
- </p>
- </div>
- </v-btn>
- </div>
- </div>
- </div>
- </template>
- <style scoped lang="scss">
- .flex-row {
- position: relative;
- z-index: 2;
- }
- .main {
- min-height: 600px;
- background-image: url("/images/logiciels/school/faq.jpg");
- background-size: cover;
- background-position: center 15%;
- background-repeat: no-repeat;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- position: relative;
- }
- .main::after {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.6);
- z-index: 1;
- }
- h3 {
- margin-left: 3rem;
- margin-right: 15rem;
- width: 28rem;
- margin-bottom: 3rem;
- font-size: 30px;
- font-weight: 400;
- }
- .btn-faq {
- width: 14rem;
- height: 3.5rem;
- margin-left: 3rem;
- border-radius: 6px;
- font-weight: 500;
- font-size: 0.8rem;
- z-index: 1;
- text-transform: none !important;
- line-height: 1rem;
- }
- .links {
- .v-btn {
- z-index: 1;
- width: 23rem;
- height: 5.5rem;
- margin-left: 3rem;
- border-radius: 6px;
- background: transparent;
- font-weight: 500;
- font-size: 0.8rem;
- line-height: 1rem;
- border: 1px var(--on-alt-theme) solid;
- margin-bottom: 2rem;
- text-transform: none !important;
- .v-btn__content>div {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .v-img {
- color: var(--on-alt-theme);
- margin-right: 0.7rem;
- margin-left: 1rem;
- z-index: 1;
- width: 30px;
- }
- p {
- font-weight: 500;
- font-size: 16px;
- line-height: 26px;
- color: var(--on-alt-theme);
- white-space: normal !important;
- text-align: left;
- }
- }
- }
- </style>
|