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

github.com/rafed/ramium.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafed Muhammad Yasir <rafed123@yahoo.com>2020-06-10 17:26:17 +0300
committerRafed Muhammad Yasir <rafed123@yahoo.com>2020-06-10 17:26:17 +0300
commitfbbc7d6c044cd8eec1b384e0a3e4fe519e0d68f1 (patch)
treeb519cf2ae5fdc99ea71d673f82c50fca4e310e3e
parentfa267de70d4857cc2782ba507a50ba29e3ee816b (diff)
Reduced title and highlight size, fixed nested list
-rw-r--r--exampleSite/content/posts/1. markdown-syntax.md4
-rw-r--r--layouts/_default/single.html2
-rw-r--r--static/css/ramium.css5
3 files changed, 8 insertions, 3 deletions
diff --git a/exampleSite/content/posts/1. markdown-syntax.md b/exampleSite/content/posts/1. markdown-syntax.md
index a4495b8..bc745dd 100644
--- a/exampleSite/content/posts/1. markdown-syntax.md
+++ b/exampleSite/content/posts/1. markdown-syntax.md
@@ -118,8 +118,8 @@ html
#### Nested list
* Item
-1. First Sub-item
-2. Second Sub-item
+ 1. First Sub-item
+ 2. Second Sub-item
## Other Elements — abbr, sub, sup, kbd, mark
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 3a30fb3..4f4af35 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,7 +1,7 @@
{{ define "main" }}
<div class="content blog">
- <h1 class="title">{{ .Title | title }}</h1>
+ <h1>{{ .Title | title }}</h1>
<div id="infobar" class="level is-mobile">
<div class="level-left">
diff --git a/static/css/ramium.css b/static/css/ramium.css
index e0ae0b0..eacb0c6 100644
--- a/static/css/ramium.css
+++ b/static/css/ramium.css
@@ -215,3 +215,8 @@ kbd {
padding-right: 5px;
border-radius: 4px;
}
+
+/**** For codes ****/
+.highlight {
+ font-size: 0.9em;
+} \ No newline at end of file