diff options
Diffstat (limited to 'assets')
-rw-r--r-- | assets/entry.html (renamed from assets/post.html) | 4 | ||||
-rw-r--r-- | assets/entry_edit.html (renamed from assets/post_edit.html) | 0 | ||||
-rw-r--r-- | assets/static/css/default.css | 30 |
3 files changed, 17 insertions, 17 deletions
diff --git a/assets/post.html b/assets/entry.html index bb94b36..445d2ce 100644 --- a/assets/post.html +++ b/assets/entry.html @@ -1,8 +1,8 @@ -<div class="post"> +<div class="entry"> <hr class="hdiv"> <div class="head"> -<h2><span class="title"><a href="/posts/%s">%s</a></span></h2> +<h2><span class="title"><a href="/entries/%s">%s</a></span></h2> <span class="date">%s</span> </div> <div class="body"> diff --git a/assets/post_edit.html b/assets/entry_edit.html index cd2f920..cd2f920 100644 --- a/assets/post_edit.html +++ b/assets/entry_edit.html diff --git a/assets/static/css/default.css b/assets/static/css/default.css index c6dcf9a..02cb982 100644 --- a/assets/static/css/default.css +++ b/assets/static/css/default.css @@ -9,7 +9,7 @@ body { margin-right: auto; } -.post { +.entry { position: center; color: rgb(0,0,0); margin-top: 1em; @@ -19,25 +19,25 @@ body { border-color: rgb(0,0,0); } -.post .head { +.entry .head { border-bottom-style: solid; border-width: 1px; padding: 1px; } -.post .head h2 { +.entry .head h2 { padding: 0.1em; } -.post .title { +.entry .title { font-weight: bold; } -.post .title a { +.entry .title a { text-decoration: none; } -.post .date { +.entry .date { font-weight: bold; color: rgb(230,230,255); background-color: rgb(0,0,0); @@ -46,37 +46,37 @@ body { padding-left: 0.5em } -.post .tag { +.entry .tag { /* display: none;*/ text-align: right; color: rgb(230,230,255); } -.post .tag span { +.entry .tag span { background-color: rgb(0,0,0); padding: 0.1em 0.2em; font-weight: bold; color: rgb(230,230,255); } -.post .tag a { +.entry .tag a { color: rgb(230,230,255); } -.post .body { +.entry .body { padding: 0.5em; } -.post .body p { +.entry .body p { margin: 1em; } -.post .body code { +.entry .body code { /* background-color: rgb(115,115,127);*/ /* color: rgb(230,230,255);*/ } -.post .body pre { +.entry .body pre { background-color: rgb(115,115,127); color: rgb(230,230,255); margin: 1em; @@ -84,11 +84,11 @@ body { overflow-x: auto; } -.post .body h3 { +.entry .body h3 { margin: 1em; } -.post .foot { +.entry .foot { border-top-style: solid; border-width: 1px; margin: 0em; |