Update post.html

This commit is contained in:
Meekdai 2023-08-12 21:22:54 +08:00
parent 1db7bb30bb
commit 009e29cc73
1 changed files with 5 additions and 4 deletions

View File

@ -5,7 +5,8 @@
h1 a:not([href]){color:inherit;text-decoration:none;vertical-align: bottom;font-size:40px;font-family:Monaco;} h1 a:not([href]){color:inherit;text-decoration:none;vertical-align: bottom;font-size:40px;font-family:Monaco;}
.title-right{display:flex;margin:auto 0 0 auto;} .title-right{display:flex;margin:auto 0 0 auto;}
.title-right .circle{padding: 14px 16px;margin-right:8px;} .title-right .circle{padding: 14px 16px;margin-right:8px;}
#postBody{border-bottom: 1px solid var(--color-border-default);} #postBody{border-bottom: 1px solid var(--color-border-default);padding-bottom:36px;}
#postBody hr{height:2px;}
#cmButton{height:48px;margin-top:48px;} #cmButton{height:48px;margin-top:48px;}
#comments{margin-top:64px;} #comments{margin-top:64px;}
</style> </style>
@ -18,7 +19,7 @@ h1 a:not([href]){color:inherit;text-decoration:none;vertical-align: bottom;font-
<button id="buttonHome" class="btn btn-invisible circle" onclick="window.location.href='/'" title="{{ i18n['home'] }}"> <button id="buttonHome" class="btn btn-invisible circle" onclick="window.location.href='/'" title="{{ i18n['home'] }}">
<svg class="octicon" width="16" height="16"> <svg class="octicon" width="16" height="16">
<path id="pathHome" fill-rule="evenodd"></path> <path id="pathHome" fill-rule="evenodd" d="{{ IconList['home'] }}"></path>
</svg> </svg>
</button> </button>
@ -28,9 +29,9 @@ h1 a:not([href]){color:inherit;text-decoration:none;vertical-align: bottom;font-
</svg> </svg>
</button> </button>
<button id="changeTheme" class="btn btn-invisible circle" onclick="modeSwitch()" title="{{ i18n['switchTheme'] }}"> <button id="changeTheme" class="btn btn-invisible circle" onclick="modeSwitch();" title="{{ i18n['switchTheme'] }}">
<svg class="octicon" width="16" height="16" > <svg class="octicon" width="16" height="16" >
<path id="themeSwitch" fill-rule="evenodd" d="{{ IconList['home'] }}"></path> <path id="themeSwitch" fill-rule="evenodd"></path>
</svg> </svg>
</button> </button>