aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/styles.css
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2023-11-03 21:13:33 +0800
committer简律纯 <i@jyunko.cn>2023-11-03 21:13:33 +0800
commit9f0d43fe099a95ab1516ae951dcb60a89e76a5a5 (patch)
tree51614fe47bff8bb11028a07d4a35c34c9ff6594a /docs/styles.css
parent8f135707d069c900e055dae71e69909d6b9a41bb (diff)
downloadHydroRoll-9f0d43fe099a95ab1516ae951dcb60a89e76a5a5.tar.gz
HydroRoll-9f0d43fe099a95ab1516ae951dcb60a89e76a5a5.zip
chore: delete useless codes
Diffstat (limited to 'docs/styles.css')
-rw-r--r--docs/styles.css55
1 files changed, 0 insertions, 55 deletions
diff --git a/docs/styles.css b/docs/styles.css
deleted file mode 100644
index e61c9fd..0000000
--- a/docs/styles.css
+++ /dev/null
@@ -1,55 +0,0 @@
-@tailwind base;
-@tailwind components;
-@tailwind utilities;
-@tailwind variants;
-
-/* Override the Tailwind preflight */
-button[type="submit"] {
- @apply bg-black;
-}
-
-@layer utilities {
- /* Hide scrollbar for Chrome, Safari and Opera */
- .no-scrollbar::-webkit-scrollbar {
- display: none;
- }
-
- /* Hide scrollbar for Edge and Firefox */
- .no-scrollbar {
- -ms-overflow-style: none; /* Edge */
- scrollbar-width: none; /* Firefox */
- }
-
- @keyframes slidein {
- from {
- transform: translate3d(0, 0, 0);
- }
-
- to {
- transform: translate3d(-100%, 0, 0);
- }
- }
-
- .wrapper {
- position: relative;
- white-space: nowrap;
- display: inline-block;
- animation: slidein 120s linear infinite;
- filter: grayscale(100%);
- }
-}
-
-/* Override Nextra defaults */
-article.nextra-body-typesetting-article {
- line-height: 1.75;
-}
-article.nextra-body-typesetting-article p {
- line-height: 1.75 !important;
-}
-
-article.nextra-body-typesetting-article h1,
-article.nextra-body-typesetting-article h2,
-article.nextra-body-typesetting-article h3,
-article.nextra-body-typesetting-article h4 {
- line-height: 1.25 !important;
-}