本主题修改自其他大佬:Rocket1184/MaterialCnblogs: Material Theme for cnblogs.com (github.com)

只需在博客后台选择“禁用模板默认CSS”,就可在任意主题中使用

特点:

1.文章半透明效果,默认白色(可修改),透明度76%(可修改)

2.去除烦人的广告与推荐(原作者的方法失效)(可启用)

3.随机背景图(可选静态图片或无图,但要自己手动设置)

4.去掉原本粗大的标题栏(可启用)

5.去掉导航栏(可启用)

6.以上功能都可在代码开头修改配置,无需把代码看个遍

效果图:

css:

/**************************************************
原作者:Rocket1184@博客园
github:https://github.com/Rocket1184/MaterialCnblogs
**************************************************/ /**************************************************
简单的配置项
**************************************************/ /* --------------背景图------------------------------------------------ */
body{
/*固定图片
background: url(!!!替换成自己的图片网址!!!) no-repeat fixed;*/ /*随机*/
background: url(https://api.imacroc.cn/acg/) no-repeat fixed;
}
/* ===================================================================== */ /* ----------比较影响页面一致性的广告----------- */
.under-post-card{display: none} /*广告开关,启用请删除本行*/
#ad_t2{display: none} /*推荐开关,启用请删除本行*/
/* =================================================== */ /* ---------------粗大的标题栏------------------------- */
#blogTitle {
/*
height: 240px;
margin-top: 3em;
*/
background-color: rgba(255, 255, 255, 0);
}
/* =================================================== */ /* ------------------透明效果---------------------- */
#post_detail,.feedbackItem,#comment_form_container,#divCommentShow > div,#under_post_news,#under_post_kb,.entrylistItem,#myposts,#ad_t2 { /*透明颜色与透明程度*/
background-color: rgba(207, 216, 221, 0.76); }
/* =================================================== */ /* ------------------导航栏---------------------- */
#navigator {display: none}/*默认关闭,启用请删除本行*/ /**************************************************
第一部分:所有的模板都使用的公共样式。公告样式是为了更好的向前和向后兼容。
如果不符合你皮肤的要求,你可以在后面通过更高的优先级覆盖着这些样式,但是
你不能删除这些样式。
**************************************************/ #EntryTag {
margin-top: 20px;
font-size: 9pt;
color: gray;
} .topicListFooter {
text-align: right;
margin-right: 10px;
margin-top: 10px;
} #divRefreshComments {
text-align: right;
margin-right: 10px;
margin-bottom: 5px;
font-size: 9pt;
} /*****第一部分结束*******************************/ /**************************************************
第二部:公共样式(全局样式)。公共会对所有页面的标签都起作用。这个部分你
可以随意的更改,并不会牵扯到其他的皮肤模板。但是每次更改都要注意你的皮肤
模板所有页面的变化。因为它们是全局的。
**************************************************/ * {
margin: 0;
padding: 0;
} html {
height: 100%;
} body {
color: #000000;
font-family: '文泉驿微米黑', 'Noto Sans CJK SC', 'Segoe UI', sans-serif;
font-size: 16px;
background-size: cover;
} table {
border-collapse: collapse;
border-spacing: 0;
} fieldset,
img {
border: 0;
} ul {
word-break: break-all;
} li {
list-style: none;
} h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
font-weight: normal;
} a {
outline: none;
} a:link {
color: black;
text-decoration: none;
} a:visited {
color: black;
text-decoration: none;
} a:hover {
color: #F60;
text-decoration: none;
} a:active {
color: black;
text-decoration: none;
} .clear {
clear: both;
} /*****第二部分结束*******************************/ /**************************************************
第三部分:各个页面元素的样式。你可以根据需要随意的更改,并不会牵扯到其他
的皮肤模板。这个部分是最能展现你想象力的部分。其中头部和侧边栏部分是此皮
肤公共的部分。而每个页面特有的部分会有相应的注释和说明。
**************************************************/ /*****home和头部开始**************************/
#header {
margin-bottom: 1.2rem;
} #blogTitle h1,
#blogTitle h2 {
width: 1200px;
display: block;
margin: 0 auto;
} #blogTitle h1 {
margin-top: 4em;
} a.headermaintitle,
#blogTitle h2 {
text-decoration: none;
font-size: 2.4rem;
color: white;
font-weight: 900;
text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
} #blogTitle h2 {
font-weight: 500;
font-size: 1.2rem;
} #navigator {
background-color: #009688;
position: fixed;
width: 100%;
height: 3em;
top: 0;
left: 0;
right: 0;
overflow: hidden;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
opacity: 0.8;
z-index: 10086;
} #navList {
display: block;
width: 1200px;
margin: auto;
} #navList li {
display: inline-block;
line-height: 3em;
transition: background-color 0.4s;
} #navList li:hover {
background-color: rgba(255, 255, 255, 0.2);
} #navList li a {
text-decoration: none;
color: white;
padding: 1em;
} .blogStats {
display: none;
} /*****home和头部结束**************************/ /*****主页文章列表开始**************************/ #main {
width: 1200px;
margin: auto;
font-size: 0;
} #mainContent,
#sideBar {
font-size: 1rem;
width: 920px;
display: inline-block;
} .day {
width: 900px;
margin-bottom: 2rem;
background-color: white;
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
padding: 0.6rem 1rem;
box-sizing: border-box;
border-radius: 2px;
} .dayTitle {
color: #009688;
float: right;
} .postTitle::before,
.entrylistPosttitle::before {
content: '|';
color: #009688;
font-size: 1.3rem;
font-weight: 900;
display: inline-block;
} .postTitle a,
.entrylistPosttitle a {
text-decoration: none;
font-size: 1.3rem;
color: #009688;
transition: margin-left 0.4s;
} .postTitle a:hover {
margin-left: 1.2rem;
} .postCon,
.entrylistPostSummary {
margin: 1em;
} .postTitle:not(:nth-child(2)) {
padding-top: 0.6rem;
} .postDesc:not(:nth-last-child(2))::after {
user-select: none;
color: white;
font-size: 8px;
display: block;
width: calc(100% + 2rem);
content: '-';
position: relative;
right: 1rem;
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
border-radius: 2px;
z-index: 2;
} .postSeparator {
width: calc(100% + 3rem);
position: relative;
right: 1.5rem;
height: 2rem;
display: block;
background-color: #CFD8DD;
} .topicListFooter {
width: 900px;
} .topicListFooter a {
padding: 0.6rem 1rem;
color: white;
background-color: #009688;
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
} /*****主页文章列表结束**************************/ /*****侧边栏开始********************************/ #sideBar {
width: 280px;
vertical-align: top;
} .newsItem,
#blog-calendar,
#leftcontentcontainer > div > div {
margin-bottom: 2rem;
background-color: white;
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
box-sizing: border-box;
border-radius: 2px;
padding: 0.4rem 0.6rem;
overflow: hidden;
} .newsItem h3,
#blog-calendar::before {
display: block;
color: white;
background-color: #009688;
width: 100%;
padding: 0.4rem 0.6rem;
position: relative;
right: 0.6rem;
bottom: 0.4rem;
box-sizing: content-box;
} #blog-calendar::before {
content: '日历';
} #blogCalendar td,
#calender th {
position: relative;
color: black;
padding: 0.1rem 0.6rem;
} .CalTitle td:nth-child(2) {
padding: 0 3.1rem !important;
} #blogCalendar th.CalDayHeader {
color: dimgrey;
} #blogCalendar td.CalOtherMonthDay {
color: grey;
} #blogCalendar td a u {
text-decoration: none;
color: teal;
} #blogCalendar td.CalTodayDay {
z-index: 1;
} #blogCalendar td.CalTodayDay,
#blogCalendar td.CalTodayDay a u {
color: white !important;
} #blogCalendar td.CalTodayDay::before {
top: -0.05rem;
right: 0.2rem;
position: absolute;
display: block;
content: 'O';
color: #009688;
background-color: #009688;
border-radius: 1rem;
width: 1.8rem;
height: 1.8rem;
z-index: -1;
} #leftcontentcontainer > div > div {
padding: 0;
} .catListTitle {
color: white;
background-color: #009688;
padding: 0.4rem 0.6rem;
} #leftcontentcontainer li {
padding: 0.2rem 0.4rem;
transition: background-color 0.4s;
} #leftcontentcontainer li:not(:last-child) {
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
} #leftcontentcontainer li:hover {
background-color: rgba(0, 0, 0, 0.1);
} #leftcontentcontainer ul li a {
color: black;
display: inline-block;
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} #leftcontentcontainer ul li a {
color: black;
display: inline-block;
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} .recent_comment_title,
.recent_comment_body {
border: none !important;
margin: 0 !important;
} #sidebar_search_box {
padding: 0.4rem 0.6rem;
} input.input_my_zzk {
border: none;
border-bottom: 2px solid teal;
width: 11rem;
} input.btn_my_zzk {
color: white;
border: none;
outline: none;
display: inline-block;
background-color: teal;
padding: 0.4rem 0.6rem;
cursor: pointer;
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
vertical-align: bottom;
height: unset !important;
border-radius: 2px;
} #sidebar_toptags ul li {
padding: 0.3rem 0.4rem;
} #sidebar_toptags ul li a {
display: inline-block;
vertical-align: bottom;
width: unset
} /*****侧边栏结束********************************/ /* 文章查看部分 */ #post_detail,
.feedbackItem,
#comment_form_container,
#divCommentShow > div,
#under_post_news,
#under_post_kb,
.entrylistItem,
#myposts,
#ad_t2 {
width: 900px;
margin-bottom: 2rem; /*主题内容半透明*/
background-color: rgba(207, 216, 221, 0.76); box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
padding: 0.6rem 1rem;
box-sizing: border-box;
border-radius: 2px;
} #post_detail .postDesc::after {
display: none;
} /* 文章后的作者信息,支持/反对 */ #author_profile {
width: 150px;
float: left;
margin-top: 10px;
} #green_channel {
float: right;
position: relative;
border: none;
right: 150px;
} #div_digg {
float: right;
position: relative;
left: 360px;
} #digg_tips {
display: none;
} /* 评论区 */ .feedback_area_title,
#commentform_title,
.entrylistTitle,
.myposts_title {
font-size: 1.2rem;
color: white;
background-color: #009688;
width: 900px;
padding: 0.4rem 0.6rem;
box-sizing: border-box;
margin-bottom: 1rem;
} .feedbackItem {
margin-bottom: 1rem;
position: relative;
} .feedbackListSubtitle {
color: white;
font-size: 0;
} .feedbackManage {
z-index: 5;
font-size: 1rem;
position: absolute;
bottom: 0.6rem;
right: 1rem;
} a.layer {
font-style: italic;
position: absolute;
font-size: 3.5rem;
color: black;
opacity: 0.1;
bottom: 0;
right: 1rem;
z-index: 1;
} .comment_date {
font-size: 1rem;
position: relative;
left: 0.5em;
color: gray;
} .blog_comment_body {
margin: 8px;
} .comment_vote {
text-align: left;
position: relative;
right: 0.6rem;
} a[id^='a_comment_author'] {
font-size: 1rem;
float: left;
} .louzhu::before,
.comment_my_posted b::before,
.new-comment-title a:nth-child(2)::before {
color: white;
font-size: 1rem;
content: '博主';
display: inline-block !important;
background-color: darkblue;
padding: 0 0.2rem;
border-radius: 4px;
vertical-align: bottom;
} .louzhu::before {
margin-left: 0.5rem;
} .sendMsg2This {
display: none;
} legend > a::before {
content: '查看';
} .comment_quote,
.postBody blockquote {
position: relative;
border: none;
border-left: 10px solid lightgray;
background-color: rgba(0, 0, 0, 0.05);
} #comment_form {
position: relative;
} #comment_nav {
width: 900px;
margin: 2rem 0;
} /* 发布评论 */ #comment_nav > a,
#span_refresh_tips,
#btn_comment_submit,
#commentbox_opt a {
padding: 0.6rem 0.8rem;
background-color: #009688;
color: white !important;
margin: 0.3rem;
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
border-radius: 2px;
} #span_refresh_tips {
display: none;
} #commentform_title {
background-image: none;
position: relative;
right: 1rem;
bottom: 0.6rem;
margin-bottom: 0;
} #tip_comment {
position: absolute;
top: 0.1rem;
} #tbCommentAuthor {
background: none;
border: none;
padding: 0;
font-size: 1rem;
width: calc(100% - 3rem);
} .comment_my_posted > img {
display: none;
} .comment_my_posted b::before {
margin-right: 0.5rem;
font-weight: 500;
content: '发布中';
background-color: skyblue;
} .new-comment-title .comment_date {
display: none;
} .new-comment-title a:nth-child(2) {
float: left;
} .new-comment-title a:nth-child(2)::before {
margin-right: 0.5rem;
content: '已发布';
background-color: lightgreen;
} .new-comment-title a {
float: right;
} #tbCommentBody {
height: 10rem;
/*原版评论输入框过长透明后不美观*/
/*width: 860px;*/
font-size: 1rem;
font-family: 'Monaco', '文泉驿微米黑', '微软雅黑';
resize: none;
} #btn_comment_submit {
border: none;
width: unset;
height: unset;
font-size: 1rem;
} #commentbox_opt a:last-child {
background-color: gray;
} #comment_form_container > p:nth-last-child(2) {
color: gray;
bottom: 2rem;
position: relative;
float: right;
} /* 随笔档案(按时间分类) */ .entrylistPosttitle a {
margin-left: 0.3rem;
} .entrylistPosttitle a:hover {
margin-left: 1.5rem;
} /* 随笔标签 */ #myposts {
margin: 0;
padding: 0;
} .myposts_title {
font-size: 1.2rem !important;
} .PostList {
font-size: 1rem !important;
padding: 1rem;
margin: 0 !important;
border-bottom: 1px solid gray;
} .PostList:nth-last-child(2) {
border: none;
} .postDesc2 {
float: right;
} /* 页尾footer */ #footer {
text-align: center;
margin-bottom: 3rem;
} /*****第三部分结束*******************************/ /**************************************************
第四部分:文章内容常用标签格式。这个部分是设置作者写作内容的部分。例如:
如果作者的文章用有p标签,则可通过这个对这些文章中的p标签进行设置。前面
的“.postBody”明确的指出了这里样式的作用范围。仅仅适用于文章主体部分。
建议这个不要设置过于详细的细节。因为,一些样式,一篇文章比较适合的话,
并不能保证所有的文章都适合。
**************************************************/ /*文章内部常用标签格式*/ #EntryTag,
#post_next_prev {
font-size: 1rem;
} #cnblogs_post_body code {
font-family: 'Monaco', 'Consolas', monospace, '文泉驿微米黑', '微软雅黑' !important;
white-space: pre;
} .postBody img {
max-width: 100% !important;
} .postBody blockquote {
position: relative;
border: none;
border-left: 10px solid lightgray;
background-color: rgba(0, 0, 0, 0.05);
} /*****第四部分结束*******************************/ /**************************************************
第五部分:响应式视图布局。
**************************************************/ @media screen and (max-width:1200px) {
#navigator {
width: 100%;
overflow: scroll;
}
#navList {
margin: 0;
width: max-content;
}
#blogTitle h1,
#blogTitle h2 {
margin-left: 2rem;
width: max-content;
}
#main {
width: 100%;
padding: 0 1rem;
box-sizing: border-box;
}
.dayTitle,
#comment_form_container > p:nth-last-child(2),
.postText2 {
display: none;
}
#mainContent,
#sideBar,
.day,
.feedback_area_title,
.entrylistTitle,
.myposts_title,
.feedbackItem,
#post_detail,
#comment_form_container,
#divCommentShow > div,
#under_post_news,
#under_post_kb,
.entrylistItem,
#myposts,
#comment_nav,
#ad_t2 {
width: 100% !important;
}
#green_channel {
width: max-content;
float: none;
right: 0;
}
#div_digg {
position: inherit;
}
#blogCalendar td.CalTodayDay {
background-color: teal;
}
#blogCalendar td.CalTodayDay::before {
display: none;
}
#commentform_title {
width: calc(100% + 2rem);
} #tbCommentBody { width: calc(100% - 0.5rem);
} .commentbox_title {
width: 300px;
}
.commentbox_title_right {
float: none;
}
.PostList {
padding: 0.5rem 0.5rem 0;
}
.postDesc2 {
display: block;
margin-top: 1rem;
}
} @media screen and (max-width:1200px) and (min-width:900px) {
#main,
#mainContent,
#sideBar,
#blogTitle h1,
#blogTitle h2 {
width: 900px;
}
} /*****第五部分结束*******************************/

