fix autorisation + surcharge font
This commit is contained in:
parent
7c63487bef
commit
384dc30560
@ -21,7 +21,7 @@
|
|||||||
<chemin path="squelettes/scss" />
|
<chemin path="squelettes/scss" />
|
||||||
<chemin path="" />
|
<chemin path="" />
|
||||||
|
|
||||||
<pipeline nom="autoriser" inclure="librealire_autorisations.php"/>
|
<pipeline nom="autoriser" inclure="libreavous_autorisations.php"/>
|
||||||
<!-- <pipeline nom="declarer_champs_extras" inclure="base/librealire.php"/> -->
|
<!-- <pipeline nom="declarer_champs_extras" inclure="base/librealire.php"/> -->
|
||||||
<!-- <pipeline nom="declarer_tables_objets_sql" inclure="base/librealire.php" /> -->
|
<!-- <pipeline nom="declarer_tables_objets_sql" inclure="base/librealire.php" /> -->
|
||||||
|
|
||||||
|
BIN
squelettes/images/egalizer-480.png
Normal file
BIN
squelettes/images/egalizer-480.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 93 KiB |
130
squelettes/scss/base/_typo.scss
Normal file
130
squelettes/scss/base/_typo.scss
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
/* Font Awesome */
|
||||||
|
.fas {
|
||||||
|
font-family:Fontawesome-s;
|
||||||
|
color:$couleurPrincipale;
|
||||||
|
}
|
||||||
|
.fab {
|
||||||
|
font-family:Fontawesome-b;
|
||||||
|
color:$couleurPrincipale;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* autres */
|
||||||
|
$typo-labeur: 'Lato', sans-serif;
|
||||||
|
$typo-titre: 'Metropolis', sans-serif;
|
||||||
|
|
||||||
|
$typo-texte: $typo-labeur;
|
||||||
|
|
||||||
|
body {
|
||||||
|
$_computed_bfs: strip-unit($body-font-size) / strip-unit($_base-font-size);
|
||||||
|
font-size: $_computed_bfs * (14/strip-unit($body-font-size))*1em;
|
||||||
|
@include media($bp-small-up) {
|
||||||
|
font-size: $_computed_bfs * (15/strip-unit($body-font-size))*1em;
|
||||||
|
}
|
||||||
|
@include media($bp-medium-up) {
|
||||||
|
font-size: $_computed_bfs * (16/strip-unit($body-font-size))*1em;
|
||||||
|
}
|
||||||
|
@include media($bp-large-up) {
|
||||||
|
font-size: $_computed_bfs*1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
font-family: $typo-texte;
|
||||||
|
font-weight: normal;
|
||||||
|
line-height: $typo-line-height;
|
||||||
|
color: $couleur-texte;
|
||||||
|
text-rendering: geometricPrecision;
|
||||||
|
}
|
||||||
|
|
||||||
|
html.rtl * {
|
||||||
|
// pas d'italique pour les langues RTL
|
||||||
|
font-style: normal !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: $couleur-lien;
|
||||||
|
&:hover, &:focus {
|
||||||
|
text-decoration: underline;
|
||||||
|
color: $couleur-lien-hover;
|
||||||
|
border-color: $couleur-lien-hover;
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
|
/* &:focus {
|
||||||
|
background-color: $couleur-lien !important;
|
||||||
|
border-color: $couleur-lien !important;
|
||||||
|
color: white !important;
|
||||||
|
text-shadow: none !important;
|
||||||
|
transition: all 0s !important;
|
||||||
|
svg * {
|
||||||
|
//fill: white !important;
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav.principale {
|
||||||
|
font-family:$typo-titre;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, .h1,
|
||||||
|
h2, .h2,
|
||||||
|
h3, .h3,
|
||||||
|
h4, .h4,
|
||||||
|
h5, .h5,
|
||||||
|
h6, .h6 {
|
||||||
|
font-family: $typo-titre;
|
||||||
|
font-weight: 200;
|
||||||
|
line-height: 1.2;
|
||||||
|
font-style: normal;
|
||||||
|
color: $couleur-titres;
|
||||||
|
margin: 1em 0 0.8em 0;
|
||||||
|
letter-spacing: 0.02em;
|
||||||
|
a:link, a:visited {
|
||||||
|
/*color: $couleur-titres;*/
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
color: $couleur-lien-hover;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, .h1 {
|
||||||
|
font-size: em(26px);
|
||||||
|
@include media($bp-medium-up) {
|
||||||
|
font-size: em(30px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h2, .h2 {
|
||||||
|
font-size: em(22px);
|
||||||
|
@include media($bp-medium-up) {
|
||||||
|
font-size: em(26px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h3, .h3 {
|
||||||
|
font-size: em(20px);
|
||||||
|
@include media($bp-medium-up) {
|
||||||
|
font-size: em(23px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h4, .h4 {
|
||||||
|
font-size: em(18px);
|
||||||
|
@include media($bp-medium-up) {
|
||||||
|
font-size: em(20px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h5, .h5,
|
||||||
|
h6, .h6 {
|
||||||
|
@include media($bp-medium-up) {
|
||||||
|
font-size: em(18px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
::selection {
|
||||||
|
color: white !important;
|
||||||
|
background: darken($couleur-lien, 10%) !important;
|
||||||
|
text-shadow: none !important;
|
||||||
|
transition: all 0s !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -3,6 +3,9 @@
|
|||||||
.page_wrapper {
|
.page_wrapper {
|
||||||
background:$couleurPrincipale url('../images/egalizer.png') repeat-x center -150px;
|
background:$couleurPrincipale url('../images/egalizer.png') repeat-x center -150px;
|
||||||
background-attachment:fixed;
|
background-attachment:fixed;
|
||||||
|
@media ($bp-small) {
|
||||||
|
background:$couleurPrincipale url('../images/egalizer-480.png') repeat-x center -150px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.page_header {
|
.page_header {
|
||||||
padding:0;
|
padding:0;
|
||||||
|
Loading…
Reference in New Issue
Block a user