diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2015-07-17 12:31:06 -0700 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2015-07-17 12:31:06 -0700 |
commit | effd834bd74c3b6a25ebaf59adcab6bd6d29cbdc (patch) | |
tree | 8d73b5f8a552383ff7da55659ed3e50679463001 /source/css/theme.css | |
parent | e37944f4a78ba4d2695eeec75b25b1c20aeef933 (diff) | |
download | my_new_personal_website-effd834bd74c3b6a25ebaf59adcab6bd6d29cbdc.tar.xz my_new_personal_website-effd834bd74c3b6a25ebaf59adcab6bd6d29cbdc.zip |
index.html TOC: use <table> instead of <ul>
For better formatting.
The following screenshots illustrate the difference:
* https://i.imgur.com/ZfkUpBG.png
* https://i.imgur.com/S6cRK00.png
I also reduced the indentation on the left of each year's index from 2em
to 1em.
Diffstat (limited to 'source/css/theme.css')
-rw-r--r-- | source/css/theme.css | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/source/css/theme.css b/source/css/theme.css index 3a01e5b4..cbcb6750 100644 --- a/source/css/theme.css +++ b/source/css/theme.css @@ -185,13 +185,15 @@ footer .rfooter .rss-icon { font-size: 0; } -div.indextoc ul { - list-style-type: none; - padding-left: 2em; +div.indextoc table { + margin-left: 1em; } -div.indextoc ul li time.tocdate { - float: left; +div.indextoc td { + vertical-align: top; +} + +div.indextoc td.date { width: 5em; } |