2020-05-16 12:21:49 +02:00
|
|
|
|
2021-07-30 00:08:36 +02:00
|
|
|
|
2020-10-07 19:03:07 +02:00
|
|
|
// pour usage du btn, mais utile ailleurs eventuellement
|
2020-12-07 15:34:44 +01:00
|
|
|
.taille70 {
|
|
|
|
font-size:70%;
|
2020-10-07 19:03:07 +02:00
|
|
|
}
|
2020-12-07 15:34:44 +01:00
|
|
|
.taille80 {
|
|
|
|
font-size:80%;
|
2020-10-07 19:03:07 +02:00
|
|
|
}
|
2020-12-07 15:34:44 +01:00
|
|
|
.taille90 {
|
|
|
|
font-size:90%;
|
|
|
|
}
|
|
|
|
.taille110 {
|
|
|
|
font-size:110%;
|
|
|
|
}
|
|
|
|
.taille120 {
|
|
|
|
font-size:120%;
|
|
|
|
}
|
|
|
|
.taille130 {
|
|
|
|
font-size:130%;
|
2020-10-07 19:03:07 +02:00
|
|
|
}
|
2020-06-30 14:10:32 +02:00
|
|
|
|
2021-09-06 21:54:01 +02:00
|
|
|
.liste-items {
|
|
|
|
padding:0;
|
|
|
|
margin:0;
|
|
|
|
list-style:none;
|
|
|
|
.article-resume {
|
|
|
|
margin:0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-28 16:24:42 +02:00
|
|
|
.bp-medium {
|
|
|
|
@include media($bp-medium-up) {
|
|
|
|
@include visuallyhidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.bp-medium-up {
|
|
|
|
@include media($bp-medium) {
|
|
|
|
@include visuallyhidden;
|
|
|
|
}
|
|
|
|
}
|
2020-06-30 14:10:32 +02:00
|
|
|
|
2020-05-16 12:21:49 +02:00
|
|
|
.formulaire_spip.formulaire_recherche {
|
2020-12-07 15:34:44 +01:00
|
|
|
margin:2rem 0;
|
2021-03-11 16:30:51 +01:00
|
|
|
max-width:500px;
|
2020-05-16 12:21:49 +02:00
|
|
|
form {
|
2021-03-11 16:30:51 +01:00
|
|
|
position:relative;
|
|
|
|
border:1px solid #B3B3B3;
|
|
|
|
border-radius:$spacer/2;
|
|
|
|
padding:0.5rem 1.5em 0.5rem 2.5em;
|
|
|
|
width:100%;
|
|
|
|
max-width:100%;
|
|
|
|
@include flex;
|
|
|
|
align-items:center;
|
|
|
|
background:white;
|
2020-12-07 15:34:44 +01:00
|
|
|
|
|
|
|
&:before {
|
|
|
|
@extend .fa-search;
|
|
|
|
@extend .fas;
|
|
|
|
color: #AACBCF;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 1rem;
|
|
|
|
margin-top:-0.5rem;
|
|
|
|
width: 1.5rem;
|
|
|
|
height: 1.5rem;
|
|
|
|
background: none;
|
|
|
|
}
|
2020-05-16 12:21:49 +02:00
|
|
|
}
|
2021-03-11 16:30:51 +01:00
|
|
|
label {
|
2020-05-16 12:21:49 +02:00
|
|
|
@include visuallyhidden;
|
|
|
|
}
|
|
|
|
input[type=search],
|
|
|
|
input[type=text] {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
min-height: 2.5em;
|
|
|
|
line-height: 2.5em;
|
|
|
|
background: white;
|
2021-02-08 21:39:38 +01:00
|
|
|
&:focus {
|
|
|
|
outline: 0; // corriger les styles chromium
|
|
|
|
}
|
2020-05-16 12:21:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-15 14:13:20 +01:00
|
|
|
// abonnement newsletter et recherche
|
2021-03-11 16:30:51 +01:00
|
|
|
.formulaire_spip .abonnement, .formulaire_recherche {
|
|
|
|
position:relative;
|
|
|
|
label {
|
|
|
|
color:$blancTransparent;
|
|
|
|
font-size:0.8rem;
|
|
|
|
}
|
|
|
|
input.text {
|
|
|
|
padding-right:30px;
|
|
|
|
background:#f4f4f4;
|
|
|
|
&:hover, &:focus, &:active {
|
|
|
|
background:white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
position: absolute;
|
|
|
|
right:0;
|
|
|
|
bottom:0;
|
|
|
|
height:100%;
|
|
|
|
width:30px;
|
|
|
|
padding:0;
|
|
|
|
overflow:hidden;
|
|
|
|
text-indent:30px;
|
|
|
|
background:none;
|
2021-09-24 22:55:17 +02:00
|
|
|
z-index:1;
|
2021-03-11 16:30:51 +01:00
|
|
|
&:after {
|
|
|
|
@include triangle(right, #5b758e, 0.5rem, 0.8);
|
|
|
|
position:absolute;
|
|
|
|
right:0.6rem;
|
|
|
|
bottom:50%;
|
|
|
|
margin-bottom:-0.5rem;
|
|
|
|
}
|
|
|
|
&:hover, &:focus, &:active {
|
|
|
|
background:none;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
&:after {
|
|
|
|
border-left-color:$couleurPrincipaleOn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.formulaire_spip .abonnement {
|
|
|
|
button {
|
|
|
|
height:55%;
|
|
|
|
&::after {
|
|
|
|
bottom:0.5rem;
|
|
|
|
margin-bottom:0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
input.text {
|
|
|
|
&::placeholder {
|
|
|
|
font-size:0.8rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-09-14 10:09:08 +02:00
|
|
|
@include media($bp-medium-up) {
|
|
|
|
.flex {
|
|
|
|
@include flex;
|
|
|
|
flex-wrap:wrap;
|
|
|
|
justify-content:space-between;
|
2021-07-30 00:08:36 +02:00
|
|
|
}
|
2021-09-14 10:09:08 +02:00
|
|
|
.flex2 > * {
|
|
|
|
width:100%;
|
|
|
|
@include media($bp-small-up) {
|
|
|
|
max-width:calc(50% - 1rem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.flex3 > * {
|
|
|
|
width:100%;
|
|
|
|
@include media($bp-small-up) {
|
|
|
|
max-width:calc(33.33% - 1rem);
|
|
|
|
}
|
2021-07-30 00:08:36 +02:00
|
|
|
}
|
2021-06-10 18:07:44 +02:00
|
|
|
}
|
|
|
|
|
2020-05-16 12:21:49 +02:00
|
|
|
|
|
|
|
// ------------------------------------------------
|
|
|
|
// Affichage de valeurs de formulaires
|
|
|
|
// ------------------------------------------------
|
|
|
|
|
|
|
|
.champ.afficher {
|
2021-03-11 16:30:51 +01:00
|
|
|
@include flex;
|
2020-05-16 12:21:49 +02:00
|
|
|
margin-bottom: 0.5em;
|
|
|
|
.label {
|
|
|
|
margin-right: 1em;
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
&.saisie_fieldset {
|
|
|
|
display: block;
|
|
|
|
margin: 1em 0;
|
|
|
|
& > .champ {
|
|
|
|
margin-left: 1.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-29 10:35:42 +01:00
|
|
|
|
|
|
|
|
2021-01-29 10:48:26 +01:00
|
|
|
// tri par periode : blog ou inclure/listetranscriptions_selectionperiode
|
2021-01-29 10:35:42 +01:00
|
|
|
//
|
2021-01-29 10:48:26 +01:00
|
|
|
.periode {
|
|
|
|
width:100%;
|
|
|
|
margin-bottom:1em;
|
2021-01-29 10:35:42 +01:00
|
|
|
a, span { display: inline-block; margin-right:0.25em;
|
|
|
|
&.annees { font-size:0.8em; line-height:1.8; font-style:italic; color:$grayLight; clear:left;
|
|
|
|
&:after { font-size:0.85em; font-style:normal; }
|
|
|
|
}
|
|
|
|
&.archive { cursor:pointer; color:$grayLight; }
|
|
|
|
&.mois_archive { width:0; overflow:hidden; margin:0; height:0;
|
|
|
|
&.ouvert { width:auto; height:auto; overflow:visible; display:inline; }
|
|
|
|
}
|
|
|
|
&.annees.archive.ouvert { color:$gray; }
|
|
|
|
}
|
|
|
|
span {
|
|
|
|
&:hover { color:$gray; }
|
|
|
|
}
|
|
|
|
a { padding:0 0.3em; font-weight:700;
|
2021-01-29 10:56:41 +01:00
|
|
|
&.on { text-decoration:underline; }
|
2021-01-29 10:35:42 +01:00
|
|
|
}
|
|
|
|
}
|
2021-02-04 12:07:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
// page sommaire
|
|
|
|
.page_sommaire {
|
|
|
|
.page_content {
|
|
|
|
margin-right:0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.texte_accueil {
|
|
|
|
margin-bottom:$spacer;
|
|
|
|
}
|
2021-09-28 15:54:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
iframe {
|
|
|
|
width:100%;
|
|
|
|
}
|