|
|
@@ -2,15 +2,21 @@
|
|
|
<div id="Catalogue">
|
|
|
<LayoutContainer>
|
|
|
<div class="grey-container">
|
|
|
- <LayoutUISubTitle
|
|
|
- :iconSize="6"
|
|
|
- :iconClasses="iconClasses"
|
|
|
- :titleText="'Des webinaires pour tous'"
|
|
|
- />
|
|
|
- <LayoutUITitlePage
|
|
|
- title="SIMPLIFIEZ LA GESTION ET LA COMMUNICATION DE VOTRE STRUCTURE CULTURELLE"
|
|
|
- subtitle="Votre orchestre, école de danse ou votre fédération mérite les outils les plus performants du marché pour briller en toute simplicité. Découvrez comment nos outils peuvent transformer votre quotidien : "
|
|
|
- />
|
|
|
+ <v-row class="custom-row">
|
|
|
+ <LayoutUISubTitle
|
|
|
+ :iconSize="6"
|
|
|
+ :iconClasses="iconClasses"
|
|
|
+ :titleText="'Des webinaires pour tous'"
|
|
|
+ />
|
|
|
+ </v-row>
|
|
|
+
|
|
|
+ <v-row class="custom-row">
|
|
|
+ <LayoutUITitlePage
|
|
|
+ title="SIMPLIFIEZ LA GESTION ET LA COMMUNICATION DE VOTRE STRUCTURE CULTURELLE"
|
|
|
+ subtitle="Votre orchestre, école de danse ou votre fédération mérite les outils les plus performants du marché pour briller en toute simplicité. Découvrez comment nos outils peuvent transformer votre quotidien : "
|
|
|
+ />
|
|
|
+ </v-row>
|
|
|
+
|
|
|
<v-row
|
|
|
style="
|
|
|
padding: 2rem;
|
|
|
@@ -18,15 +24,13 @@
|
|
|
margin-left: auto;
|
|
|
margin-right: auto;
|
|
|
"
|
|
|
+ class="custom-row"
|
|
|
>
|
|
|
<v-col v-for="(course, index) in courses" :key="index" cols="4">
|
|
|
<v-card class="mb-4">
|
|
|
<v-card-text>
|
|
|
<div class="title-card-container d-flex align-center">
|
|
|
- <v-img
|
|
|
- class="logo-img mr-2"
|
|
|
- :src="course.imageUrl"
|
|
|
- ></v-img>
|
|
|
+ <v-img class="logo-img mr-2" :src="course.imageUrl"></v-img>
|
|
|
<h4 class="card-title">{{ course.title }}</h4>
|
|
|
</div>
|
|
|
<p class="details-card">{{ course.description }}</p>
|
|
|
@@ -237,6 +241,12 @@ const courses = [
|
|
|
];
|
|
|
</script>
|
|
|
<style scoped>
|
|
|
+.custom-row {
|
|
|
+ width: 90%;
|
|
|
+ margin-left: auto;
|
|
|
+ margin-right: auto;
|
|
|
+}
|
|
|
+
|
|
|
.v-card {
|
|
|
border: none !important;
|
|
|
box-shadow: none !important;
|
|
|
@@ -333,7 +343,7 @@ const courses = [
|
|
|
.card-title {
|
|
|
font-weight: 600;
|
|
|
font-size: 1.2rem;
|
|
|
- margin-bottom: .8rem;
|
|
|
+ margin-bottom: 0.8rem;
|
|
|
}
|
|
|
|
|
|
.logo-img {
|
|
|
@@ -344,14 +354,15 @@ const courses = [
|
|
|
height: 50px;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
:deep().subtitle {
|
|
|
font-size: 1.5rem;
|
|
|
font-weight: normal !important;
|
|
|
line-height: 2rem;
|
|
|
letter-spacing: 0.1rem;
|
|
|
margin-bottom: 1rem;
|
|
|
+ width: 80%;
|
|
|
+ margin-left: auto;
|
|
|
+ margin-right: auto;
|
|
|
}
|
|
|
|
|
|
:deep().title {
|