Banner.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <template>
  2. <LayoutContainer>
  3. <v-row>
  4. <div class="container-title">
  5. <v-col cols="4" class="text-left">
  6. <h1>Artist</h1>
  7. </v-col>
  8. <v-col cols="4" class="logiciel">
  9. <h1>Opentalent School</h1>
  10. </v-col>
  11. <v-col cols="4" class="text-right">
  12. <h1>Manager</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/solutions/school.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="blue-square">
  36. <img
  37. src="/images/logo_school_white.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. 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. .logiciel {
  61. font-family: "Barlow";
  62. font-style: normal;
  63. font-size: 3rem;
  64. line-height: 85px;
  65. text-align: center;
  66. color: #000000;
  67. margin-left: 6rem;
  68. margin-right: 4rem;
  69. }
  70. .text-left {
  71. font-family: "Barlow";
  72. font-style: normal;
  73. font-weight: 600;
  74. font-size: 3rem;
  75. line-height: 85px;
  76. color: #000000;
  77. opacity: 0.1;
  78. margin-top: 2rem;
  79. margin-left: 5rem;
  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. /** banner et cadre pour logo et description de logiciel */
  95. .black-square {
  96. position: absolute;
  97. bottom: 0.4rem;
  98. right: 0;
  99. width: 13rem;
  100. height: 10rem;
  101. background-color: black;
  102. background: #9edbdd;
  103. }
  104. .blue-square {
  105. position: absolute;
  106. bottom: 0.4rem;
  107. right: 13rem;
  108. width: 13rem;
  109. height: 10rem;
  110. background: #0e2d32;
  111. }
  112. .description-square {
  113. font-family: "Barlow";
  114. font-style: normal;
  115. font-weight: 300;
  116. font-size: 0.8rem;
  117. text-align: center;
  118. color: #091d20;
  119. display: flex;
  120. align-items: center;
  121. text-align: center;
  122. margin-top: 0.5rem;
  123. margin-left: 2rem;
  124. margin-right: 2rem;
  125. margin-bottom: 1rem;
  126. }
  127. .content-row {
  128. margin-top: 2rem;
  129. display: flex;
  130. flex-direction: column;
  131. justify-content: space-around;
  132. align-items: center;
  133. height: 100%;
  134. }
  135. .icon {
  136. margin-left: 2rem;
  137. margin-right: 2rem;
  138. }
  139. .logo-image {
  140. width: 90%;
  141. height: auto;
  142. margin-top: 1.5rem;
  143. margin-left: 0.5rem;
  144. }
  145. .banner-container {
  146. position: relative;
  147. overflow: hidden;
  148. }
  149. .cover-image {
  150. width: 100%;
  151. height: 25rem;
  152. object-fit: cover;
  153. transition: transform 0.2s;
  154. margin: 0 auto;
  155. transform: scaleX(-1);
  156. }
  157. </style>