1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
| // Next.Muse 自定义CSS if hexo-config('scheme') == 'Muse' { //为Header和Footer添加背景色 .header { +desktop() { background: } +tablet() { background: } +mobile() { }
}
.footer { +desktop() { background: } +tablet() { background: } +mobile() {
} }
//调节header空白 .header-inner { +desktop() { padding-top: 70px; padding-bottom: 50px; } +tablet() { padding-top: 70px; padding-bottom: 50px; } +mobile() { padding-top: 50px; padding-bottom: 30px; } }
//文章样式 .post-body {
//宽屏模式下字体太大了,改回mediun +desktop-large() { font-size: $font-size-medium; }
//文章内用H2做一级标题,加下横线 h2 { border-bottom: 1px solid padding-bottom: 10px; } //文章内用H3做二级标题,加大字号 h3 { font-size: 1.2em; }
//文章图片说明 .image-caption { font-size: 0.5em; font-weight: normal; margin: -10px auto 15px } }
//文章内图片样式 .post-body img { border: 1px solid box-sizing: border-box; padding: 0px; border-radius: 3px; box-shadow: 4px 4px 4px 0px }
/* 阅读更多按钮美化 */
/*.post-button { text-align: center; margin-top: 20px; a { display: inline-block; padding: 8px 20px; background: color: white !important; border-radius: 20px; font-weight: 500; transition: background 0.3s; &:hover { background: text-decoration: none; } } }*/
//赞赏按钮样式 .reward-container button { background: color: height: 38px; width: 38px; padding: 0 0 0; border: 0; border-radius: 5px; line-height:0; outline: 0 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); transition: 0.2s ease-out;
&:hover { background: } }
//版权声明样式 .post-copyright ul{ background-color: border-left: 0px; list-style: none; margin: 2em 0 0; padding: 0.5em 1em; border: 1px solid }
//底部上下篇导航留空 .post-nav-item { padding: 10px 0px 10px 0px } }
|