1
0
This commit is contained in:
syui 2024-04-24 20:40:45 +09:00
parent 32634ba6ec
commit 7ee09e2266
Signed by: syui
GPG Key ID: 5417CFEBAD92DF56
2 changed files with 13 additions and 2 deletions

View File

@ -10,13 +10,16 @@
<!-- <!--
{{ partial "particles.html" . }} {{ partial "particles.html" . }}
--> -->
<div class="logo"> <div class="logo">
{{ partial "svg.html" . }} {{ partial "svg.html" . }}
{{ if eq $o "" }}
{{ partial "term.html" . }} {{ partial "term.html" . }}
{{ end }}
</div> </div>
</header> </header>
{{ if eq $o ""}} {{ if eq $o "" }}
<div class="hotkeys-docs"> <div class="hotkeys-docs">

View File

@ -394,6 +394,9 @@ header#header {
button.tag { button.tag {
display:none; display:none;
} }
article {
padding: 10px;
}
} }
.nav { .nav {
@ -1165,7 +1168,7 @@ li.commit a span.icon-moji_a {
} }
blockquote { blockquote {
background: #fff; background: #f1f1f1;
padding: 20px; padding: 20px;
margin: 20px 0; margin: 20px 0;
} }
@ -1181,3 +1184,8 @@ blockquote {
.pager a { .pager a {
color: #fff700; color: #fff700;
} }
article {
padding: 40px;
background: #fff;
}