Pyramide.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <div id="détails">
  3. <LayoutContainer>
  4. <v-row class="mt-12 custom-row">
  5. <LayoutUISubTitle
  6. :iconSize="6"
  7. :iconClasses="iconClasses"
  8. :titleText="'Un réseau pyramidal '"
  9. :iconColor="'#E34461'"
  10. />
  11. </v-row>
  12. <v-row class="custom-row">
  13. <v-col cols="12" lg="6" md="6">
  14. <LayoutUITitle
  15. title="Opentalent Manager, un logiciel adapté à chacun "
  16. />
  17. <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>
  18. </v-col>
  19. <v-col cols="12" lg="6" md="6">
  20. <v-img
  21. src="/images/logiciels/manager/reseau.png"
  22. class="schema-manager"
  23. />
  24. </v-col>
  25. </v-row>
  26. </LayoutContainer>
  27. </div>
  28. </template>
  29. <script setup></script>
  30. <style scoped>
  31. .custom-row {
  32. width: 90%;
  33. margin-left: auto;
  34. margin-right: auto;
  35. }
  36. @media (min-width: 2000px) {
  37. .custom-row {
  38. width: 70%;
  39. }
  40. }
  41. .pyramide-details {
  42. color: #071B1F;
  43. font-size: 2.125rem;
  44. font-style: normal;
  45. font-weight: 400;
  46. line-height: 2.375rem;
  47. width: 40rem;
  48. }
  49. .v-row {
  50. margin-top: 0px !important;
  51. margin-left: auto;
  52. margin-right: auto;
  53. }
  54. .schema-manager {
  55. }
  56. </style>