未开通js之前的纯css网页主题的更多相关文章

  1. js进阶 11-21 纯css实现选项卡

    js进阶 11-21 纯css实现选项卡 一.总结 一句话总结:核心原理,a标签的锚点效果+父div限宽+多的部分隐藏. 1.如何实现a标签的锚点效果? href属性找到对应的位置就好,和选择器一样, ...

  2. 分享:纯 css 瀑布流 和 js 瀑布流

    分享一次纯 css 瀑布流  和 js 瀑布流 纯 css 写瀑布流 1.multi-columns 方式: 通过 Multi-columns 相关的属性 column-count.column-ga ...

  3. 纯js和纯css+html制作的手风琴的效果

    一:纯css+html的手风琴效果 这种用css写的手风琴比较简单,主要是应用到css中的,transition属性. 代码如下: <!DOCTYPE HTML> <html> ...

  4. CSS+JS下拉菜单和纯CSS下拉菜单

    下拉菜单 (思路:先把二级定位到屏幕外,鼠标悬停重新定位回来:另一个就是ul浮动,li也浮动) 下拉菜单的一般思路就是把子导航嵌套在无序列表中,把列表定位到屏幕之外,当鼠标悬停在其父列表项上时,重新定 ...

  5. 【CSS3】纯CSS代码实现模拟时钟,+js对时功能。

    使用CSS3纯代码来实现模拟时钟,及指针动画功能. 在这里主要使用到css3一些基本元素: border-radius:圆角边框,画圆形:表盘 Transform:变换,旋转,扭曲:刻度盘,指针形状 ...

  6. 纯CSS + 媒体查询实现网页导航特效

    纯css+媒体查询实现网页导航特效 附上效果图: 代码如下,复制即可使用: <!DOCTYPE html> <html lang="en"> <hea ...

  7. 旁门左道通过JS与纯CSS实现显示隐藏层

    想必大家在开发前端页面时,肯定少不了显示隐藏层这一技术点.那么我简单粗暴地总结了以下两个小demo. 要实现该截图的功能:鼠标移动到我的好友这个选项卡时,灰色的隐藏层就会出现.

  8. 纯css、js 的H5页面对接echarts

    做项目时,会遇到一些零碎的技术点.记录下来以防忘记 需求:做可视化界面,但是需要兼容ie8,需要用纯css.js 的H5页面对接echarts,下面为效果图(带定时器循环显示tooltip). 实现方 ...

  9. 关于瀑布流的布局原理分析(纯CSS瀑布流与JS瀑布流)

    瀑布流 又称瀑布流式布局,是比较流行的一种网站页面布局方式.即多行等宽元素排列,后面的元素依次添加到其后,等宽不等高,根据图片原比例缩放直至宽度达到我们的要求,依次按照规则放入指定位置. 为什么使用瀑 ...

