style.less直接copy


/* Please visit the URL below for more information: */
/*   https://shd101wyy.github.io/markdown-preview-enhanced/#/customize-css */

.markdown-preview.markdown-preview {
  /*---- 整體背景 ----*/
  // background-color:#F5FFFA;
  background-image:url('/Users/likang02/Project/mk-blog-site/background.png');
  background-size:cover;

  /*---- 斜體 ----*/
  em{
    color: #808080;
  }

  /*---- 水平線 ----*/
  hr{
    background-color: black;
    border: 1.5px dashed;
    border-color: yellow;
    height: 2.5px;
  }

  /*---- table邊框 ----*/
  table td,table th {
      border: 1px solid#d6d6d6;
      border-color: black;
      padding: 6px 13px
  }

  /*---- 加粗 ----*/
  strong{
    font-size: 16px;
    font-family:"Microsoft Yahei";
    font-weight:bold;
    // color: #c7254e;
    // color: #8B008B;
    color:#4169E1;
  }

  /*---- 正文和list ----*/
  p,table,li{
    // color: #383838;
    color: black;
    font-size: .95em;
  }

  /*---- 單``代碼塊 ----*/
  code {
    font-family: "Source Code Pro",Consolas,Menlo,Monaco,"Courier New",monospace;
    color: #c7254e;
    font-size: .9em;
    background-color:rgba(255,240,245,0.3);
  }

  /*---- 引言 ----*/
  blockquote {
    background-color: rgba(255,228,225,0.4);
    border-left: 0.3em solid #3CB371;
    border-top: 1px solid #3CB371;
    border-bottom: 1px solid #3CB371;
    padding: 1em 1.5em 1em 1.5em;
    position: relative;
    font-family: 'Roboto', sans-serif;
    line-height: 150%;
    text-indent: 35px;
  }

  blockquote:before {
    color: #3CB371;
    content: "\201C";
    font-size: 5em;
    position:absolute;
    left:-15px;
    top: 40px;
    line-height: 0.1em;
  }

  blockquote:after {
    color: #3CB371;
    content: "\201D";
    font-size: 5em;
    position:absolute;
    right:15px;
    bottom: 0em;
    line-height: 0.1em;
  }

  /*---- 跳轉超鏈接 ----*/
  a {
    color: green;
    // color: #F08080;
    text-decoration: underline;
    // text-decoration: none;
  }
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章