Solutions.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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-custom" label>
  21. <span class="chip-detail">Agenda</span>
  22. </v-chip>
  23. <v-chip class="ma-2 chip-custom" label>
  24. <span class="chip-detail">Facturation</span>
  25. </v-chip>
  26. <v-chip class="ma-2 chip-custom" label>
  27. <span class="chip-detail">Comptabilité</span>
  28. </v-chip>
  29. <v-chip class="ma-2 chip-custom" label>
  30. <span class="chip-detail">Communication</span>
  31. </v-chip>
  32. <v-chip class="ma-2 chip-custom" label>
  33. <span class="chip-detail">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-custom" color="primary" label>
  49. <span class="chip-detail">Agenda</span>
  50. </v-chip>
  51. <v-chip class="ma-2 chip-custom" color="primary" label>
  52. <span class="chip-detail">Facturation</span>
  53. </v-chip>
  54. <v-chip class="ma-2 chip-custom" color="primary" label>
  55. <span class="chip-detail">Comptabilité</span>
  56. </v-chip>
  57. <v-chip class="ma-2 chip-custom" color="primary" label>
  58. <span class="chip-detail">Communication</span>
  59. </v-chip>
  60. <v-chip class="ma-2 chip-custom" color="primary" label>
  61. <span class="chip-detail">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-detail {
  71. color: #000000;
  72. }
  73. .chip-custom {
  74. color: white;
  75. border: 1px solid #0e2d32;
  76. border-radius: 3rem;
  77. text-transform: uppercase;
  78. font-family: "Barlow";
  79. font-style: normal;
  80. font-weight: 500;
  81. font-size: 14px;
  82. line-height: 16px;
  83. display: flex;
  84. align-items: center;
  85. text-align: center;
  86. letter-spacing: 0.2em;
  87. }
  88. .row-artist {
  89. border-top: 1px solid #d1cdc7;
  90. margin-left: 2rem;
  91. margin-right: 2rem;
  92. }
  93. .solution-name {
  94. font-family: "Barlow";
  95. font-style: normal;
  96. font-weight: 300;
  97. font-size: 1.5rem;
  98. line-height: 1.5rem;
  99. color: #0e2d32;
  100. }
  101. .row-artist {
  102. display: flex;
  103. flex-direction: row;
  104. align-items: center;
  105. }
  106. .solution-title {
  107. font-family: "Barlow";
  108. font-style: normal;
  109. font-weight: 500;
  110. font-size: 1.5rem;
  111. line-height: 1.5rem;
  112. color: #000000;
  113. margin-top: 2rem;
  114. margin-bottom: 2rem;
  115. text-align: center;
  116. }
  117. .logo {
  118. width: 10rem;
  119. height: 10rem;
  120. margin-left: 2rem;
  121. margin-right: 2rem;
  122. }
  123. </style>