m/cup
1
0
mirror of https://github.com/sergi0g/cup.git synced 2025-11-17 09:33:38 -05:00

Upgrade docs

This commit is contained in:
Sergio
2025-02-01 13:41:21 +02:00
parent b5aa0309ee
commit a5bbdd0e33
76 changed files with 981 additions and 6326 deletions

View File

@@ -0,0 +1,36 @@
/* Override nextra styles restricting width */
:root {
--nextra-content-width: unset !important;
}
header.nextra-navbar {
--nextra-content-width: 90rem;
}
article {
padding-inline: 0 !important;
padding-top: 0 !important;
padding-bottom: 0 !important;
}
article div.x\:mt-16:last-child:empty {
margin-top: 0;
}
#hero {
animation-name: hero;
animation-duration: 1500ms;
animation-delay: 500ms;
animation-timing-function: ease-in-out;
animation-fill-mode: forwards;
}
@keyframes hero {
from {
translate: 0 8rem;
}
to {
translate: 0 0;
}
}