Reviews.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <template>
  2. <div id="Evaluation">
  3. <LayoutContainer>
  4. <div class="container-green">
  5. <v-row>
  6. <v-col cols="4">
  7. <h3 class="reviews-title">Ce sont eux qui en parle le mieux</h3>
  8. </v-col>
  9. <v-col cols="8">
  10. <div class="card-container">
  11. <v-card class="card">
  12. <v-card-item>
  13. <v-card-text class="card-text">
  14. Lorem ipsum dolor sit amet consectetur adipisicing elit.
  15. Provident porro fuga incidunt quae, doloremque tenetur
  16. aliquam exercitationem deleniti aspernatur illo rem deserunt
  17. sapiente tempore dolorem ipsa aliquid vel nihil eius.
  18. </v-card-text>
  19. <div class="card-footer">
  20. <v-card-actions class="reviewer-name">
  21. Laurent Lebon
  22. </v-card-actions>
  23. <p class="reviewer-status">Chef d'orchestre</p>
  24. <p class="reviewer-structure">Conservatoire de Lyon</p>
  25. </div>
  26. </v-card-item>
  27. </v-card>
  28. <v-card class="card">
  29. <v-card-item>
  30. <v-card-text class="card-text">
  31. Lorem ipsum dolor sit amet consectetur adipisicing elit.
  32. Provident porro fuga incidunt quae, doloremque tenetur
  33. aliquam exercitationem deleniti aspernatur illo rem deserunt
  34. sapiente tempore dolorem ipsa aliquid vel nihil eius.
  35. </v-card-text>
  36. <div class="card-footer">
  37. <v-card-actions class="reviewer-name">
  38. Laurent Lebon
  39. </v-card-actions>
  40. <p class="reviewer-status">Chef d'orchestre</p>
  41. <p class="reviewer-structure">Conservatoire de Lyon</p>
  42. </div>
  43. </v-card-item>
  44. </v-card>
  45. <v-card class="card">
  46. <v-card-item>
  47. <v-card-text class="card-text">
  48. Lorem ipsum dolor sit amet consectetur adipisicing elit.
  49. Provident porro fuga incidunt quae, doloremque tenetur
  50. aliquam exercitationem deleniti aspernatur illo rem deserunt
  51. sapiente tempore dolorem ipsa aliquid vel nihil eius.
  52. </v-card-text>
  53. <div class="card-footer">
  54. <v-card-actions class="reviewer-name">
  55. Laurent Lebon
  56. </v-card-actions>
  57. <p class="reviewer-status">Chef d'orchestre</p>
  58. <p class="reviewer-structure">Conservatoire de Lyon</p>
  59. </div>
  60. </v-card-item>
  61. </v-card>
  62. </div>
  63. </v-col>
  64. </v-row>
  65. </div>
  66. </LayoutContainer>
  67. </div>
  68. </template>
  69. <script></script>
  70. <style scoped>
  71. .card-text {
  72. color: #fff;
  73. }
  74. .reviewer-name {
  75. font-family: "Barlow";
  76. font-style: normal;
  77. font-weight: 500;
  78. font-size: 20px;
  79. line-height: 24px;
  80. color: white;
  81. }
  82. .reviewer-status {
  83. font-family: "Barlow";
  84. font-family: "Barlow";
  85. font-style: normal;
  86. font-weight: 600;
  87. font-size: 12px;
  88. line-height: 16px;
  89. display: flex;
  90. align-items: center;
  91. letter-spacing: 0.18em;
  92. text-transform: uppercase;
  93. color: #fff;
  94. }
  95. .reviewer-structure {
  96. font-family: "Barlow";
  97. font-style: normal;
  98. font-weight: 300;
  99. font-size: 0.8rem;
  100. line-height: 14px;
  101. display: flex;
  102. align-items: center;
  103. color: #fff;
  104. }
  105. .card-footer {
  106. display: flex;
  107. flex-direction: column;
  108. align-items: flex-start;
  109. margin-left: 5.5rem;
  110. margin-top: 3rem;
  111. }
  112. .card-text {
  113. font-family: "Barlow";
  114. font-style: normal;
  115. font-weight: 300;
  116. font-size: 1rem;
  117. line-height: 1rem;
  118. margin-left: 1.5rem;
  119. margin-right: 1.5rem;
  120. height: 12rem;
  121. }
  122. .reviews-title {
  123. font-family: "Barlow";
  124. font-style: normal;
  125. font-weight: 600;
  126. font-size: 42px;
  127. line-height: 42px;
  128. color: #091d20;
  129. margin-top: 2rem;
  130. margin-left: 2rem;
  131. margin-right: 8rem;
  132. }
  133. .card {
  134. width: 70rem;
  135. height: 23rem;
  136. margin-left: 1rem;
  137. margin-right: 1rem;
  138. border-radius: 1rem;
  139. background: #0e2d32;
  140. }
  141. .card-container {
  142. display: flex;
  143. justify-content: center;
  144. align-items: center;
  145. margin-top: 5rem;
  146. margin-bottom: 3rem;
  147. }
  148. </style>