/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
header {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0.2; }
  header:hover {
    opacity: 1.0; }
  header h1 {
    font-size: 40px; }

#content p {
  line-height: 1.6625em; }
  #content p code {
    font-size: 0.8em; }

blockquote, blockquote p {
  font-size: inherit;
  line-height: inherit; }

.post {
  margin-bottom: 3em; }
  .post .info {
    margin-bottom: 1.5em; }
    .post .info h1 {
      font-size: 30px;
      text-align: center;
      margin-bottom: 0.0;
      line-height: 1.1em; }
      .post .info h1 a {
        color: #333; }
    .post .info p.date {
      text-transform: lowercase;
      text-align: center;
      margin-bottom: 3px; }
  .post ul > li {
    list-style-type: circle;
    margin-left: 30px; }

.pagination {
  text-align: center;
  margin-bottom: 2em; }
  .pagination .pager {
    font-size: 2em; }
  .pagination .page-control.disabled {
    cursor: default;
    opacity: 0.3;
    pointer-events: none; }
    .pagination .page-control.disabled:hover, .pagination .page-control.disabled:focus {
      text-decoration: none; }
  .pagination .page-control.prev {
    float: left; }
  .pagination .page-control.next {
    float: right; }

p > img {
  display: block;
  margin: 0 auto;
  max-width: 100%; }
