Banner.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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>Artist</h1>
  10. </v-col>
  11. <v-col
  12. cols="4"
  13. class="logiciel"
  14. >
  15. <h1>Opentalent School</h1>
  16. </v-col>
  17. <v-col
  18. cols="4"
  19. class="text-right"
  20. >
  21. <h1>Manager</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/solutions/school.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="blue-square">
  48. <img
  49. src="/images/logo_school_white.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. line-height: 16px;
  65. display: flex;
  66. align-items: center;
  67. text-align: center;
  68. letter-spacing: 0.18em;
  69. border-bottom: 0.1rem solid #eaeaea;
  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-left {
  82. font-family: "Barlow";
  83. font-style: normal;
  84. font-weight: 600;
  85. font-size: 3rem;
  86. line-height: 85px;
  87. color: #000000;
  88. opacity: 0.1;
  89. margin-top: 2rem;
  90. margin-left: 5rem;
  91. }
  92. .text-right {
  93. margin-top: 2rem;
  94. font-family: "Barlow";
  95. font-style: normal;
  96. font-weight: 600;
  97. font-size: 3rem;
  98. line-height: 85px;
  99. text-align: center;
  100. color: #000000;
  101. text-align: right;
  102. opacity: 0.1;
  103. margin-right: 5rem;
  104. }
  105. /** banner et cadre pour logo et description de logiciel */
  106. .black-square {
  107. position: absolute;
  108. bottom: 0.4rem;
  109. right: 0;
  110. width: 13rem;
  111. height: 10rem;
  112. background-color: black;
  113. background: #9edbdd;
  114. }
  115. .blue-square {
  116. position: absolute;
  117. bottom: 0.4rem;
  118. right: 13rem;
  119. width: 13rem;
  120. height: 10rem;
  121. background: #0e2d32;
  122. }
  123. .description-square {
  124. font-family: "Barlow";
  125. font-style: normal;
  126. font-weight: 300;
  127. font-size: 0.8rem;
  128. text-align: center;
  129. color: #091d20;
  130. display: flex;
  131. align-items: center;
  132. text-align: center;
  133. margin-top: 0.5rem;
  134. margin-left: 2rem;
  135. margin-right: 2rem;
  136. margin-bottom: 1rem;
  137. }
  138. .content-row {
  139. margin-top: 2rem;
  140. display: flex;
  141. flex-direction: column;
  142. justify-content: space-around;
  143. align-items: center;
  144. height: 100%;
  145. }
  146. .icon {
  147. margin-left: 2rem;
  148. margin-right: 2rem;
  149. }
  150. .logo-image {
  151. width: 90%;
  152. height: auto;
  153. margin-top: 1.5rem;
  154. margin-left: 0.5rem;
  155. }
  156. .banner-container {
  157. position: relative;
  158. overflow: hidden;
  159. }
  160. .cover-image {
  161. width: 100%;
  162. height: 25rem;
  163. object-fit: cover;
  164. transition: transform 0.2s;
  165. margin: 0 auto;
  166. transform: scaleX(-1);
  167. }
  168. </style>