/*
Theme Name: Walks in Spain child theme
Theme URI: //walksinspain.org
Description: Walks in Spain child theme
Author: Robbie Jackson
Version: 1.0
Tags: theme-options
Template: weaver-xtreme


    This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation, either version 2 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program.  If not, see <http://www.gnu.org/licenses/>.


About style.css:

Traditionally, a child theme provides its own style.css to override or extend the
parent style.css. This usually involved adding an "@import" to the child's style.css.

Weaver Xtreme handles the main style sheet differently. It is called "assets/css/style.weaverx.css",
and is loaded before the theme "style.css" file. Thus, there is no need to "@import" the
parent stylesheet.

So you can make overrides and extensions directly in this child style.css.

*/



/*  ------------------------------------------------------
 Add specific style overrides here...

*/
.footer-menu-class { display: block; float: right; width:75%;}
.footer-menu-class ul { display:inline; float:right; }
.footer-menu-class li { list-style-type: none; display: inline; font-size: 12px; }
.footer-menu-class li a {
	color:blue;
	text-decoration:none;
	font-weight:normal;
	border-right: thin solid #000;
	padding: 0 7px 0 3px;
}
.footer-menu-class li a:hover { color:red; text-decoration:none;}
.footer-menu-class li:last-child > a {border-right: none; margin-right: 30px; } /* remove pipe from last item */

/* The following CSS is to provide a little extra space for the Jetpack Sharing mechanism, to stop the buttons disappearing under the footer menu */
div.sharedaddy {
    margin-bottom: 50px; 
}

/* The following CSS is to highlight the walk description */
.entry-content > p:first-child {
	font-weight: bold;
	font-size: 1.5em;
	border-style: solid;
	padding: 5px; 
}