/*main css file for harttle land*/

body {
  /*-webkit-font-smoothing: antialiased;*/
  position: relative; /* for scroll spy with absolute position */
  background-color: #f7f7f7;
  color: #3a3a3a;
  font-family: "Helvetica Neue", 微软雅黑, Helvetica, Arial, sans-serif;
}

h1, h2{
  font-weight: normal;
}

.global-nav {
  margin-bottom: 20; /* 调整navbar与main content的距离 */
  border-radius: 0;
}

.label {
  margin: 0 2px 5px;
  display: inline-block;
}

/* Page header */
.hl-header {
  margin-top: 0;
  margin-bottom: 0;
  color: #cdbfe3;
  background-image: url(/assets/img/bg.jpg);
  padding: 30px 15px 40px; /* side padding builds on .container 15px, so 30px */
  font-size: 16px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .15);
  border-bottom: 3px solid #fff;
  box-shadow: inset 0 -1px 0 white, 0 1px 5px rgba(0, 0, 0, .3);
}

.hl-header h1 {
  color: #fff;
}

.hl-header small {
  color: lightgrey;
  font-family: cursive;
}

.hl-header p {
  font-weight: 300;
  line-height: 1.5;
}

.hl-header .container {
  position: relative;
}

@media (min-width: 768px) {
  .hl-header {
    font-size: 21px;
    text-align: left;
  }

  .hl-header h1 {
    font-size: 45px;
    line-height: 1;
  }
}

/* papper effect */
.paper, .paper-curl {
  position: relative;
  background-color: #fff;
}

.paper {
  border: 1px solid #eaeaeb;
  box-shadow: 4px 7px 10px #ccc;
}

.paper-curl {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), inset 0 0 1px rgba(0, 0, 0, 0.3);
}

.paper *:first-child, .paper-curl *:first-child {
  margin-top: 0;
}

.paper *:last-child, .paper-curl *:last-child {
  margin-bottom: 0;
}

.paper-curl:before {
  position: absolute;
  width: 200px;
  height: 300px;
  max-width: 80%;
  max-height: 80%;
  left: 8px;
  top: 7px;
  content: ' ';
  background: transparent;
  transform: skew(3deg, 3deg);
  box-shadow: -6px 6px 12px rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.paper-curl:after {
  position: absolute;
  width: 250px;
  height: 300px;
  max-width: 80%;
  max-height: 80%;
  right: 8px;
  bottom: 10px;
  content: ' ';
  background: transparent;
  transform: skew(3deg, 3deg);
  box-shadow: -6px 12px 12px rgba(0, 0, 0, 0.7);
  z-index: -1;

}

.pined {
  background-image: url(/assets/img/tack.jpg);
  background-repeat: no-repeat;
  background-position: right 5px top 5px;
  background-size: 30px;
}

/* Featured link */

a.feature-link {
  color: #3a3a3a;
  text-decoration: none;
  transition: color .2s ease-out 0s;
}

a.feature-link:hover {
  color: #903;
}

/* color scheme */

.widget-date {
  font-size: 14px;
}

.widget-date a {
  color: inherit;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.widget-date a:hover {
  text-decoration: none;
  color: #903;
}

.label-blue {
  background-color: #39c;
}

.label-yellow {
  background-color: #dd3;
}

.label-red {
  background-color: #903;
}

.label-darkred {
  background-color: #603;
}

.page-header {
  border-bottom: 1px solid #333;
}

.label, .label a, .button {
  color: #fff;
}

.label:hover, .label a:hover, .button:hover {
  color: #fff;
  text-decoration: none;
}

.button-flat-blue {
  box-shadow: none;
  transition-property: background;
  transition-duration: 0.3s;
  background: #27b;
  color: white;
  text-shadow: none;
  border: none;
}

.button-flat-blue:hover {
  background: #39c;
}

.button-flat-red {
  box-shadow: none;
  transition-property: background;
  transition-duration: 0.3s;
  background: #903;
  color: white;
  text-shadow: none;
  border: none;
}

.button-flat-red:hover {
  background: #c03;
}

.button-flat-yellow {
  box-shadow: none;
  transition-property: background;
  transition-duration: 0.3s;
  background: #cc3;
  color: white;
  text-shadow: none;
  border: none;
}

.button-flat-yellow:hover {
  background: #dd5;
}

/* scrollUp button */

#scrollUp {
  bottom: 40px;
  right: 40px;
  height: 38px;
  width: 38px;
  opacity: 0.5;
  background: url(/assets/img/top.png) no-repeat;
}

#scrollUp:hover {
  opacity: 1;
}

/* credit */

.credit {
  margin: 20px 0;
  height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.credit p {
  display: inline;
}

.credit .follow a {
  color: #999;
  margin-left: 5px;
}

.credit .follow a:hover {
  color: #fff;
  text-decoration: none;
}

/* navbar置顶,进行的main content调整 */
/*#main-content {
  padding-top: 5em;
}*/

