about summary refs log tree commit diff stats
path: root/app/assets/stylesheets/main
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-10-11 12:26:55 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2023-10-11 12:26:55 -0400
commit85de7c04ab66e8029d69b350fbfecd22a8673fc2 (patch)
tree0cb0be99597d2395ebe6464a5328486a35c3e7b8 /app/assets/stylesheets/main
parente09aa803cf3905c82c29dbaa9101cc4a4639cc5a (diff)
downloadthoughts-85de7c04ab66e8029d69b350fbfecd22a8673fc2.tar.gz
thoughts-85de7c04ab66e8029d69b350fbfecd22a8673fc2.tar.bz2
thoughts-85de7c04ab66e8029d69b350fbfecd22a8673fc2.zip
Blog title links
Diffstat (limited to 'app/assets/stylesheets/main')
-rw-r--r--app/assets/stylesheets/main/entries.scss15
1 files changed, 14 insertions, 1 deletions
diff --git a/app/assets/stylesheets/main/entries.scss b/app/assets/stylesheets/main/entries.scss index 1b2d1c6..b511333 100644 --- a/app/assets/stylesheets/main/entries.scss +++ b/app/assets/stylesheets/main/entries.scss
@@ -5,7 +5,7 @@
5#blog-post { 5#blog-post {
6 font-size: 16px; 6 font-size: 16px;
7 line-height: 24px; 7 line-height: 24px;
8 margin: 0 1em; 8 margin: 0 1em 1em;
9 9
10 .blog-title { 10 .blog-title {
11 h2 { 11 h2 {
@@ -16,6 +16,19 @@
16 color: #59770e; 16 color: #59770e;
17 border-bottom: 1px dotted #CCCCCC; 17 border-bottom: 1px dotted #CCCCCC;
18 padding-bottom: 3px; 18 padding-bottom: 3px;
19
20 a {
21 text-decoration: none;
22 color: #59770e;
23
24 &:visited {
25 color: #59770e;
26 }
27
28 &:hover {
29 text-decoration: underline;
30 }
31 }
19 } 32 }
20 } 33 }
21 34