-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
224 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
--- | ||
comments: true | ||
--- | ||
# 我是谁? | ||
|
||
!!! quote "人生三问" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
/* .container { | ||
background: #0c5cbe9d; | ||
margin: 50px 200px 0 200px; | ||
} */ | ||
|
||
.card-container { | ||
margin: 50px 0 0 0; | ||
display: flex; | ||
flex-flow: row wrap; | ||
flex-wrap: wrap; | ||
align-content: flex-start; | ||
} | ||
|
||
.card-container .card { | ||
display: flex; | ||
/* 设置为 flexbox 布局 */ | ||
align-items: center; | ||
/* 垂直方向对齐 */ | ||
width: 280px; | ||
/* 固定宽度,或者根据需要调整 */ | ||
padding: 10px; | ||
/* 添加内边距 */ | ||
border-radius: 15px; | ||
background: #1e2129; | ||
border: 1px solid rgba(255, 255, 255, 0.5); | ||
margin: 10px; | ||
/* 卡片之间的间距 */ | ||
/* box-shadow: 0 4px 8px rgb(255, 255, 255); */ | ||
} | ||
|
||
.card-container .card .content { | ||
padding: 6px; | ||
text-align: left; | ||
} | ||
|
||
.card-container .card .content h3 { | ||
font-size: 1.8em; | ||
z-index: 1; | ||
} | ||
|
||
.card-container .card .content p { | ||
font-size: 1em; | ||
font-weight: 300; | ||
} | ||
|
||
.card-container .card .content a { | ||
position: relative; | ||
display: inline-block; | ||
padding: 8px 20px; | ||
margin-top: 15px; | ||
background: #4433ff; | ||
border-radius: 20px; | ||
text-decoration: none; | ||
font-weight: 500; | ||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); | ||
color: #fff; | ||
outline: none; | ||
border: 2px solid #4433ff; | ||
} | ||
|
||
.card-container .card .content a:hover { | ||
background: #fff; | ||
color: #4433ff; | ||
} | ||
|
||
.card-container .card .img-container { | ||
width: 60px; | ||
/* 图片容器宽度 */ | ||
height: 60px; | ||
/* 图片容器高度 */ | ||
margin-right: 3px; | ||
/* 图片和文字之间的间距 */ | ||
flex-shrink: 0; | ||
/* 防止图片缩小 */ | ||
overflow: hidden; | ||
display: flex; | ||
/* 使用 flex 布局 */ | ||
align-items: center; | ||
border-radius: 70%; | ||
/* 如果需要圆形图片 */ | ||
} | ||
|
||
.card-container .card .img-container img { | ||
width: 100%; | ||
/* 图片适应容器宽度 */ | ||
height: 100%; | ||
/* 图片适应容器高度 */ | ||
object-fit: cover; | ||
/* 确保图片按比例填充 */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<!-- | ||
Copyright (c) 2016-2025 Martin Donath <[email protected]> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to | ||
deal in the Software without restriction, including without limitation the | ||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
sell copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
IN THE SOFTWARE. | ||
--> | ||
|
||
<!-- Determine title --> | ||
{% set title = lang.t("toc") %} | ||
{% if config.mdx_configs.toc and config.mdx_configs.toc.title %} | ||
{% set title = config.mdx_configs.toc.title %} | ||
{% endif %} | ||
|
||
<!-- Table of contents --> | ||
<nav class="md-nav md-nav--secondary" aria-label="{{ title }}"> | ||
{% set toc = page.toc %} | ||
|
||
<!-- | ||
Check whether the content starts with a level 1 headline. If it does, the | ||
top-level anchor must be skipped, since it would be redundant to the link | ||
to the current page that is located just above the anchor. Therefore we | ||
directly continue with the children of the anchor. | ||
--> | ||
{% set first = toc | first %} | ||
{% if first and first.level == 1 %} | ||
{% set toc = first.children %} | ||
{% endif %} | ||
|
||
<!-- Table of contents title and list --> | ||
{% if toc %} | ||
<label class="md-nav__title" for="__toc"> | ||
<span class="md-nav__icon md-icon"></span> | ||
{{ title }} | ||
</label> | ||
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix> | ||
{% for toc_item in toc %} | ||
{% include "partials/toc-item.html" %} | ||
{% endfor %} | ||
</ul> | ||
{% endif %} | ||
</nav> |