Banner.vue 3.6 KB

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