diff options
author | Viktor Kleen <viktor@kleen.org> | 2015-02-24 02:53:38 +0000 |
---|---|---|
committer | Viktor Kleen <viktor@kleen.org> | 2015-02-24 02:53:38 +0000 |
commit | da42c7dd92e74e0860766ff5013a7eee3b72d809 (patch) | |
tree | a162f6cc795067684348ef080a4e4e1bf203dc29 | |
parent | 63d743bb102865a9163eb37683a77436d006b690 (diff) | |
download | dirty-haskell.org-da42c7dd92e74e0860766ff5013a7eee3b72d809.tar dirty-haskell.org-da42c7dd92e74e0860766ff5013a7eee3b72d809.tar.gz dirty-haskell.org-da42c7dd92e74e0860766ff5013a7eee3b72d809.tar.bz2 dirty-haskell.org-da42c7dd92e74e0860766ff5013a7eee3b72d809.tar.xz dirty-haskell.org-da42c7dd92e74e0860766ff5013a7eee3b72d809.zip |
fix some more things
-rw-r--r-- | posts/blog-architecture-2.md | 3 | ||||
-rw-r--r-- | style.css | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/posts/blog-architecture-2.md b/posts/blog-architecture-2.md index 7571db1..1e6ff43 100644 --- a/posts/blog-architecture-2.md +++ b/posts/blog-architecture-2.md | |||
@@ -3,12 +3,15 @@ | |||
3 | It's been more than a month since the last post here. Sorry about that. But I | 3 | It's been more than a month since the last post here. Sorry about that. But I |
4 | have now implemented a nice and fancy new feature for math.kleen.org, namely | 4 | have now implemented a nice and fancy new feature for math.kleen.org, namely |
5 | theorem environments: | 5 | theorem environments: |
6 | |||
6 | <thm> | 7 | <thm> |
7 | This could be your theorem here! | 8 | This could be your theorem here! |
8 | </thm> | 9 | </thm> |
10 | |||
9 | <cor> | 11 | <cor> |
10 | Some theorems come with corollaries. | 12 | Some theorems come with corollaries. |
11 | </cor> | 13 | </cor> |
14 | |||
12 | How these work ties in quite well with describing how LaTeX formulas are | 15 | How these work ties in quite well with describing how LaTeX formulas are |
13 | converted to SVG for display in your browser. For example: | 16 | converted to SVG for display in your browser. For example: |
14 | $$ | 17 | $$ |
@@ -23,7 +23,7 @@ div.theorem:before { | |||
23 | font-weight: bold; | 23 | font-weight: bold; |
24 | } | 24 | } |
25 | 25 | ||
26 | div.theorem div.lemma div.proposition div.definition div.corollary { | 26 | div.theorem, div.lemma, div.proposition, div.definition, div.corollary { |
27 | text-indent: 2em; | 27 | text-indent: 2em; |
28 | margin-top: 1em; | 28 | margin-top: 1em; |
29 | margin-bottom: 1em; | 29 | margin-bottom: 1em; |