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

github.com/calintat/minimal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalin Tataru <calintat@gmail.com>2019-11-01 02:23:08 +0300
committerCalin Tataru <calintat@gmail.com>2019-11-01 02:23:08 +0300
commit182410a422467bea5cc164910358d6c83414419f (patch)
tree046af83b0726e35e4d4dffd336fa24a7ca66af2f
parent0545791038fb07ed59d17a293acfcf1233038274 (diff)
parent296c9be5d234f936993cdbff1a4d1cbd64ad3bda (diff)
Merge branch 'master' of https://github.com/calintat/minimal
-rw-r--r--layouts/_default/list.html2
-rw-r--r--layouts/_default/single.html2
-rw-r--r--layouts/post/single.html2
-rw-r--r--static/css/main.css34
4 files changed, 24 insertions, 16 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index d2a1cc8..38aaf9b 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -4,7 +4,7 @@
<h2>{{ .Title }}</h2>
- {{ range (.Paginator 4).Pages }} {{ partial "list-item" . }} {{ end }}
+ {{ range (.Paginator 5).Pages }} {{ partial "list-item" . }} {{ end }}
</main>
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index f790778..26717de 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -8,7 +8,7 @@
{{ partial "tags" . }}
</div>
- <br> <div class="text-justify">{{ .Content }}</div>
+ <div align="start" class="content">{{ .Content }}</div>
</main>
diff --git a/layouts/post/single.html b/layouts/post/single.html
index 15b53c9..833ced0 100644
--- a/layouts/post/single.html
+++ b/layouts/post/single.html
@@ -8,7 +8,7 @@
{{ partial "tags" . }}
</div>
- <br> <div class="text-justify">{{ .Content }}</div>
+ <div align="start" class="content">{{ .Content }}</div>
<!-- Related posts -->
{{ $related := first 3 (where (where (where .Site.Pages.ByDate.Reverse ".Type" "==" "post") ".Params.tags" "intersect" .Params.tags) "Permalink" "!=" .Permalink) }}
diff --git a/static/css/main.css b/static/css/main.css
index f9065d6..3da1763 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -20,13 +20,7 @@ img {
max-width: 100%;
}
-/* Footer */
-
-.copyright {
- margin: 15px 0;
-}
-
-/* Home page */
+/* Homepage */
.intro {
transform: translateY(22vh);
@@ -42,13 +36,21 @@ img {
font-size: 3vmin;
}
-.intro > .profile {
+/* Page content */
+
+.content {
+ padding-top: 20px;
+}
+
+/* Profile picture */
+
+.profile {
width: 10vh;
height: 10vh;
border-radius: 50%;
}
-/* Apply accent colour to links */
+/* Colored links */
a:link, a:visited {
color: var(--accent);
@@ -62,7 +64,13 @@ a:hover {
color: var(--accent) !important;
}
-/* Paginator at bottom of list view */
+/* Copyright message */
+
+.copyright {
+ margin: 15px 0;
+}
+
+/* Paginator */
.pages {
padding: 15px 0;
@@ -72,7 +80,7 @@ a:hover {
padding: 0 15px;
}
-/* List item for posts and projects */
+/* List item for posts/projects */
.item {
padding: 10px 0;
@@ -82,14 +90,14 @@ a:hover {
background-color: var(--accent);
}
-/* Navigation bar icons */
+/* Navigation icons */
.navbar-icon {
font-size: 125%;
display: inline-block !important;
}
-/* Coloured borders at top and bottom of the page */
+/* Colored borders at top/bottom of page */
.navbar.navbar-default {
border-top: var(--border-width) solid var(--accent);