aboutsummaryrefslogtreecommitdiff
path: root/stylesheets/partials/minima
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2018-09-25 19:13:16 +0200
committerMiquel Sabaté Solà <msabate@suse.com>2018-09-25 19:13:16 +0200
commit259e8ab7a3a7e607263ca07e53787d85881bab8a (patch)
treea726ede11d679fe93515cca062692bfc29e7d87f /stylesheets/partials/minima
parentf5329b13315fcc501cd6c8630e0158eae4a88f16 (diff)
downloadjo.mssola.com-259e8ab7a3a7e607263ca07e53787d85881bab8a.tar.gz
jo.mssola.com-259e8ab7a3a7e607263ca07e53787d85881bab8a.zip
Re-bumped much of the application
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'stylesheets/partials/minima')
-rw-r--r--stylesheets/partials/minima/_base.scss2
-rw-r--r--stylesheets/partials/minima/_layout.scss32
2 files changed, 33 insertions, 1 deletions
diff --git a/stylesheets/partials/minima/_base.scss b/stylesheets/partials/minima/_base.scss
index 69b12cf..ce2090c 100644
--- a/stylesheets/partials/minima/_base.scss
+++ b/stylesheets/partials/minima/_base.scss
@@ -104,7 +104,7 @@ a {
text-decoration: none;
&:visited {
- color: darken($brand-color, 15%);
+ color: $brand-color;
}
&:hover {
diff --git a/stylesheets/partials/minima/_layout.scss b/stylesheets/partials/minima/_layout.scss
index e07a669..dcfa539 100644
--- a/stylesheets/partials/minima/_layout.scss
+++ b/stylesheets/partials/minima/_layout.scss
@@ -38,6 +38,7 @@
a {
margin-left: 20px;
+ color: $text-color;
}
.page-link {
@@ -194,6 +195,10 @@
@include relative-font-size(1.75);
}
+#tag-search-message, #oh-its-empty {
+ display: none;
+}
+
.post-list {
margin-left: 0;
list-style: none;
@@ -206,6 +211,12 @@
.post-meta {
font-size: $small-font-size;
color: $grey-color;
+ display: flex;
+ margin-bottom: 30px;
+
+ .separator {
+ width: 5px;
+ }
}
.post-link {
@@ -319,6 +330,19 @@ img#image-profile {
font-size: 12px;
}
+#footnotes {
+ margin-top: 50px;
+
+ p.footpara {
+ display: inline;
+ }
+
+ .footdef {
+ font: $base-font-weight 14px/#{$base-line-height} $base-font-family;
+ margin: 10px 0;
+ }
+}
+
/*
* Code blocks
*/
@@ -330,3 +354,11 @@ img#image-profile {
font-family: monospace,monospace;
color: #566b78;
}
+
+code {
+ font-size: 12px !important;
+ background: #f5f7f9;
+ border-bottom: 1px solid #d8dee9;
+ font-family: monospace,monospace;
+ color: #566b78;
+}