metro-lake.css 2.87 KB
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/**
 * https://github.com/rhiokim/markdown-css
 * made by rhio.kim
 */
::before, ::after, * {
    box-sizing: border-box;
}

.metro-lake {
    font-family: system, -apple-system, BlinkMacSystemFont,
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "STHeiti", "SimSun",
    "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", 'Segoe UI',
    AppleSDGothicNeo-Medium, "Malgun Gothic", Verdana, Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 0;
    color: #333;
    font-size: 0.875rem;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.metro-lake a {
    color: #3269a0;
}

.metro-lake a:hover {
    color: #4183c4;
}

.metro-lake blockquote {
    border-left: 2px solid #666;
    padding: 0 15px;
    font-style: italic;
    color: #777;
}

.metro-lake h1,
.metro-lake h2,
.metro-lake h3,
.metro-lake h4,
.metro-lake h5 {
    font-weight: 400;
    color: #444;
    letter-spacing: 2px;
}

.metro-lake h1 {
    text-align: center;
    line-height: 2rem;
    font-size: 2rem;
}

.metro-lake h2 {
    width: max-content;
    margin: 0.8rem auto;
    font-size: 1.4rem;
    border-bottom: 1px solid #bbb;
    /*line-height: 1.6rem;*/
    padding-bottom: 0.5rem;
    text-align: center;
}

.metro-lake blockquote h2:before {
    content: '';
    padding-right: 0;
}

.metro-lake h5 {
    font-weight: bold;
}
.metro-lake h6 {
    color: #666;
}

.metro-lake hr {
    border-top: none;
    border-right: none;
    border-bottom: 1px solid;
    border-left: none;
    border-color: #ddd;
    margin: 10px 0 10px;
}

.metro-lake p {
    line-height: 1.5rem;
}

.metro-lake p > code {
    color: #777777;
    font-size: 15px;
    padding: 3px;
}

.metro-lake pre > code {
    font-size: 14px;
    letter-spacing: -1px;
    font-weight: normal;
}

.metro-lake strong {
    font-weight: 600;
}

.metro-lake table {
    width: 100%;
    background-color: #fafafa;
}

.metro-lake table tr th,
.metro-lake table tr td {
    border: 1px solid #e6e6e6;
}

.metro-lake 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;
	  }
  }

}
*/