diff options
author | Vitaly Takmazov | 2018-02-07 12:49:00 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-02-07 12:49:00 +0300 |
commit | 5ed39dda637059d56f6d8c501880ec9bca7b2fee (patch) | |
tree | 1e94c1da18ef7e3798a12c7869b1fb23e30fd635 /juick-www/src/main/static | |
parent | a2fcaac118db98ddf0b028639f4276f417e45d8f (diff) |
www: hide navigation in post
Diffstat (limited to 'juick-www/src/main/static')
-rw-r--r-- | juick-www/src/main/static/style.css | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/juick-www/src/main/static/style.css b/juick-www/src/main/static/style.css index 639174c3..ce80e650 100644 --- a/juick-www/src/main/static/style.css +++ b/juick-www/src/main/static/style.css @@ -86,6 +86,11 @@ html { margin: 12px 0 0 0; width: 728px; } +#minimal_content { + margin: 0 auto; + min-width: 310px; + width: auto; +} body > header { box-shadow: 0 0 3px rgba(0, 0, 0, 0.28); background: #fff; @@ -263,10 +268,12 @@ body > header { /* #endregion */ /* #region main content */ - #content > p, #content > h1, -#content > h2 { +#content > h2, +#minimal_content > p, +#minimal_content > h1, +#minimal_content > h2 { margin: 1em 0; } .page { |