随机推荐

  1. ARMed解决方案对DSP的战争

    ARMed解决方案对DSP的战争 ARM体系结构简化了数字信号处理 ARM与数字信号处理(DSP)有什么关系? ARM似乎在处理领域处于领先地位.该处理器已将其视为其最大的细分市场之一,这主要是由于该 ...

  2. SpringBoot原理深入及源码剖析(一) 依赖管理及自动配置

    前言 传统的Spring框架实现一个Web服务需要导入各种依赖jar包,然后编写对应的XML配置文件等,相较而言,SpringBoot显得更加方便.快捷和高效.那么,SpringBoot究竟是如何做到 ...

  3. 重新整理 mysql 基础篇————— mysql 事务[三]

    前言 简单整理一下事务. 正文 事务有四大特性: 1.原子性(atomicity) 一个事务必须被视为一个不可分割的最小单元. 2.一致性(consistency) 数据库总是从一个一致性的状态转换到 ...

  4. NCF 如何导入Excel数据

    简介 学了上一节的WebApi之后,我们会发现一片新天地 本节跟大家聊一聊,如何把本地的Excel数据导入到NCF中 仓库地址:https://github.com/NeuCharFramework/ ...

  5. 一篇文章通俗易懂的让你彻底理解 Java 注解

    很多Java程序员,对Java的注解一知半解,更有甚者,有的人可能连注解是什么都不知道 本文我们用最简单的 demo , 最通俗最短的语言,带你了解注解到底是什么? 先来简单回顾一下基础,我们知道,J ...

  6. P2033 Chessboard Dance

    题目描述 在棋盘上跳舞是件有意思的事情.现在给你一张国际象棋棋盘和棋盘上的一些子以及你的初始位置和方向.求按一定操作后,棋盘的状态. 操作有四种,描述如下: move n n是非负整数,表示你按目前所 ...

  7. 查找文件与cron计划任务

    查找文件 • 根据预设的条件递归查找对应的文件 find [目录] [条件1] [-a|-o] [条件2] ... -type  类型(f文件.d目录.l快捷方式) -name  "文档名称 ...

  8. 【NX二次开发】Block UI 通过浏览选择文件夹

    属性说明 属性   类型   描述   常规           BlockID    String    控件ID    Enable    Logical    是否可操作    Group    ...

  9. spring boot使用@Async异步注解

    1.java的大部分接口的方法都是串行执行的,但是有些业务场景是不需要同步返回结果的,可以把结果直接返回,具体业务异步执行,也有些业务接口是需要并行获取数据,最后把数据聚合在统一返回给前端. 通常我们 ...

  10. 「csp-s模拟测试(9.18)」Set·Read·Race

    昨天考试考得有点迷??? 一看内存限制,T1 64MB T2 16MB 当场懵比......... T1 set 考场打的背包问题和随机化,其实能randA掉,但不小心数组开小了????(长记性!!! ...