about summary refs log tree commit diff
path: root/users/fcuny/notes/static/css
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-04-06 12:32:43 -0700
committerFranck Cuny <franck@fcuny.net>2021-04-06 12:32:43 -0700
commit11e25707f013a4251ab83a52ed0f3b008764a1ae (patch)
treefee51188d4c1f63609d2bc597a4a6b7af043ebc9 /users/fcuny/notes/static/css
parentcss: update style for links and headers (diff)
downloadworld-11e25707f013a4251ab83a52ed0f3b008764a1ae.tar.gz
layout: add date and tags to single pages
We want to show the tags and the published/updated date for the
articles.

Add to the CSS the classes for these new elements.
Diffstat (limited to '')
-rw-r--r--users/fcuny/notes/static/css/custom.css16
1 files changed, 16 insertions, 0 deletions
diff --git a/users/fcuny/notes/static/css/custom.css b/users/fcuny/notes/static/css/custom.css
index b0ec570..9d4faf1 100644
--- a/users/fcuny/notes/static/css/custom.css
+++ b/users/fcuny/notes/static/css/custom.css
@@ -53,3 +53,19 @@ pre {
     font-family: "Roboto Mono", Monaco, "Lucida Console", monospace;
     overflow: scroll;
 }
+
+.tags {
+    background-color: #eeeeee;
+    border-radius:8px;
+    padding:0 .5rem;
+    font-size: 90%;
+}
+
+.meta_tags a:link,
+.meta_tags a:visited {
+    text-decoration: none;
+}
+
+.meta_date {
+    font-style: italic;
+}