Banner.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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></script>
  48. <style scoped>
  49. .container-title {
  50. display: flex;
  51. justify-content: space-around;
  52. font-family: "Barlow";
  53. line-height: 16px;
  54. display: flex;
  55. align-items: center;
  56. text-align: center;
  57. letter-spacing: 0.18em;
  58. border-bottom: 0.1rem solid #eaeaea;
  59. }
  60. .text-left {
  61. font-family: "Barlow";
  62. font-style: normal;
  63. font-weight: 600;
  64. font-size: 3rem;
  65. line-height: 85px;
  66. color: #000000;
  67. opacity: 0.1;
  68. margin-top: 2rem;
  69. margin-left: 5rem;
  70. }
  71. .logiciel {
  72. font-family: "Barlow";
  73. font-style: normal;
  74. font-size: 3rem;
  75. line-height: 85px;
  76. text-align: center;
  77. color: #000000;
  78. margin-left: 6rem;
  79. margin-right: 4rem;
  80. }
  81. .text-right {
  82. margin-top: 2rem;
  83. font-family: "Barlow";
  84. font-style: normal;
  85. font-weight: 600;
  86. font-size: 3rem;
  87. line-height: 85px;
  88. text-align: center;
  89. color: #000000;
  90. text-align: right;
  91. opacity: 0.1;
  92. margin-right: 5rem;
  93. }
  94. .black-square {
  95. position: absolute;
  96. bottom: 0rem;
  97. right: 0;
  98. width: 13rem;
  99. height: 10rem;
  100. background: #fac20a;
  101. }
  102. .white-square {
  103. position: absolute;
  104. bottom: 0rem;
  105. right: 13rem;
  106. width: 13rem;
  107. height: 10rem;
  108. background: white;
  109. }
  110. .description-square {
  111. font-family: "Barlow";
  112. font-style: normal;
  113. font-weight: 300;
  114. font-size: 0.8rem;
  115. text-align: center;
  116. color: #091d20;
  117. display: flex;
  118. align-items: center;
  119. text-align: center;
  120. margin-top: 0.5rem;
  121. margin-left: 2rem;
  122. margin-right: 2rem;
  123. margin-bottom: 1rem;
  124. }
  125. .content-row {
  126. margin-top: 2rem;
  127. display: flex;
  128. flex-direction: column;
  129. justify-content: space-around;
  130. align-items: center;
  131. height: 100%;
  132. }
  133. .icon {
  134. margin-left: 2rem;
  135. margin-right: 2rem;
  136. }
  137. .logo-image {
  138. width: 90%;
  139. height: auto;
  140. margin-top: 1.5rem;
  141. margin-left: 0.5rem;
  142. }
  143. .banner-container {
  144. position: relative;
  145. overflow: hidden;
  146. display: flex;
  147. justify-content: center;
  148. align-items: flex-start;
  149. height: 25rem;
  150. }
  151. .cover-image {
  152. width: 100%;
  153. height: auto;
  154. object-fit: cover;
  155. transition: transform 0.2s;
  156. margin: 0 auto;
  157. transform: scaleX(-1);
  158. display: block;
  159. }
  160. </style>