about summary refs log tree commit diff stats
path: root/app/assets/stylesheets
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-10-11 16:25:37 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2023-10-11 16:25:37 -0400
commit5f860c66d300654934848aee1abe8e5c0d41836e (patch)
tree73c6deda7baa751279f7b4fb9a0f10572cf92f0f /app/assets/stylesheets
parent192705645135aa20951d78949d7e49e4bad58974 (diff)
downloadthoughts-5f860c66d300654934848aee1abe8e5c0d41836e.tar.gz
thoughts-5f860c66d300654934848aee1abe8e5c0d41836e.tar.bz2
thoughts-5f860c66d300654934848aee1abe8e5c0d41836e.zip
Added blog archive
The path to blog posts is now "blog" instead of "says", btw.
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r--app/assets/stylesheets/main/entries.scss31
1 files changed, 31 insertions, 0 deletions
diff --git a/app/assets/stylesheets/main/entries.scss b/app/assets/stylesheets/main/entries.scss index b511333..b83082c 100644 --- a/app/assets/stylesheets/main/entries.scss +++ b/app/assets/stylesheets/main/entries.scss
@@ -16,6 +16,7 @@
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 font-family: "Trebuchet MS", sans-serif;
19 20
20 a { 21 a {
21 text-decoration: none; 22 text-decoration: none;
@@ -186,3 +187,33 @@
186 } 187 }
187 } 188 }
188} 189}
190
191#blog-archive {
192 margin-left: 1em;
193
194 h2, h3 {
195 font-family: "Trebuchet MS", sans-serif;
196 }
197}
198
199.archive-link {
200 margin-left: 1em;
201
202 a {
203 text-decoration: none;
204 font-weight: bold;
205
206 &, &:visited {
207 color: #ee2c2c;
208 }
209
210 &:hover {
211 text-decoration: underline;
212 color: #9ea1ad;
213 }
214 }
215
216 small {
217 margin-left: 1.5em;
218 }
219}