list corpus added texts #1260

This commit is contained in:
2022-01-20 16:31:36 +01:00
parent e1d126c0fc
commit fa6f051051
3 changed files with 46 additions and 14 deletions
+33 -14
View File
@@ -212,8 +212,8 @@ section[role="main-content"]{
margin: 0 0 2em 0; margin: 0 0 2em 0;
header{ header{
h2{ h2{
margin:0.4em 0 0.2em;
@include title1blue; @include title1blue;
margin:0.4em 0 0.2em;
} }
h3{ h3{
margin:0.2em 0; margin:0.2em 0;
@@ -223,6 +223,17 @@ section[role="main-content"]{
} }
margin-bottom: 0.3em; margin-bottom: 0.3em;
} }
h4{
margin:0.1em 0;
font-weight: 300;
@include fontsans;
font-size: 0.756em;
&.texts-quantity{
color: $rouge;
margin: 0.3em 0 0;
}
}
section.editions{ section.editions{
div.editions{ div.editions{
ol{ ol{
@@ -233,17 +244,25 @@ section[role="main-content"]{
} }
} }
} }
h4{
margin:0.1em 0; section.texts{
font-weight: 300;
@include fontsans;
font-size: 0.756em; ul.texts-list{
&.texts-quantity{ padding: 0 0 0 1em;
color: $rouge; li{
// &:after{ margin: 0;
// content: ">>"; }
// margin:0 0 0 0.5em; h3{
// } @include title2black;
margin: 0.7em 0 0.3em;
}
p{
font-weight: 300;
@include fontsans;
font-size: 0.756em;
margin: 0;
}
} }
} }
@@ -379,7 +398,7 @@ section[role="main-content"]{
} }
} }
a{ a{
@include title4black; @include title4grey;
color: $grisfonce; color: $grisfonce;
font-weight: 400; font-weight: 400;
} }
@@ -597,7 +616,7 @@ section[role="main-content"]{
} }
} }
.toc-title{ .toc-title{
@include title4black; @include title4grey;
&.active, &.active,
&:hover{ &:hover{
color:$grisfonce; color:$grisfonce;
+8
View File
@@ -60,6 +60,14 @@ footer[role="tools"] .row>nav{
} }
@mixin title4black { @mixin title4black {
@include fontserif;
font-size: 0.882em;;
color: $grisfonce;
font-weight: 400;
margin:0;
}
@mixin title4grey {
@include fontserif; @include fontserif;
font-size: 0.882em;; font-size: 0.882em;;
color: $gris; color: $gris;
+5
View File
@@ -26,6 +26,7 @@
<li v-for="text in corpus.editions.content" :key="text.uuid"> <li v-for="text in corpus.editions.content" :key="text.uuid">
<h3> <h3>
<a <a
class="title"
:href="text.url" :href="text.url"
:uuid="text.uuid" :uuid="text.uuid"
@click.prevent="onclick" @click.prevent="onclick"
@@ -33,6 +34,10 @@
v-html="text.title" v-html="text.title"
/> />
</h3> </h3>
<p
class="biblio"
v-html="text.biblio"
/>
</li> </li>
</ul> </ul>
</section> </section>