Files
OpenLLM/docs/globals.css
Aaron Pham fddd0bf95e feat: bootstrap documentation site (#252)
Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>
Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
Signed-off-by: GutZuFusss <leon.ikinger@googlemail.com>
Co-authored-by: GutZuFusss <leon.ikinger@googlemail.com>
2023-09-12 12:28:29 -04:00

52 lines
900 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
body {
font-feature-settings:
'rlig' 1,
'calt' 1,
'kern' 1;
}
.home-content p {
margin-top: 1.5em;
line-height: 1.75em;
}
.home-content a {
--tw-ring-color: hsl(var(--nextra-primary-hue) 100% 50%/0.3);
--tw-text-opacity: 1;
text-underline-position: under;
text-decoration-line: underline;
text-decoration-thickness: from-font;
color: hsl(var(--nextra-primary-hue) 100% 50% / var(--tw-text-opacity));
}
figcaption {
font-size: 0.85rem;
line-height: 1.5rem;
display: block;
text-align: center;
margin-top: 0.5rem;
}
code.text-\[\.9em\] {
font-size: 14px;
}
@media screen and (max-width: 1200px) {
.home-content .hide-medium {
display: none;
}
}
@media screen and (max-width: 720px) {
.home-content p {
font-size: 0.9rem;
}
.home-content .hide-small {
display: none;
}
}