Mobile changes to header and footer

This commit is contained in:
kjodle 2016-02-13 20:21:11 -05:00
parent ce7ce106d1
commit 0b85dd6545
2 changed files with 38 additions and 2 deletions

View File

@ -521,11 +521,16 @@ footer a:hover {
width: 30%; width: 30%;
} }
nav#footer-menu {
padding: 1em;
}
ul#footermenu-ul { ul#footermenu-ul {
list-style-type: none; list-style-type: none;
padding: 0; padding: 0;
} }
/*
ul#footermenu-ul li { ul#footermenu-ul li {
display: block; display: block;
float: left; float: left;
@ -555,7 +560,7 @@ ul#footermenu-ul a:hover {
background: #444; background: #444;
color: #fff; color: #fff;
} }
*/
/**********************************/ /**********************************/
/* 10. Special Sections */ /* 10. Special Sections */

View File

@ -9,6 +9,11 @@ body {
color: blue; color: blue;
} }
body > header {
background: #333;
color: #fff;
}
#container { #container {
width: 100%; width: 100%;
max-width: auto; max-width: auto;
@ -29,10 +34,36 @@ body {
} }
#site-title, #site-title,
#site-desc { #site-desc,
#social-media-menu {
float: none; float: none;
width: 100%; width: 100%;
padding: 0.5em; padding: 0.5em;
text-align: center;
}
#site-title h1,
#site-title a,
#site-desc,
#site-desc a {
color: #fff;
}
body > footer{
background: #333;
color: #fff;
}
#footer-menu {
padding: 1em;
}
#copyright,
#credits {
float: none;
padding: 0.5em;
width: auto;
text-align: center;
} }