diff --git a/sass/partials/_layout.scss b/sass/partials/_layout.scss index 9974d9e..ed22008 100644 --- a/sass/partials/_layout.scss +++ b/sass/partials/_layout.scss @@ -160,11 +160,32 @@ */ #site-footer { background-color: $deep-blue; - padding: 10px 0; color: white; font-size: .8em; a { color: white; } + + .content { + margin: 1.3em 0 1em; /* .content & menu's h2 are "meta-lines" of footer */ + } + + .block-menu h2 { + font-size: 1.3em; + margin: 1em 0; /* indents differ from the .content's indents */ + } + ul.menu { + font-size: 14px; /* .9em does not work */ + padding-left: 0; + margin: 0; /* indents are provided by .content */ + + li.leaf { + display: inline; /* display items in single line */ + list-style: none; /* no bullets for items */ + } + li.first { + margin-left: 0; + } + } }