+ un mixin puces en triangle
This commit is contained in:
parent
8eb84ec30c
commit
b96e1cbd3e
@ -302,6 +302,21 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// liste ul avec puce en triangle
|
||||||
|
@mixin liste-triangle($demihauteur: 0.3em, $coefficient: 1.8) {
|
||||||
|
list-style:none;
|
||||||
|
> li {
|
||||||
|
padding-left:1em;
|
||||||
|
position:relative;
|
||||||
|
&:before {
|
||||||
|
position:absolute;
|
||||||
|
left:0;
|
||||||
|
top:0.6em;
|
||||||
|
@include triangle(right, $couleurSecondaire, $demihauteur, $coefficient);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Font Face
|
/// Font Face
|
||||||
/// https://gist.github.com/jonathantneal/d0460e5c2d5d7f9bc5e6#file-_mixins-scss
|
/// https://gist.github.com/jonathantneal/d0460e5c2d5d7f9bc5e6#file-_mixins-scss
|
||||||
/// simplification pour uniquement woff2 et woff
|
/// simplification pour uniquement woff2 et woff
|
||||||
|
Loading…
Reference in New Issue
Block a user