Pyramide.vue 1.8 KB

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