diff options
author | mjfernez <mjf@mjfer.net> | 2021-12-22 16:38:35 -0500 |
---|---|---|
committer | mjfernez <mjf@mjfer.net> | 2021-12-22 16:38:35 -0500 |
commit | e4b7179c121473be2e53999cc50933521498c7a9 (patch) | |
tree | 36d42bef404caca4bb91d2f70f01dd5f020d4d8e /static | |
parent | 5265b6ffb405f019647fd28ede8458fd6ab40dc5 (diff) | |
download | ezcms-e4b7179c121473be2e53999cc50933521498c7a9.tar.gz |
Removed "/site" appendage. CSS fixes
This commit removes the "/site" appended to every directory and solved
the problem of redirecting links correctly by setting 'parent_dir' in
the main view context to point to '/' by default.
This also changes how titles appear to conform to my sensibilities.
Diffstat (limited to 'static')
-rw-r--r-- | static/main.css | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/static/main.css b/static/main.css index eeaeffc..08ca707 100644 --- a/static/main.css +++ b/static/main.css @@ -1,13 +1,16 @@ -h1,h2 { +h1 { text-align: center; margin: 1% auto; white-space: normal; } -h3,h4 { - text-align: justify; +h2,h3,h4 { + text-align: left; margin: 1% auto; white-space: normal; } +h2.center { + text-align: center; +} h3.center { text-align: center; } @@ -17,7 +20,7 @@ h1 { } h2 { font-size: 175%; - color: #404040; + color: #202020; } h3 { font-size: 150%; |