Banner.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <template>
  2. <LayoutContainer>
  3. <v-row>
  4. <div class="container-title">
  5. <v-col
  6. cols="4"
  7. class="text-left"
  8. >
  9. <h1>Manager</h1>
  10. </v-col>
  11. <v-col
  12. cols="4"
  13. class="logiciel"
  14. >
  15. <h1>Opentalent Artist</h1>
  16. </v-col>
  17. <v-col
  18. cols="4"
  19. class="text-right"
  20. >
  21. <h1>School</h1>
  22. </v-col>
  23. </div>
  24. </v-row>
  25. <v-row>
  26. <v-col cols="12">
  27. <div class="banner-container">
  28. <img
  29. src="/images/logiciels/artist/banner.jpg"
  30. alt="line"
  31. class="cover-image"
  32. >
  33. <div class="black-square">
  34. <v-row>
  35. <div class="content-row">
  36. <v-icon
  37. size="50"
  38. class="fa-brands fa-react icon"
  39. />
  40. <p class="description-square">
  41. École de musique, d'art, de danse, de cirque, conservatoires
  42. et MJC
  43. </p>
  44. </div>
  45. </v-row>
  46. </div>
  47. <div class="white-square">
  48. <img
  49. src="/images/opentalent_artist_black.png"
  50. alt="Logo"
  51. class="logo-image"
  52. >
  53. </div>
  54. </div>
  55. </v-col>
  56. </v-row>
  57. </LayoutContainer>
  58. </template>
  59. <script setup></script>
  60. <style scoped>
  61. .container-title {
  62. display: flex;
  63. justify-content: space-around;
  64. font-family: "Barlow";
  65. line-height: 16px;
  66. display: flex;
  67. align-items: center;
  68. text-align: center;
  69. letter-spacing: 0.18em;
  70. border-bottom: 0.1rem solid #eaeaea;
  71. }
  72. .text-left {
  73. font-family: "Barlow";
  74. font-style: normal;
  75. font-weight: 600;
  76. font-size: 3rem;
  77. line-height: 85px;
  78. color: #000000;
  79. opacity: 0.1;
  80. margin-top: 2rem;
  81. margin-left: 5rem;
  82. }
  83. .logiciel {
  84. font-family: "Barlow";
  85. font-style: normal;
  86. font-size: 3rem;
  87. line-height: 85px;
  88. text-align: center;
  89. color: #000000;
  90. margin-left: 6rem;
  91. margin-right: 4rem;
  92. }
  93. .text-right {
  94. margin-top: 2rem;
  95. font-family: "Barlow";
  96. font-style: normal;
  97. font-weight: 600;
  98. font-size: 3rem;
  99. line-height: 85px;
  100. text-align: center;
  101. color: #000000;
  102. text-align: right;
  103. opacity: 0.1;
  104. margin-right: 5rem;
  105. }
  106. .black-square {
  107. position: absolute;
  108. bottom: 0rem;
  109. right: 0;
  110. width: 13rem;
  111. height: 10rem;
  112. background: #fac20a;
  113. }
  114. .white-square {
  115. position: absolute;
  116. bottom: 0rem;
  117. right: 13rem;
  118. width: 13rem;
  119. height: 10rem;
  120. background: white;
  121. }
  122. .description-square {
  123. font-family: "Barlow";
  124. font-style: normal;
  125. font-weight: 300;
  126. font-size: 0.8rem;
  127. text-align: center;
  128. color: #091d20;
  129. display: flex;
  130. align-items: center;
  131. text-align: center;
  132. margin-top: 0.5rem;
  133. margin-left: 2rem;
  134. margin-right: 2rem;
  135. margin-bottom: 1rem;
  136. }
  137. .content-row {
  138. margin-top: 2rem;
  139. display: flex;
  140. flex-direction: column;
  141. justify-content: space-around;
  142. align-items: center;
  143. height: 100%;
  144. }
  145. .icon {
  146. margin-left: 2rem;
  147. margin-right: 2rem;
  148. }
  149. .logo-image {
  150. width: 90%;
  151. height: auto;
  152. margin-top: 1.5rem;
  153. margin-left: 0.5rem;
  154. }
  155. .banner-container {
  156. position: relative;
  157. overflow: hidden;
  158. display: flex;
  159. justify-content: center;
  160. align-items: flex-start;
  161. height: 25rem;
  162. }
  163. .cover-image {
  164. width: 100%;
  165. height: auto;
  166. object-fit: cover;
  167. transition: transform 0.2s;
  168. margin: 0 auto;
  169. transform: scaleX(-1);
  170. display: block;
  171. }
  172. </style>