/*
Theme Name: Weaver Xtreme Child Demo V2
Theme URI: //weavertheme.com
Description: Bare minimum Weaver Xtreme Child demo theme
Author: Bruce Wampler
Author URI: //weavertheme.com/about
Version: 2.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...

  Just for example, this style will change the default BG Color for the site.
*/
body,
input,
textarea {
	background-color: #CCC;
}
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?hjmv79');
  src:  url('fonts/icomoon.eot?hjmv79#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?hjmv79') format('truetype'),
    url('fonts/icomoon.woff?hjmv79') format('woff'),
    url('fonts/icomoon.svg?hjmv79#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-new-tab:before {
  content: "\ea7e";
}
.icon-file-pdf:before {
  content: "\eadf";
}
.icon-file-word:before {
  content: "\eae1";
}
.icon-file-excel:before {
  content: "\eae2";
}
/* automatisch externerlink-icon vor einem Link setzen, wenn Link auf extern zeigt. */

.entry-content a[href^="http://"]:not([href*="https://lion-squares.de"]):before, 
.entry-content a[href^="https://"]:not([href*="https://lion-squares.de"]):before
 {
   
    font-family: 'icomoon' !important;
	font-size:0.9em;
    content: "\ea7e";
	letter-spacing:5px;
	
}
.entry-content .shariff-buttons a[href^="http://"]:not([href*="https://lion-squares.de"]):before, 
.entry-content .shariff-buttons a[href^="https://"]:not([href*="https://lion-squares.de"]):before
 {
   
    font-family: 'icomoon' !important;
	font-size:0.9em;
    content: "";
	letter-spacing:5px;
	
}

/* automatisch pdf-icon vor einem Link setzen, wenn Link auf PDF-Datei zeigt. */
 
a[href$=".pdf"]:before {
   font-family: 'icomoon' !important;
	font-size:0.9em;
    content: "\eadf";
	letter-spacing:5px;
}