dev studio

This commit is contained in:
2026-04-22 14:52:16 +02:00
parent 31940e48ba
commit f1ad960775
21 changed files with 1709 additions and 30 deletions

View File

@@ -8,7 +8,7 @@
</div>
<div class="banniere_pros--description studio_description">
<div>
<img src="/img/logos/logo_le_studio_noir.png" alt="Logo du studio pro" width="200">
<NuxtLink to="/professionnels/studio"><img src="/img/logos/logo_le_studio_noir.png" alt="Logo du studio pro" width="200"></NuxtLink>
</div>
<DsHeading as="h5" tone="default" class="banniere_pros--description--titre">
On enregistre au studio !
@@ -22,7 +22,7 @@
</div>
<div class="banniere_pros--description parc_description">
<div>
<img src="/img/logos/logo_le_parc_noir.png" alt="Logo du parc instrumental pro" width="150">
<NuxtLink to="/professionnels/parc"><img src="/img/logos/logo_le_parc_noir.png" alt="Logo du parc instrumental pro" width="150"></NuxtLink>
</div>
<DsHeading as="h5" tone="default" class="banniere_pros--description--titre">
+ de 3 000 instruments en location

View File

@@ -7,7 +7,7 @@
Professionnels
<ul class="header_nav_topbar_submenu">
<li class="header_nav_topbar_submenu_item"><NuxtLink to="/professionnels/programmer-orchestre">Programmer l'Orchestre</NuxtLink></li>
<!-- <li class="header_nav_topbar_submenu_item"><NuxtLink to="/professionnels/studio">Le studio et les espaces</NuxtLink></li> -->
<li class="header_nav_topbar_submenu_item"><NuxtLink to="/professionnels/studio">Le studio et les espaces</NuxtLink></li>
<li class="header_nav_topbar_submenu_item"><NuxtLink to="/professionnels/parc">Louer des instruments</NuxtLink></li>
<!-- <li class="header_nav_topbar_submenu_item"><NuxtLink to="/professionnels/recrutement">Recrutement / Concours</NuxtLink></li> -->
<!-- <li class="header_nav_topbar_submenu_item"><NuxtLink to="/professionnels/candidats">Espace candidats</NuxtLink></li> -->

View File

@@ -149,6 +149,15 @@
<style lang="scss">
.strapi-blocks {
font-family: var(--font-roboto);
--strapi-heading-space: 24px;
--strapi-heading-tight-space: 6px;
--strapi-heading-tightest-space: 4px;
--strapi-heading-content-space: 10px;
// Espace standard avant un titre quand il suit un bloc de contenu.
:is(* + h1, * + h2, * + h3, * + h4) {
margin-top: var(--strapi-heading-space);
}
&--p {
font-weight: var(--fw-light);
@@ -156,39 +165,47 @@
line-height: 22px;
margin-bottom: 5px;
text-align: justify;
white-space: pre-line;
}
h1 {
padding-bottom: 10px;
font-weight: var(--fw-bold);
font-size: 30px;
text-transform: uppercase;
line-height: 30px;
}
h2 {
padding-bottom: 7px;
font-weight: var(--fw-bold);
font-size: 26px;
color: var(--c-brand_rouge);
text-transform: uppercase;
line-height: 30px;
}
h3 {
padding-bottom: 10px;
font-weight: var(--fw-semibold);
font-size: 26px;
}
h4 {
padding-bottom: 3px;
font-weight: var(--fw-medium);
font-size: 22px;
line-height: 30px;
}
h4 {
padding-bottom: 3px;
font-weight: var(--fw-medium);
font-size: 22px;
// Espace après un titre quand le bloc suivant est du contenu.
:is(h1, h2, h3, h4) + :is(p, ul, ol, blockquote, pre, figure) {
margin-top: var(--strapi-heading-content-space);
}
h4 {
padding-bottom: 3px;
font-weight: var(--fw-medium);
font-size: 22px;
// Entre deux titres, on resserre pour éviter un rythme trop lâche.
h1 + :is(h2, h3, h4) {
margin-top: var(--strapi-heading-tight-space);
}
h2 + :is(h3, h4) {
margin-top: var(--strapi-heading-tight-space);
}
h3 + h4 {
margin-top: var(--strapi-heading-tightest-space);
}
em {
@@ -314,9 +331,7 @@
&__figure + &__h {
margin-top: 23px;
}
> :not(h1) {
margin-left: 20px;
}
}
</style>