Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zwbetz-gh/papercss-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/custom.css')
-rw-r--r--assets/css/custom.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/assets/css/custom.css b/assets/css/custom.css
index f67bb34..3ca5e3f 100644
--- a/assets/css/custom.css
+++ b/assets/css/custom.css
@@ -1,20 +1,47 @@
+/* base */
html {
font-size: calc(1em + 0.33vw);
}
body {
background-image: url('{{ "img/geometry2.png" | absURL }}');
}
+
+/* anchors */
a,
a:visited {
color: rgb(0, 0, 238);
+ background-image: none;
+ text-decoration: underline;
}
+
+/* navbar */
nav a,
nav a:visited {
color: #41403e;
+ text-decoration: none;
}
+
+/* blockquote */
blockquote {
font-style: italic;
}
+
+/* post list */
+.post-list {
+ font-size: 2em;
+}
+
+/* post single */
.post-title {
margin-bottom: 0.1em;
+}
+
+/* toc */
+.toc {
+ font-size: 0.85em;
+ padding: 1em;
+ margin-top: 1em;
+}
+.toc h2 {
+ font-size: 1.15em;
} \ No newline at end of file