/* MAIN BLOG */
.content #blog {
  font-size: 18px;
}
.content #blog > .post,
.content #preview.post {
  margin-bottom: 60px;
  text-align: justify;
}
.content #blog > .post h2,
.content #preview.post h2 {
  color: #CCC;
}
.content #blog > .post > .btn-primary,
.content #preview.post > .btn-primary {
  float: right;
  margin-top: -33px;
}
.mobile .content #blog > .post > .btn-primary,
.mobile .content #preview.post > .btn-primary {
  margin-top: 5px;
}
.content #blog > .post audio,
.content #preview.post audio {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.content #blog > .post img,
.content #preview.post img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.content #blog > .post .img-inset > img,
.content #preview.post .img-inset > img {
  position: relative;
  border-radius: 6px;
  margin: 0px;
  z-index: -2;
}
.content #blog > .post .img-inset,
.content #preview.post .img-inset {
  padding: 0px;
  box-shadow: 0px 0px 30px rgba(0,0,0,0.9) inset;
  border-radius: 6px;
  width: 100%;
}
.content #blog > .post .img-float,
.content #preview.post .img-float {
  float: right;
  margin-left: 10px;
  image-rendering: pixelated;
}
.content #blog > .post .blog-image,
.content #preview.post .blog-image {
  width: 100%;
  border-radius: 6px;
}

/* BLOG PAGER */
#blog-pager {
  bottom: 0px;
  margin: 0px auto 0px;
  width: 100%;
  max-width: 750px;
  z-index: 1;
  color: rgb(69, 87, 116);
  font-family: 'Consolas', 'Courier New', Courier, monospace;
  text-align: center;
}
.mobile #blog-pager {
  position: fixed;
  background-color: #000000;/*rgb(13, 13, 17);*/
  border-top: solid 2px rgb(92, 173, 226);
  box-shadow: 0px 0px 7px rgb(92, 173, 226);
}
#blog-pager #future {
  float: left;
}
#blog-pager #past {
  float: right;
}
.mobile #blog-pager .btn-default {
  color: inherit;
  background: none;
  border: none;
}

/* POST EDITOR */
#blogeditor #list td {
  cursor: pointer;
}
#blogeditor #error {
  margin-top: 5px;
}
#blogeditor div[enablefullscreen]#content {
  background-color: #DBDBDB;
}
#blogeditor #content.fullscreen > textarea {
  box-shadow: none;
  border: none;
	height: 100%;
	background-color: inherit;
}
#blogeditor #content.fullscreen > textarea:hover,
#blogeditor #content.fullscreen > textarea:active,
#blogeditor #content.fullscreen > textarea:focus {
  box-shadow: none;
  border: none;
  height: 100%;
	transform: none;
	background-color: inherit;
}
/* Post list */
#blogeditor > .row:first-child > div:first-child {
  max-height: 737px;
  overflow-y: scroll;
}