Banner.vue 3.3 KB

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