Recherche des tweets de réponse avec l'API Tweeter

This commit is contained in:
hugol
2024-11-17 13:55:25 +01:00
parent 3d386178bf
commit 8dc18553ec
1751 changed files with 379552 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
//
// Content
// --------------------------------------------------
@mixin content-layout($x, $y, $overflow: visible) {
width: 100%;
margin: 0 auto;
padding: $y $x 1px;
overflow-x: $overflow;
> .pull-t,
> .pull-y {
margin-top: -$y;
}
> .pull-b,
> .pull-y {
margin-bottom: -1px;
}
> .pull-r,
> .pull-x {
margin-right: -$x;
}
> .pull-r,
> .pull-x {
margin-left: -$x;
}
> .pull {
margin: (-$y) (-$x) (-1px);
}
@at-root {
#{&}#{&}-full {
padding-bottom: $y;
> .pull-b,
> .pull-y,
> .pull {
margin-bottom: -$y;
}
}
}
p,
.push,
.block,
.items-push > div {
margin-bottom: $y;
}
.items-push-2x > div {
margin-bottom: $y*2;
}
.items-push-3x > div {
margin-bottom: $y*3;
}
}