diff options
author | Phil Hagelberg <phil@hagelb.org> | 2019-10-31 17:44:43 -0700 |
---|---|---|
committer | Phil Hagelberg <phil@hagelb.org> | 2019-11-09 18:08:08 -0800 |
commit | 274cc18e8a585bd72353f9135c18aec0cb8e7ce3 (patch) | |
tree | 628368eda22e012846b381bce7d886e14d776c8e /priv | |
parent | 2ac1ece652621df9adf591255f4506564a8ace68 (diff) | |
download | pleroma-274cc18e8a585bd72353f9135c18aec0cb8e7ce3.tar.gz |
Visually separate header.
Diffstat (limited to 'priv')
-rw-r--r-- | priv/static/static/static-fe.css | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/priv/static/static/static-fe.css b/priv/static/static/static-fe.css index d6bb58c33..19c56387b 100644 --- a/priv/static/static/static-fe.css +++ b/priv/static/static/static-fe.css @@ -4,7 +4,7 @@ body { color: white; } -.container { +main { margin: 50px auto; max-width: 960px; padding: 40px; @@ -13,7 +13,11 @@ body { } header { - border-bottom: 2em solid #282c37; + margin: 50px auto; + max-width: 960px; + padding: 40px; + background-color: #313543; + border-radius: 4px; } .activity { @@ -57,11 +61,11 @@ a { margin-bottom: 8px; } -.h-card a { +header a, .h-card a { text-decoration: none; } -.h-card a:hover { +header a:hover, .h-card a:hover { text-decoration: underline; } |