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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
| // Custom styles. //首页文章阴影样式 .post { margin-top: 60px; margin-bottom: 60px; padding: 25px; -webkit-box-shadow: 0 0 14px rgba(202, 203, 203, .5); -moz-box-shadow: 0 0 14px rgba(202, 203, 204, .5); } //热评文章 .ds-top-threads li a { padding-left: 5px; transition: border-width 0.2s linear 0s, color 0.2s linear 0s; border-bottom: none; } .ds-top-threads li a:hover { border-left: 8px solid #4d768c; } //首页头部样式 .header { background: url("../../images/global/background.jpg"); background-color: #A48777; background-repeat: no-repeat; background-size: 100% auto; background-position: center; @media only screen and (max-width: 767px) { background-size: auto 100%; } } .headband { background: #926f5a; } .brand { background: #d08e65cc; } .menu { float: none; background: #ffffff59; padding: 2px 0; } .logo-line-before, .logo-line-after { display: none; } .menu .menu-item a { font-size: 14px; color: rgb(15, 46, 65); border-radius: 4px; } .site-meta { margin-left: 0px; text-align: center; float: none; .site-title { font-size: 35px; font-family: 'Comic Sans MS', sans-serif; color: #fff; height: 50px; padding-top: 5px; } } //首页尾部样式 .footer { background: none; font-size: 16px; } .footer-inner { font-family: 'Comic Sans MS', sans-serif; text-align: center; color: #a88772; }
img:hover { transform: rotateZ(360deg); } .sidebar { background: #a88773; box-shadow: inset 0 2px 6px #724d38; .sidebar-inner { color: #e6c5b2; // 侧栏头像 .site-author-image { border: 2px solid #fff; border-radius: 100%; background-color: #fff; transition: transform 1.0s ease-out; margin-top: 20px; } //侧边栏信息样式修改 .site-author-name { margin: 30px 0 0; color: #fff; font-family: 'Comic Sans MS', sans-serif; font-size: 20px; } .site-description { color: #e6c5b2; } a { color: #fff; border-bottom-color: #e6c5b2; border-bottom: none; } a:hover { color: #fff; } .sidebar-nav { .sidebar-nav-active { color: #fff; border-bottom-color: #fff; } li { color: #e1c6b5; } li:hover { color: #fff; } .sidebar-nav-active:hover { color: #fff; } } .site-state { .site-state-item { display: inline-block; padding: 8px 28px; border-left: 1px solid #e6c5b2; } } .links-of-blogroll { font-size: 14px; margin-bottom: 42px; .links-of-blogroll-title { font-family: 'Comic Sans MS', sans-serif; font-size: 16px; color: #fff; } .links-of-blogroll-list { border-top: 1px dotted; margin: 10px 20px; line-height: 20px; padding-top: 10px; } } .links-of-author { margin-bottom: 70px; .links-of-author-item i { margin-right: 3px; } } //文章目录样式 .post-toc { .nav .active>a { color: #fff; } ol a { color: #e0c6b5; } ol a:hover { color: #fff; } } } }
//侧栏按钮样式 .sidebar-toggle { background: #a88772; .sidebar-toggle-line { background: #ffffff; } } .site-nav-toggle { .btn-bar { background: #a88772; } } .back-to-top { background: #a88772; }
//首页文章块样式 .post-type-normal { //首页阅读全文样式 .post-button { margin-top: 50px; text-align: center; .btn { color: #fff; font-size: 15px; background: #ae866f; border-radius: 16px; line-height: 2; margin: 0 4px 8px 4px; padding: 0 20px; border: 2px solid #926f5a; } a{ border-bottom: 1px solid #926f5a; } a:hover { color: #fff1ea; } } .post-footer { .post-eof { margin: 20px auto 10px; } } }
// 代码块复制按钮样式 .highlight-wrap .copy-btn { color: #8D908C; font-size: 12px; }
.posts-expand { .post-body { img:hover { transform: initial; } a { border-bottom: 1px dashed #999; } } }
|