major modifications on vocabulaire-summary

This commit is contained in:
Antoine M 2023-08-24 18:26:06 +02:00
parent 53d116a6cc
commit 7cae0790be
3 changed files with 33 additions and 0 deletions

View File

@ -3979,6 +3979,26 @@ article > *:not(.entry-content, .chapter-header-block),
/* background-color: white; */ /* background-color: white; */
} }
.homegrade-blocks-vocabulaire-summary {
background-color: rgb(239, 239, 239, 0.6);
}
.homegrade-blocks-vocabulaire-summary details {
border-radius: 1rem;
}
.homegrade-blocks-vocabulaire-summary__title {
padding-bottom: 1.5rem;
font-size: 1.875rem;
line-height: 2.25rem;
--tw-text-opacity: 1 !important;
color: rgb(0 0 0 / var(--tw-text-opacity)) !important;
}
.homegrade-blocks-vocabulaire-summary__content {
padding-top: 30px;
}
/* ########### PAGE ############ */ /* ########### PAGE ############ */
.demo-components .title { .demo-components .title {

View File

@ -57,6 +57,7 @@
@import './blocks/points-cles.css'; @import './blocks/points-cles.css';
@import './blocks/highlight.css'; @import './blocks/highlight.css';
@import './blocks/tooltip.css'; @import './blocks/tooltip.css';
@import './blocks/vocabulaire-summary.css';
/* ########### PAGE ############ */ /* ########### PAGE ############ */
@import './pages/demo-components.css'; @import './pages/demo-components.css';

View File

@ -0,0 +1,12 @@
.homegrade-blocks-vocabulaire-summary {
@apply bg-gray;
details {
@apply rounded-2xl;
}
&__title {
@apply text-3xl !text-black pb-6;
}
&__content {
padding-top: 30px;
}
}