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,64 @@
//
// Reboot
// --------------------------------------------------
// Emphasis
b,
strong {
font-weight: $font-weight-bold;
}
// Links
a {
transition: color .12s ease-out;
@include media-breakpoint-up(sm) {
&.link-fx {
position: relative;
&::before {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
content: '';
background-color: $link-color;
visibility: hidden;
transform: scaleX(0);
transform-origin: 0 50%;
transition: transform .2s ease-out;
}
}
}
&.link-fx:hover::before,
&.link-fx:focus::before {
visibility: visible;
transform: scaleX(1);
}
}
// Paragraphs
p {
line-height: $paragraph-line-height;
}
.story p,
p.story {
line-height: $paragraph-line-height;
font-size: $font-size-lg;
color: $gray-700;
@include media-breakpoint-up(sm) {
line-height: $paragraph-line-height-lg;
}
}
.story {
h2,
h3,
h4 {
margin-top: 3rem;
}
}