body *{
    font-family: 'Helvetica Neue','Microsoft Yahei','sans-serif'
}

.container {
  width: 80%;
  margin: auto;
}

@media (orientation: portrait) {
  .container {
  width: 100%;
}  
}

nav ul, footer ul {
    font-weight: bold;
    display: flex;
    flex-flow: row wrap;
}

nav ul li, footer ul li {
    justify-content: flex-start;
    margin-right: 10%;
    list-style: none;
}

nav ul li {
    font-size:2rem;
}

nav {
    border-bottom: 1px solid #d5d5d5;
}


footer {
    border-top: 1px solid #d5d5d5;
    font-size: .8rem;
}

a {
    text-decoration: none;
    color: #999;
}

a:hover {
    text-decoration: underline;
}

nav ul li:hover, footer ul li:hover{
    background-color:#d5d5d5;
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8rem;
    color: #333;
}


ul.posts { 
    font-size: 1.5rem;
}

ul.posts>li {
    list-style: square;
    margin-top: 1rem;
}

p.meta{
   font-family: 'PingFang SC','Sans-Serif';
   font-weight: bolder; 
}


.post img{
    border: 1px #333;
    max-width: 100%;
    display: block;
    margin: auto;
    box-shadow: 1px 1px 10px #333;
}

.post h2{
    font-size: 2rem;
}

.post h3{
    font-size:1.6rem;
}

.post h4{
    font-size: 1.4rem;
}

.post h5{
    font-size: 1.2rem;
}

.post a{
    color:#3E92CC;
}

.post blockquote{
    padding: 0.2rem;
    background-color: #d5d5d5;
}

.post ul, .post ol{
    font-size: 1.2rem;
}

.word_counter{
    font-size: 0.8rem;
}


.homepage_banner{
  background:url();
}

.entries{
    padding: 0;
    list-style-type: none;
}

.entries img{
    width: 550px;
    max-width: 100%;
}

.aboutme p{
    font-family:monospace;
}

.aboutme a{
  color: #F2AF29;
}

.tags {
  list-style: none;
  margin: 0;
  overflow: hidden; 
  padding: 0;
}

.blog_index_tags{
  display: inline-block;
}

.blog_index_tags a{
  margin-bottom:0;
  padding-bottom:0;
}

.blog_index_tags, .blog_index_meta{
  vertical-align: middle;
}

.tags li {
  float: left; 
}

.tag {
  background: #eee;
  border-radius: 3px 0 0 3px;
  color: #999;
  display: inline-block;
  height: 26px;
  line-height: 26px;
  padding: 0 20px 0 23px;
  position: relative;
  margin: 0 10px 10px 0;
  text-decoration: none;
  -webkit-transition: color 0.2s;
}

.tag::before {
  background: #fff;
  border-radius: 10px;
  content: '';
  height: 6px;
  left: 10px;
  position: absolute;
  width: 6px;
  top: 10px;
}

.tag::after {
  background: #fff;
  border-left: 10px solid #eee;
  border-top: 13px solid transparent;
  content: '';
  position: absolute;
  right: 0;
  top: 0;
}

.tag:hover {
  background-color: #d5d5d5;
  color: white;
  text-decoration: none;
}

.tag:hover::after {
   border-left-color: #d5d5d5; 
}

.tag_index_posts{
    font-size: 1.5rem;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

code{
    max-width: 100%;
    overflow: scroll;    
}