add utterances

This commit is contained in:
Sandro Stikić 2024-07-20 11:06:11 +08:00
parent c620187811
commit a5b96f006f
No known key found for this signature in database
9 changed files with 93 additions and 14 deletions

View file

@ -81,7 +81,7 @@ a.read-more:active {
padding: 3px 8px;
margin-bottom: 5px;
text-align: center;
font-size: 13px;
font-size: 0.8125rem;
font-weight: 500;
border-radius: 8px;
border: 1px solid transparent;

View file

@ -1,3 +1,8 @@
html {
/* Base font size */
font-size: 16px;
}
/*!
* Hack typeface https://github.com/source-foundry/Hack
* License: https://github.com/source-foundry/Hack/blob/master/LICENSE.md

View file

@ -1,3 +1,8 @@
html {
/* Base font size */
font-size: 16px;
}
/*!
* Hack typeface https://github.com/source-foundry/Hack
* License: https://github.com/source-foundry/Hack/blob/master/LICENSE.md

View file

@ -29,8 +29,6 @@ body {
}
h1, h2, h3, h4, h5, h6 {
display: flex;
align-items: center;
font-weight: bold;
line-height: 1.3;
}
@ -97,7 +95,7 @@ figure {
}
figcaption {
font-size: 14px;
font-size: 0.875rem;
padding: 5px 10px;
margin-top: 5px;
background: var(--accent);
@ -118,7 +116,6 @@ figure {
}
code {
font-family: Hack, DejaVu Sans Mono, Monaco, Consolas, Ubuntu Mono, monospace;
font-feature-settings: normal;
background: var(--accent-alpha-20);
padding: 1px 6px;
@ -127,7 +124,6 @@ code {
}
pre {
font-family: Hack, DejaVu Sans Mono, Monaco, Consolas, Ubuntu Mono, monospace;
padding: 20px;
font-size: .95rem;
overflow: auto;

View file

@ -1,13 +1,13 @@
@import 'variables';
.pagination {
margin-top: 50px;
margin-top: 25px;
&__title {
display: flex;
text-align: center;
position: relative;
margin: 100px 0 20px;
margin: 25px 0 20px;
&-h {
text-align: center;

View file

@ -4,5 +4,6 @@
@import 'logo';
@import 'main';
@import 'post';
@import 'comments';
@import 'pagination';
@import 'footer';