This commit is contained in:
teasiu
2026-01-03 05:34:14 +08:00
parent d7d69bdecc
commit 1437b0576d
2 changed files with 21 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ sidebar_position: 1
本手册由作者神雕热心撰写。由于工作量大,未详尽之处,敬请理解。
<a href="/docs/tutorial-extras/start" class="hinas-button">前往快速开始</a>
## 海纳思系统介绍:

View File

@@ -28,3 +28,23 @@
--ifm-color-primary-lightest: #4fddbf;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
/* 自定义按钮样式 - 适配Docusaurus Classic主题 */
.hinas-button {
display: inline-block;
background-color: #165DFF;
color: #fff !important;
padding: 10px 24px;
border-radius: 4px;
text-decoration: none !important;
font-size: 14px;
font-weight: 500;
transition: background-color 0.2s ease;
border: none;
cursor: pointer;
margin: 24px 0;
}
.hinas-button:hover {
background-color: #0F4BD8;
color: #fff !important;
}