Pyramide.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <div id="détails">
  3. <LayoutContainer>
  4. <v-row>
  5. <div class="d-flex justify-center align-center">
  6. <v-icon class="fa-brands fa-react icon-title"></v-icon>
  7. <h4 class="subtitle-pyramide">Un réseau pyramidal</h4>
  8. </div>
  9. </v-row>
  10. <v-row>
  11. <v-col cols="4">
  12. <div class="row-pyramide">
  13. <h4 class="title-pyramide">
  14. Opentalent Manager, un logiciel adapté à chacun
  15. </h4>
  16. <p class="detail-pyramide">
  17. Notre système s'adapte à toutes les structures de réseau
  18. pyramidal, quel que soit le nombre de niveau.
  19. </p>
  20. </div>
  21. </v-col>
  22. <v-col cols="8">
  23. <v-img
  24. src="/images/logiciels/manager/schema_manager.png"
  25. class="schema-manager"
  26. >
  27. </v-img>
  28. </v-col>
  29. </v-row>
  30. <v-row>
  31. <v-col cols="4" class="border">
  32. <div class="d-flex justify-center align-center">
  33. <v-icon class="fa-brands fa-react icon"></v-icon>
  34. </div>
  35. <p class="d-flex justify-center align-center">Paiement Sécurisé</p>
  36. </v-col>
  37. <v-col cols="4" class="border">
  38. <div class="d-flex justify-center align-center">
  39. <v-icon class="fa-brands fa-react icon"></v-icon>
  40. </div>
  41. <p class="d-flex justify-center align-center">Paiement Sécurisé</p>
  42. </v-col>
  43. <v-col cols="4" class="border">
  44. <div class="d-flex justify-center align-center">
  45. <v-icon class="fa-brands fa-react icon"></v-icon>
  46. </div>
  47. <p class="d-flex justify-center align-center">Paiement Sécurisé</p>
  48. </v-col>
  49. </v-row>
  50. </LayoutContainer>
  51. </div>
  52. </template>
  53. <script setup></script>
  54. <style scoped>
  55. .icon {
  56. font-size: 3rem;
  57. color: #0e2d32;
  58. }
  59. .schema-manager {
  60. width: 70%;
  61. height: 100%;
  62. }
  63. .row-pyramide {
  64. margin-left: 2rem;
  65. }
  66. .detail-pyramide {
  67. font-family: "Barlow";
  68. font-style: normal;
  69. font-weight: 400;
  70. font-size: 1.8rem;
  71. color: #091d20;
  72. margin-top: 1rem;
  73. margin-bottom: 1rem;
  74. width: 22rem;
  75. }
  76. .title-pyramide {
  77. font-family: "Barlow";
  78. font-style: normal;
  79. font-weight: 600;
  80. font-size: 1.5rem;
  81. color: #091d20;
  82. margin-top: 1rem;
  83. margin-bottom: 1rem;
  84. width: 20rem;
  85. }
  86. .icon-title {
  87. color: #d8050b;
  88. margin-right: 1rem;
  89. font-size: 1rem;
  90. margin-left: 2rem;
  91. }
  92. .subtitle-pyramide {
  93. font-family: "Barlow";
  94. font-style: normal;
  95. font-weight: 500;
  96. font-size: 0.9rem;
  97. color: #091d20;
  98. margin-top: 1rem;
  99. margin-bottom: 1rem;
  100. letter-spacing: 0.1em;
  101. text-transform: uppercase;
  102. }
  103. </style>