@import url(https://fonts.googleapis.com/css?family=Space+Mono);

/* Some assumptions */
* {
   margin: 0;
   padding: 0;

   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
}

html, body { height: auto; }
h1, h2, h3, h4, h5, h6 { font-size: 100%; }
h2 { font-size: 125%; margin-bottom: .5em; }
p { margin: 1.2em 0; }

body {
   background-color: #FFFFFF;
   font: 12px 'Space Mono', monospace;
   -webkit-font-smoothing: antialiased;
}

.profile {
  width: 100%; /* you can use % */
  height: auto;
  align: center;
  border: 10px double #FF00FF;
}

/* Gentle links */
a { color: #000;
    text-decoration: none;
    border-bottom: 1px solid #FF00FF;;
  }

a:hover {
  color: #FF00FF;

  }


ul {
  list-style: square;
    list-style-type: square;
    list-style-position: initial;
    list-style-image: initial;
    display: block;

-webkit-margin-before: 1em;
-webkit-margin-after: 1em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
-webkit-padding-start: 40px;
}

li {
   margin-left:15px;
}

/* The blog posts archive, a long list */
.posts {
   list-style-type: none;
   margin-bottom: 2em;
}

.posts li {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
   line-height: 2em;
}

.posts span {
   color: #aaa;
   font-family: 'Space Mono', monospace;
   font-size: 75%;
   margin-right: 1em;
}

/* Don't display date if screen is small */
@media only screen and (max-width: 400px) {
   .posts li span { display: none; }
}

main {
   font-size: 125%;
   text-align: left;
   margin: 2em auto 0.5em;
   line-height: 1.5em;
   max-width: 42em;
   padding-left: 18px;
   padding-right: 18px;
}

header a {
   font-weight: bold;
   text-decoration: none;
}

/* the website's name on the header */
.title {
   display: inline-block;
   line-height: 0.5em;
   font-size: 2em;
}

.title a {
    color: #000;
}

.title a:hover {
   color: #FF00FF;
}

.title {
   margin-top: .4em;
}

.meta {
   color: #aaa;
}

code,
pre {
   font-family: Menlo, Monaco, "Courier New", monospace;
}
code {
   padding: .25em .5em;
   font-size: 75%;
   color: #bf616a;
   background-color: transparent;
   border-radius: 3px;
}
pre {
   display: block;
   margin: 0 0 14px;
   padding: 10px 20px;
   font-size: 15px;
   line-height: 1.4;
   white-space: pre;
   white-space: pre-wrap;
   word-break: break-all;
   word-wrap: break-word;
   background-color: #eee;
}
pre code {
   padding: 0;
   font-size: 80%;
   color: inherit;
   background-color: transparent;
}
.highlight {
   margin-bottom: 15px;
   border-radius: 4px;
}
.highlight pre {
   margin-bottom: 0;
}

blockquote {
   padding: 0px 18px;
   margin: 15px 0;
   border-left: 4px solid rgba(52, 73, 94, 0.85);
}

blockquote p {
   margin-bottom: 0;
   color: #7a7a7a;
}

article {
   overflow: auto;
   word-wrap: break-word;
}

article ul, article ol {
   margin-left: 1.35em;
   margin-bottom: 0.7em;
}


/* Rounded corners, aligned, etc. */
article img {
   border-radius: 4px;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   display: block;
   margin-left: auto;
   margin-right: auto;
   max-width: 100%;
   vertical-align: middle;
   page-break-inside: avoid;
}

footer {
   height: 2.5em;
}

footer #date {
   float: right;
}

footer #copyright {
   float: right;
}

footer #return,
footer #date, {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

/* Remove the huge gap at the first paragraph */
#home p.intro {
   margin-top: 0px;
}
