/*****************************************************************************/
/*
/* Common
/*
/*****************************************************************************/

/* Global Reset */
@import url(http://thecodeplayer.com/uploads/fonts/fontawesome/css/font-awesome.min.css);
@import url(http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);
@import url(http://fonts.googleapis.com/css?family=Montserrat);
@import url(http://fonts.googleapis.com/css?family=Gentium+Book+Basic:400,700italic,700,400italic);
/*basic reset*/
* {margin: 0; padding: 0;}

body {
  background-color: #FFF;
  font-family: "Gentium Book Basic", serif;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

a {
  color: #4F76AC;
  text-decoration: none;
}

a:hover {
  color: #B87447;
}

h1 { 
    font-family: 'Cinzel', serif;
    color: #333;
    padding: 10px;
    text-align: center; 
}
h2  {
    font-family: 'Wellfleet', cursive; 
    color: #333;
    padding: 10px;
    text-align: center;
}

p { margin: 1em 0; }

a:visited { color: #7A4A7A;}

/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/
ul.posts {
  list-style-type: none;
  margin-bottom: 2em;
}



ul.posts li {
  line-height: 1.75em;
}

ul.posts span {
  color: #aaa;
  font-family: "Gentium Book Basic", serif;
  font-size: 80%;
}

.footer {
  border-top: 1px dashed #FF8080;
}

/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/

.site {
  width: 800px;
  margin: 20px auto;
}

.nav {
  font-family: 'Wellfleet', cursive; 
  margin: 30px 0;
  padding: 10px 0;
  text-align: center;
  border-top: 1px dashed #eee;
  border-bottom: 1px dashed #eee;
}

.nav a {
  display: inline-block;
  margin: 0 10px;
}


/*.site .header a {
  font-weight: bold;
  text-decoration: none;
}

.site .header h1.title {
  display: inline-block;
  margin-bottom: 2em;
}

.site .header h1.title a {
  color: #a00;
}

.site .header h1.title a:hover {
  color: #000;
}

.site .header a.extra {
  color: #aaa;
  margin-left: 1em;
}

.site .header a.extra:hover {
  color: #000;
}

.site .meta {
  color: #aaa;
}

.site .footer {
  font-size: 80%;
  color: #666;
  border-top: 4px solid #eee;
  margin-top: 2em;
  overflow: hidden;
}

.site .footer .contact {
  float: left;
  margin-right: 3em;
}

.site .footer .contact a {
  color: #8085C1;
}

.site .footer .rss {
  margin-top: 1.1em;
  margin-right: -.2em;
  float: right;
}

.site .footer .rss img {
  border: 0;
}*/

/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/

/* standard */
.post pre {
  border: 1px solid #ddd;
  background-color: transparent;
  padding: 0 .4em;
}

.post ul, .post ol {
  margin-left: 1.35em;
}

.post code {
  border: 1px solid #ddd;
  background-color: #eef;
  padding: 0 .2em;
}

.post pre code {
  border: none;
}

/* terminal */
.post pre.terminal {
  border: 1px solid #000;
  background-color: #333;
  color: #FFF;
}

.post pre.terminal code {
  background-color: #333;
}


.icons ul {
  width: 29%;
  margin: 0 auto;
}

.meta {
  text-align: center;
  margin: 10px 0;
  color: #999;
}

.icons ul li{
  list-style: none;
  box-shadow: 0 0 10px rgba(100, 100, 100, 0.2) inset,1px 1px 1px #C0C0C0;
  display: inline-block;
  line-height: 1;
  margin: 1px;
  border-radius: 3px;
  position: relative;
}

.icons i {
  display: block;
  font-size: 24px;
  line-height: 50px; width: 50px;
  text-align: center;
}
.icons a {
  text-decoration: none;
  color: white;
  display: inline-block;
  margin: 10px;
  border-radius: 12px;
  position: relative;
}
/*Now we will create fish-eye shapes using pseudo elements and clip them to add a curve to the sides of the icons*/
.icons a:before, .icons a:after {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 100%; height: 100%;
  background: inherit;
  border-radius: 100%; /*circle*/
  /*time to transform the circle into fish-eye shape. iOS7 style now.*/
  transform: scaleX(2) scaleY(1.05);
  /*clipping the left and right sides - 17px from the left and right*/
  clip: rect(0, 33px, 50px, 17px);
  /*pushing it behind the icon*/
  z-index: -1;
}
/*duplicating the :before element and rotating it 90deg and swapping the X/Y transforms*/
.icons a:after {
  transform: scaleY(2) scaleX(1.05) rotate(90deg);
}
/*colors*/
.tw {background: #00ACF0;}
.fb {background: #3B5997;}
.gp {background: #DB4F48;}
.ig {background: #447397;}
.li {background: #007DB8;}
.yt {background: #D12E2E;}
