Merge branch 'main' of https://github.com/bedefaced/risotto into main

This commit is contained in:
bedefaced 2021-08-31 04:35:41 +03:00
commit 1bed6f5dd2
2 changed files with 24 additions and 5 deletions

View file

@ -9,10 +9,7 @@
<ul class="aside__social-links"> <ul class="aside__social-links">
{{ range $item := .Site.Params.socialLinks }} {{ range $item := .Site.Params.socialLinks }}
<li> <li>
<a href="{{ $item.url }}" rel="me" aria-label="{{ $item.title }}" title="{{ $item.title }}"> <a href="{{ $item.url }}" rel="me" aria-label="{{ $item.title }}" title="{{ $item.title }}"><i class="{{ $item.icon }}" aria-hidden="true"></i></a>&nbsp;
<i class="{{ $item.icon }}" aria-hidden="true"></i>
</a>
&nbsp;
</li> </li>
{{ end }} {{ end }}
</ul> </ul>

View file

@ -104,7 +104,7 @@ ol li::marker {
/* Blockquotes */ /* Blockquotes */
blockquote { blockquote {
position: relative; position: relative;
margin-left: 1.5rem; margin: 0 0 1.5rem 1.5rem;
} }
blockquote::before { blockquote::before {
@ -130,6 +130,11 @@ kbd {
color: var(--bright-bg); color: var(--bright-bg);
} }
pre {
padding: 1.5rem;
margin: 0 0 1.5rem 0;
}
/* Emphasis */ /* Emphasis */
b, b,
strong { strong {
@ -163,3 +168,20 @@ sup, sub {
sub { sub {
top: 0.25rem; top: 0.25rem;
} }
/* Tables */
table {
border-spacing: 0;
margin: 0 0 1.5rem 0;
overflow-wrap: anywhere;
}
th, td {
padding: 0 .75rem;
vertical-align: top;
}
th:first-child, td:first-child {
padding-left: 0;
}
th {
text-align: inherit;
}