2020博客主题
| P l u c k |
| 捧げよ!捧げよ!心臓を捧げよ! |
博客地址名: pluck[修改博客地址名](更改会造成以前的博文链接失效,请不要轻易修改)
登录用户名: Pluck[修改登录用户名]
密码: *******[修改登录密码]
显示名称(作者名): Pluck_あい[修改显示名称]
账号绑定邮箱: 2502000418@qq.com[修改绑定邮箱]
回复通知邮箱: [修改通知邮箱]
| Eastern China Time (GMT +8) |
| Chinese(Simplified) |
#home { margin: 0 auto; width: 80%;/*原始65*/ min-width: 980px;/*页面顶部的宽度*/ background-color: rgba(245, 245, 245, 0.7); /*pluck整个的背景色*/ padding: 30px; margin-top: 50px; margin-bottom: 50px; box-shadow: 0 2px 40px rgba(100, 250, 255, 1); /*pluck框框荧光*//*原作0 2px 6px*/ } body { background: rgba(12, 100, 129, 1) url('https://img2020.cnblogs.com/blog/2069440/202011/2069440-20201126212808985-1553457043.jpg') fixed no-repeat; background-position: 50% 5%; background-size: cover; } #blogTitle { height: 100px; /*高度*/ clear: both; background-color: rgba(255, 127, 178, 0); /*原作245 245 245*/ } #blogTitle h1 { font-size: 36px; font-weight: bold; line-height: 1.8em;/*原始 1.6em*/ margin-top: 10px;/*原始 15px */ color: #FF5457;/*原作#548B54;*//*这还不知道是啥…………………………………………………………*/ } #blogTitle h2 { font-weight: normal; font-size: 17px;/*原始 16px ;font-size: 1.0rem;*/ line-height: 1.8; color: #111; font-weight: bold; text-align: right; float: right; } #navigator{ /*pluck导航栏*/ background-color: rgba(255, 127, 178, 0.9); /*原作(33, 160, 139, 0.9*/ } #navList a:link, #navList a:visited, #navList a:active{ /*pluck导航栏里面的字*/ color: #eee; font-size: 18px; font-weight: bold; } .blogStats{ color: #eee; } .postTitle { border-left: 8px solid rgba(255, 127, 178, 0.68); margin-left: 10px; margin-bottom: 10px; font-size: 20px; /*pluck每篇随笔的大标题 文字大小*/ float: right; width: 100%; clear: both; } .postTitle a:link, .postTitle a:visited, .postTitle a:active { /*pluck每篇随笔的大标题 滑动字 起点 颜色*/ color: #00B9EF;/*原作#21759b;*/ transition: all 0.4s linear 0s; } .postTitle a:hover { /*pluck每篇随笔的大标题 滑动字 终点 颜色*/ margin-left: 30px; color: #fa0c8c;/*原作#0f3647;*/ text-decoration: none; } .postCon { float: right; line-height: 1.5em; width: 100%; clear: both; padding: 10px 0; } .day .postTitle a { padding-left: 10px; } .day { background: rgba(255, 255, 255, 0.5); } /*文章附加信息*/ .postDesc { background: url(images/posted_time.png) no-repeat 0 1px; color: #757575; float: left; width: 100%; clear: both; text-align: left; font-family: "微软雅黑" , "宋体" , "黑体" ,Arial; font-size: 13px; padding-right: 20px; /*5px padding-left: 90px;posted 发表时间左边距离*/ margin-top: 20px; line-height: 1.8; padding-bottom: 35px; } .newsItem, .catListEssay, .catListLink, .catListNoteBook, .catListTag, .catListPostCategory, .catListPostArchive, .catListImageCategory, .catListArticleArchive, .catListView, .catListFeedback, .mySearch, .catListComment, .catListBlogRank, .catList, .catListArticleCategory ,#blog-calendar { background: rgba(255, 125, 167, 0.1); /*pluck左边栏目 内容 背景色*/ margin-bottom: 35px; word-wrap: break-word; } .CalTitle{ background: rgba(255, 255, 255, 0); } .catListTitle{ background-color: rgba(255, 125, 167, 0.88); /*pluck左边栏目 标题 背景色*/ } #topics{ background: rgba(255, 255, 255, 0.5); } .c_ad_block{ display: none; } #tbCommentBody{ width: 100%; height: 200px; background: rgba(255, 255, 255, 0.5); } #q{background: rgba(255, 255, 255, 0);} .CalNextPrev{background: rgba(255, 255, 255, 0);}
<script language="javascript" type="text/javascript"> // 生成目录索引列表 // ref: http://www.cnblogs.com/wangqiguo/p/4355032.html // modified by: zzq function GenerateContentList() { var mainContent = $('#cnblogs_post_body'); var h2_list = $('#cnblogs_post_body h2');//如果你的章节标题不是h2,只需要将这里的h2换掉即可 if(mainContent.length < 1) return; if(h2_list.length>0) { var content = '<a name="_labelTop"></a>'; content += '<div id="navCategory">'; content += '<p style="font-size:18px"><b>目录</b></p>'; content += '<ul>'; for(var i=0; i<h2_list.length; i++) { var go_to_top = '<div style="text-align: right"><a href="#_labelTop">回到顶部</a><a name="_label' + i + '"></a></div>'; $(h2_list[i]).before(go_to_top); var h3_list = $(h2_list[i]).nextAll("h3"); var li3_content = ''; for(var j=0; j<h3_list.length; j++) { var tmp = $(h3_list[j]).prevAll('h2').first(); if(!tmp.is(h2_list[i])) break; var li3_anchor = '<a name="_label' + i + '_' + j + '"></a>'; $(h3_list[j]).before(li3_anchor); li3_content += '<li><a href="#_label' + i + '_' + j + '">' + $(h3_list[j]).text() + '</a></li>'; } var li2_content = ''; if(li3_content.length > 0) li2_content = '<li><a href="#_label' + i + '">' + $(h2_list[i]).text() + '</a><ul>' + li3_content + '</ul></li>'; else li2_content = '<li><a href="#_label' + i + '">' + $(h2_list[i]).text() + '</a></li>'; content += li2_content; } content += '</ul>'; content += '</div><p> </p>'; content += '<p style="font-size:18px"><b>正文</b></p>'; if($('#cnblogs_post_body').length != 0 ) { $($('#cnblogs_post_body')[0]).prepend(content); } } /*pluck.add (nextLine)*/ var said = '<p style="padding-right: 50px;color:rgba(255, 127, 178, 0.9);font-weight: bold;font-size:14px">" 世界は残酷で 然れど美しい "</p>'; var qqinfo = '<p style="padding-left: 675px;color:navy;font-size:11px">讨论邮箱:tmparchitect@foxmail.com</p>'; $(mainContent[0]).prepend(qqinfo); $(mainContent[0]).prepend(said); /*pluck.define (nextLine)*//* var said = '<p style="padding-right: 50px;color:rgba(255, 127, 178, 0.9);font-weight: bold;font-size:14px">世界は残酷で 然れど美しい____________________________________Pluck____________________________讨论邮箱:tmparchitect@foxmail.com</p>'; $(mainContent[0]).prepend(said);*/ } GenerateContentList(); </script>
推荐客户端: Open Live Writer
MetaWeblog访问地址: https://rpc.cnblogs.com/metaweblog/pluck

浙公网安备 33010602011771号