diff options
author | Yuchen Pei <me@ypei.me> | 2021-06-18 12:58:44 +1000 |
---|---|---|
committer | Yuchen Pei <me@ypei.me> | 2021-06-18 12:58:44 +1000 |
commit | 147a19e84a743f1379f05bf2f444143b4afd7bd6 (patch) | |
tree | 3127395250cb958f06a98b86f73e77658150b43c /css | |
parent | 4fa26fec8b7e978955e5630d3f820ba9c53be72c (diff) |
Updated.
Diffstat (limited to 'css')
-rw-r--r-- | css/default.css | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/css/default.css b/css/default.css new file mode 100644 index 0000000..5a3782c --- /dev/null +++ b/css/default.css @@ -0,0 +1,71 @@ +/* +*{ + background-color: #faebbc; +} +*/ +nav { + display: inline; + float: right; +} + +#TOC:before { + content: "Table of Contents"; +} + +#TOC{ + display: inline; + float: right; + margin: 1rem; +} + +/* +nav#TOC li{ + list-style-type: none; +} +*/ + +span.logo { + float: left; +} + +header { + width: 40rem; + margin: auto; + overflow: auto; + background-color: #f3f3f3; +} + +div#content { + width: 40rem; + margin: auto; + margin-bottom: 3rem; + line-height: 1.6; +} + +a { + text-decoration: none; +} + +header a { + padding: 1rem; + display: inline-block; + background-color: #f3f3f3; +} + +blockquote { + border-left: .3rem solid #ccc; + padding-left: 1rem; +} + +a:hover{ + background-color: #ddd; +} + +li.postlistitem{ + margin-bottom: .5rem; +} + +ul.postlist{ + list-style-type: none; + padding: 0; +} |