@charset "UTF-8";
/*!
########################################################
# Codename: minimalart                                 #
# Description: Personal Site                           #
# Author: Max Kraszewski                               #
# Copyright (c) 2013                                   #
# Release 1.0                                          #
# ==================================================== #
# @file: main.scss                                     #
# @desc: main style                                    #
# @version: 1.0                                        #
# @date: 05/07/2013                                    #
########################################################
*/
/* ========================================================== */
/* VARIABLES AND IMPORTS   													          */
/* ========================================================== */
/*********************
 1. IMPORTS
**********************/
/*********************
 VENDOR PREFIXING
 ----------------------
 USAGE @include prefix('box-sizing', 'border-box', moz webkit);
**********************/
/*********************
 2. FONTS
**********************/
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700");
/*********************
 3. TYPOGRAPHY
**********************/
/*********************
 4. COLORS
**********************/
/*********************
 4. RESPONSIVE
**********************/
/* ========================================================== */
/* GENERAL LAYOUT         													          */
/* ========================================================== */
@media (max-width: 940px) {
  html {
    font-size: 15px; } }

@media (min-width: 941px) {
  html {
    font-size: 16px; } }

body {
  margin: 0;
  background-color: #FAFAFA;
  border-top: 6px solid #444444; }

.container, .content, aside {
  box-sizing: border-box; }

.container {
  padding: 0 1em;
  max-width: 940px;
  margin: 0 auto; }
  .container::after {
    clear: both;
    content: "";
    display: block; }

@media (min-width: 541px) and (max-width: 767px) {
  aside::after {
    clear: both;
    content: "";
    display: block; }
  aside section {
    width: 48%;
    box-sizing: border-box; }
    aside section.left {
      float: left; }
    aside section.right {
      float: right; } }

@media (min-width: 768px) {
  .content {
    width: 66%;
    max-width: 640px;
    float: left; }
  aside {
    width: 33%;
    max-width: 260px;
    float: right; } }

@media (min-width: 768px) and (max-width: 939px) {
  .content {
    padding-right: 20px; } }

/* ========================================================== */
/* GENERAL ELEMENTS        													          */
/* ========================================================== */
a {
  color: #444444;
  text-decoration: none; }

a:hover {
  color: #F25E3D; }

h1 {
  margin: 0;
  font: normal 2.25rem/3rem "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif; }

h2 {
  margin: 20px 0 0 0;
  font: normal 1.5rem "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif; }

h4 {
  margin: 0;
  font: normal 1.125rem/1.8rem "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif; }

ul {
  margin: 0;
  padding: 0;
  list-style-type: none; }

img {
  width: 100%;
  border: 0; }

.alink {
  display: inline-block;
  position: relative;
  font-size: 0.875rem;
  color: #696969;
  text-decoration: none;
  transform-origin: 50% 50%;
  transform: scale(1);
  transition: all 0.1s cubic-bezier(0.49, 0.99, 0.54, 0.98); }
  .alink:hover {
    color: #F25E3D;
    transition: all 0.1s cubic-bezier(0.49, 0.99, 0.54, 0.98); }
    .alink:hover:before {
      opacity: 1;
      transform: translateX(4px);
      transition: all 0.1s cubic-bezier(0.49, 0.99, 0.54, 0.98) 0.1s; }
    .alink:hover:after {
      transform: scaleX(0);
      transition: all 0.1s cubic-bezier(0.49, 0.99, 0.54, 0.98); }
  .alink:before {
    display: inline-block;
    content: '➦';
    opacity: 0;
    position: absolute;
    top: 2px;
    right: -15px;
    font-size: 18px;
    line-height: 14px;
    border-radius: 50%;
    transition-delay: 0.2s;
    transform: translateX(0);
    transition: all 0.1s cubic-bezier(0.49, 0.99, 0.54, 0.98); }
  .alink:after {
    background: #EEEEEE;
    content: '';
    display: block;
    height: 2px;
    margin-top: 2px;
    width: 100%;
    z-index: 0;
    transform-origin: 100% 0;
    transform: scaleX(1);
    transition: all 0.1s cubic-bezier(0.49, 0.99, 0.54, 0.98) 0.1s; }

/* ========================================================== */
/* HEADER                  													          */
/* ========================================================== */
header {
  margin: 25px 0 35px 0; }
  @media (max-width: 540px) {
    header {
      text-align: center; } }
  header .logo {
    font: normal 1.6rem "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    text-transform: uppercase; }
    @media (min-width: 541px) {
      header .logo {
        float: left; } }
    header .logo span:nth-child(1) {
      padding: 3px 5px;
      font-weight: 400;
      color: #D3D3D3;
      background: #444444; }
    header .logo span:nth-child(2) {
      color: #D3D3D3;
      padding: 3px 5px;
      font-weight: 400; }
    header .logo.animated span:nth-child(1) {
      background: linear-gradient(to bottom, #444444 100%, #444444 0%);
      background-position: 0 100%;
      background-repeat: repeat-y;
      background-size: 100px 50px;
      transition: background-size .4s; }
    header .logo.animated span:nth-child(2) {
      background: linear-gradient(to bottom, #D3D3D3 100%, #D3D3D3 0%);
      background-position: 0 100%;
      background-repeat: repeat-x;
      background-size: 0 0;
      transition: background-size .4s; }
    header .logo.animated:hover span:nth-child(1) {
      color: #444444;
      background-size: 0 0; }
    header .logo.animated:hover span:nth-child(2) {
      color: #FAFAFA;
      background-size: 4px 50px; }
  @media (max-width: 540px) {
    header nav {
      margin-top: 20px; } }
  @media (min-width: 541px) {
    header nav {
      float: right; } }
  header nav li {
    display: inline;
    padding: 0 3px; }
  header nav a {
    color: #696969;
    font: normal 1rem "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    text-transform: uppercase; }
    header nav a:hover {
      color: #222222; }

/* ========================================================== */
/* CONTENT                													          */
/* ========================================================== */
.content article {
  margin-bottom: 25px; }

.content p {
  color: #444444;
  font: normal 0.95rem/1.6rem "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif;
  margin: 10px 0; }

.content .meta::after {
  clear: both;
  content: "";
  display: block; }

.content .meta .cat {
  color: #696969;
  font: normal 0.75rem/1.6rem "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif;
  text-transform: uppercase; }

.content .meta time {
  color: #999;
  font: normal 0.75rem/1.6rem "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif; }
  .content .meta time:after {
    content: " / "; }

.content .infoline {
  font: normal 0.75rem/1.6rem "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif;
  color: #999; }

.content .author {
  display: none; }

.content .character:after {
  content: " / "; }

.content .character:last-child:after {
  content: ""; }

.content .more {
  font: normal 0.875rem "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif; }

.content .back {
  text-transform: uppercase;
  text-align: center;
  margin-top: 40px;
  font: normal 0.75rem "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif; }
  .content .back a {
    color: #999;
    border: 1px solid #D3D3D3;
    padding: 3px 5px; }
    .content .back a:hover {
      color: #444444;
      border-color: #444444; }

.content hr.end {
  overflow: visible;
  /* For IE */
  padding: 0;
  border: none;
  border-top: medium double #D3D3D3;
  color: #D3D3D3;
  text-align: center;
  margin: 50px 0 50px 0; }
  .content hr.end:after {
    content: "§";
    display: inline-block;
    position: relative;
    top: -0.7em;
    font-size: 1.5em;
    padding: 0 0.25em;
    background: #FAFAFA; }

.content .paginator {
  font: normal 0.8rem "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif;
  text-align: right; }
  .content .paginator span {
    padding: 0 5px; }

.content blockquote {
  padding: 20px;
  margin: 0 0 20px 0;
  background-color: #EEEEEE;
  border-radius: 5px;
  border-bottom: 6px solid #D3D3D3; }
  .content blockquote h5 {
    color: #444444;
    margin: 0 0 5px 0;
    padding: 10px 0 3px 0;
    font: bold 0.9rem/1.5rem "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif;
    border-bottom: 2px solid #DBDBDB; }
  .content blockquote h6 {
    color: #444444;
    margin: 0 0 5px 0;
    padding: 10px 0 3px 0;
    font: bold 0.9rem/1.5rem "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif;
    border-bottom: 2px solid #EEEEEE; }
  .content blockquote p {
    margin: 0 0 10px 0;
    color: #444444;
    font: normal 0.9rem/1.5rem "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif; }

/* ========================================================== */
/* ARCHIVE                													          */
/* ========================================================== */
h1.archive {
  color: #444444;
  margin-bottom: 25px;
  border-bottom: 4px solid #EEEEEE;
  font-size: 1.8rem; }
  h1.archive span {
    color: #696969; }

ul.archive li {
  font: normal 0.9rem "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif;
  padding: 5px 0; }

/* ========================================================== */
/* ASIDE                  													          */
/* ========================================================== */
aside {
  padding-top: 40px; }
  aside section {
    margin-bottom: 20px; }
  aside h4 {
    margin-bottom: 6px;
    border-bottom: 3px solid lightgray;
    color: #444444; }
  aside ul {
    padding-left: 18px;
    list-style-type: square;
    list-style-position: outside; }
  aside p, aside li, aside a {
    margin: 0;
    color: dimgray;
    font: normal 0.85rem/1.4rem "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif; }
  aside a:hover {
    color: #444444; }
  aside a[rel=author] {
    color: #444444; }
    aside a[rel=author]:hover {
      color: #F25E3D; }

/* ========================================================== */
/* FOOTER                  													          */
/* ========================================================== */
footer {
  margin-top: 40px;
  text-align: right; }
  footer p {
    color: #696969;
    border-top: 1px solid #D3D3D3;
    font: normal 0.75rem/1.6rem "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 3em; }
