haroopad.css 2.42 KB
/*
@import url(http://fonts.googleapis.com/css?family=Tauri);

@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,300,700);
*/
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/**
 * https://github.com/rhiokim/markdown-css
 * solarized-light style
 * made by rhio.kim
 * powered by http://ethanschoonover.com/solarized
 */
.haroopad {
  padding: 20px;
  color: #222222;
  font-size: 15px;
  font-family: "Roboto Condensed", "Tauri", "Hiragino Sans GB", "Microsoft YaHei", "STHeiti", "SimSun", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", 'Segoe UI', AppleSDGothicNeo-Medium, 'Malgun Gothic', Verdana, Tahoma, sans-serif;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.haroopad a {
  color: #3269a0;
}
.haroopad a:hover {
  color: #4183c4;
}
.haroopad h2 {
  border-bottom: 1px solid #e6e6e6;
}
.haroopad h6 {
  color: #777;
}
.haroopad hr {
  border: 1px solid #e6e6e6;
}
.haroopad p > code,
.haroopad li > code,
.haroopad td > code,
.haroopad h1 > code,
.haroopad h2 > code,
.haroopad h3 > code,
.haroopad h4 > code,
.haroopad h5 > code,
.haroopad h6 > code,
.haroopad blockquote > code {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 85%;
  background-color: rgba(0, 0, 0, 0.02);
  padding: 0.2em 0.5em;
  border: 1px solid #efefef;
}
.haroopad pre > code {
  font-size: 1em;
  letter-spacing: -1px;
  font-weight: bold;
}
.haroopad blockquote {
  border-left: 4px solid #e6e6e6;
  padding: 0 15px;
  color: #777;
}
.haroopad table {
  background-color: #fafafa;
}
.haroopad table tr th,
.haroopad table tr td {
  border: 1px solid #e6e6e6;
}
.haroopad table tr:nth-child(2n) {
  background-color: #f2f2f2;
}
/**
 * after less
 */
/*
.haroopad {

  img {
    .bordered(@border-color, @border-color, @border-color, @border-color);
    .rounded(3px);
    .box-shadow(0 0 7px darken(@border-color, 18%));

    &:hover {
	    -webkit-animation-duration: 1s;
	    -webkit-animation-delay: .2s;
    	.pulse;
    }
  }

  h1 {
    -webkit-animation-duration: .5s;
    -webkit-animation-delay: .2s;
  	.tada;
  }

  &>ul {
  	&>li {
	    -webkit-animation-duration: .5s;
	    -webkit-animation-delay: .2s;
	  	.fadeInLeft;
	  }
  }

}
*/