Solutions.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <template>
  2. <LayoutContainer>
  3. <v-row>
  4. <v-col cols="12">
  5. <h4 class="solution-title text-center">
  6. Ces solutions peuvent vous intéresser
  7. </h4>
  8. </v-col>
  9. </v-row>
  10. <v-row class="row-artist">
  11. <v-col cols="3">
  12. <v-img src="/images/opentalent_artist_black.png" class="logo"> </v-img>
  13. </v-col>
  14. <v-col cols="2">
  15. <h5 class="solution-name">Opentalent Artist</h5>
  16. </v-col>
  17. <v-col cols="7">
  18. <!-- list v-chip-->
  19. <v-chip-group active-class="primary--text" column>
  20. <v-chip class="ma-2 chip" label>
  21. <span>Agenda</span>
  22. </v-chip>
  23. <v-chip class="ma-2" label>
  24. <span>Facturation</span>
  25. </v-chip>
  26. <v-chip class="ma-2 chip" label>
  27. <span>Comptabilité</span>
  28. </v-chip>
  29. <v-chip class="ma-2 chip" label>
  30. <span>Communication</span>
  31. </v-chip>
  32. <v-chip class="ma-2 chip" label>
  33. <span>Site internet</span>
  34. </v-chip>
  35. </v-chip-group>
  36. </v-col>
  37. </v-row>
  38. <v-row class="row-artist">
  39. <v-col cols="3">
  40. <v-img src="/images/opentalent_manager_black.jpg" class="logo"> </v-img>
  41. </v-col>
  42. <v-col cols="2">
  43. <h5 class="solution-name">Opentalent Manager</h5>
  44. </v-col>
  45. <v-col cols="7">
  46. <!-- list v-chip-->
  47. <v-chip-group active-class="primary--text" column>
  48. <v-chip class="ma-2 chip" color="primary" label>
  49. <span>Agenda</span>
  50. </v-chip>
  51. <v-chip class="ma-2 chip" color="primary" label>
  52. <span>Facturation</span>
  53. </v-chip>
  54. <v-chip class="ma-2 chip" color="primary" label>
  55. <span>Comptabilité</span>
  56. </v-chip>
  57. <v-chip class="ma-2 chip" color="primary" label>
  58. <span>Communication</span>
  59. </v-chip>
  60. <v-chip class="ma-2 chip" color="primary" label>
  61. <span>Site internet</span>
  62. </v-chip>
  63. </v-chip-group>
  64. </v-col>
  65. </v-row>
  66. </LayoutContainer>
  67. </template>
  68. <script setup></script>
  69. <style scoped>
  70. .chip {
  71. /* position: inherit; */
  72. color: black;
  73. border: 1px solid #0e2d32;
  74. border-radius: 3rem;
  75. text-transform: uppercase;
  76. font-family: "Barlow";
  77. font-style: normal;
  78. font-weight: 500;
  79. font-size: 14px;
  80. line-height: 16px;
  81. /* identical to box height, or 114% */
  82. display: flex;
  83. align-items: center;
  84. text-align: center;
  85. letter-spacing: 0.2em;
  86. }
  87. .row-artist {
  88. border-top: 1px solid #d1cdc7;
  89. margin-left: 2rem;
  90. margin-right: 2rem;
  91. }
  92. .solution-name {
  93. font-family: "Barlow";
  94. font-style: normal;
  95. font-weight: 300;
  96. font-size: 1.5rem;
  97. line-height: 1.5rem;
  98. color: #0e2d32;
  99. }
  100. .row-artist {
  101. display: flex;
  102. flex-direction: row;
  103. align-items: center;
  104. }
  105. .solution-title {
  106. font-family: "Barlow";
  107. font-style: normal;
  108. font-weight: 500;
  109. font-size: 1.5rem;
  110. line-height: 1.5rem;
  111. color: #000000;
  112. margin-top: 2rem;
  113. margin-bottom: 2rem;
  114. text-align: center;
  115. }
  116. .logo {
  117. width: 10rem;
  118. height: 10rem;
  119. margin-left: 2rem;
  120. margin-right: 2rem;
  121. }
  122. </style>