Pyramide.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <div id="détails">
  3. <LayoutContainer>
  4. <v-container>
  5. <v-row class="mt-12">
  6. <LayoutUISubTitle
  7. :iconSize="6"
  8. :iconClasses="iconClasses"
  9. :titleText="'Un réseau pyramidal '"
  10. :iconColor="'#E34461'"
  11. />
  12. </v-row>
  13. <v-row>
  14. <v-col cols="12" lg="6" md="6">
  15. <LayoutUITitle
  16. title="Opentalent Manager, un logiciel adapté à chacun "
  17. />
  18. <p class="pyramide-details ml-3 mt-6">Notre système s'adapte à toutes les structures de réseau pyramidal, quel que soit le nombre de niveau.</p>
  19. </v-col>
  20. <v-col cols="12" lg="6" md="6">
  21. <v-img
  22. src="/images/logiciels/manager/reseau.png"
  23. class="schema-manager"
  24. />
  25. </v-col>
  26. </v-row>
  27. </v-container>
  28. </LayoutContainer>
  29. </div>
  30. </template>
  31. <script setup></script>
  32. <style scoped>
  33. .pyramide-details {
  34. color: #071B1F;
  35. font-size: 2.125rem;
  36. font-style: normal;
  37. font-weight: 400;
  38. line-height: 2.375rem;
  39. width: 40rem;
  40. }
  41. .v-row {
  42. margin-top: 0px !important;
  43. margin-left: auto;
  44. margin-right: auto;
  45. }
  46. .schema-manager {
  47. }
  48. </style>