| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <template>
- <LayoutContainer>
- <div class="container-green">
- <v-row class="mt-12">
- <v-row>
- <v-col cols="6">
- <LayoutUISubTitle class="mt-6">
- {{ title }}
- </LayoutUISubTitle>
- <p class="quote">
- {{ quote }}
- </p>
- </v-col>
- <v-col cols="6">
- <div class="screen-img-3" />
- <div class="play-icon-container">
- <i class="fas fa-play"></i>
- </div>
- </v-col>
- </v-row>
- </v-row>
- </div>
- </LayoutContainer>
- </template>
- <script setup lang="ts">
- const props = defineProps({
- title: {
- type: String,
- required: true
- },
- quote: {
- type: String,
- required: true
- }
- })
- </script>
- <style scoped lang="scss">
- .v-container {
- padding: 0 !important;
- }
- .v-row {
- width: 90% !important;
- margin-left: auto !important;
- margin-right: auto !important;
- }
- .play-icon-container {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- font-size: 3rem;
- color: #ffffff;
- cursor: pointer;
- }
- .screen-img-3 {
- background-image: url("/images/logiciels/school/screen2.png");
- background-size: cover;
- background-position: center;
- width: 650px;
- height: 650px;
- }
- .quote {
- font-style: italic;
- font-weight: 300;
- font-size: 2rem;
- width: 35rem;
- line-height: 40px;
- color: #ffffff;
- margin-top: 27rem;
- margin-left: 2rem;
- }
- .icon-logiciel {
- margin-right: 1rem;
- }
- .container-green {
- background: linear-gradient(180deg, rgba(14, 45, 50, 0) 26.84%, #0e2d32 100%),
- rgba(7, 27, 31, 0.3);
- height: 40rem;
- }
- </style>
|