| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <template>
- <LayoutContainer>
- <v-row>
- <LayoutUIBannerTitle
- :leftText="'Artist'"
- :centerText="'Opentalent School'"
- :rightText="'Manager'"
- />
- </v-row>
- <v-row>
- <v-col cols="12">
- <LayoutUIBanner
- :imageSrc="'/images/solutions/school.jpg'"
- imageAlt="'line'"
- :squareText="'École de musique, d\'art, de danse, de cirque, conservatoires et MJC'"
- :logoSrc="'/images/logo/logiciels/School-Blanc.png'"
- />
- </v-col>
- </v-row>
- </LayoutContainer>
- </template>
- <script setup></script>
- <style scoped>
- .v-container{
- padding-left: 0;
- padding-right: 0;
- }
- .container-title {
- display: flex;
- justify-content: space-around;
- line-height: 16px;
- display: flex;
- align-items: center;
- text-align: center;
- letter-spacing: 0.18em;
- border-bottom: 0.1rem solid #eaeaea;
- }
- .text-left {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 3rem;
- line-height: 85px;
- color: #000000;
- opacity: 0.1;
- margin-top: 2rem;
- margin-left: 5rem;
- }
- .text-right {
- margin-top: 2rem;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 3rem;
- line-height: 85px;
- text-align: center;
- color: #000000;
- text-align: right;
- opacity: 0.1;
- margin-right: 5rem;
- }
- .logiciel {
- font-family: "Barlow";
- font-style: normal;
- font-size: 3rem;
- line-height: 85px;
- text-align: center;
- color: #000000;
- margin-left: 6rem;
- margin-right: 4rem;
- }
- </style>
|