mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-10-07 11:16:43 +00:00
55 lines
891 B
CSS
55 lines
891 B
CSS
.home {
|
|
&-container {
|
|
@apply -mt-16;
|
|
}
|
|
|
|
&-hero {
|
|
@apply relative flex flex-col items-center justify-center gap-4 h-screen;
|
|
|
|
&-logo {
|
|
@apply h-48 w-auto;
|
|
}
|
|
|
|
&-title {
|
|
@apply text-5xl font-normal tracking-tight;
|
|
}
|
|
|
|
&-tagline {
|
|
@apply text-sm font-medium uppercase tracking-wide text-base-content/70;
|
|
}
|
|
|
|
&-actions {
|
|
@apply flex flex-col sm:flex-row gap-4;
|
|
}
|
|
|
|
&-copy {
|
|
@apply font-normal normal-case text-base-content/70;
|
|
}
|
|
|
|
&-next {
|
|
@apply absolute bottom-4;
|
|
|
|
& svg {
|
|
@apply animate-bounce text-primary text-4xl;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-codeblock {
|
|
@apply inline-block !max-w-[600px];
|
|
}
|
|
}
|
|
|
|
.home-hero-uwu {
|
|
@apply hidden;
|
|
}
|
|
|
|
[data-uwu="true"] .home-hero-uwu {
|
|
@apply block max-w-xs;
|
|
}
|
|
|
|
[data-uwu="true"] .home-hero-logo,
|
|
[data-uwu="true"] .home-hero-title {
|
|
@apply hidden;
|
|
}
|