css

body {
    background-color: #111111 !important;
    color: white !important;  /* 文字颜色改为白色,以便在黑色背景上显示 */
}
#home {
    background-color: #222222 !important;
    color: white !important;
}
#top_nav {
    background-color: #222222 !important;
    color: white !important;
* {
    color: white !important;  /* 将所有元素的文字颜色都设置为白色 */
}
/* 行内代码框的背景颜色 */
code {
    background-color: #444444 !important;  /* 将背景颜色改为深灰色 */
    color: white !important;  /* 将文字颜色改为白色 */
}

/* 表格第一行的背景颜色 */
table th {
    background-color: #444444 !important;  /* 将表格头部背景颜色改为深灰色 */
    color: white !important;  /* 将表格头部文字颜色改为白色 */
}
/* 去掉顶部导航栏(各种链接) */
#header {
    display: none !important;
}

/* 去掉底部的各种按钮(如“关注”、“留言”按钮等) */
#footer {
    display: none !important;
}

/* 去掉侧边栏的日历、搜索框等 */
#sidebar {
    display: none !important;
}

/* 如果您想要隐藏具体的日历、搜索框等,可以用以下选择器 */
#calendar, #search {
    display: none !important;
}

/* 如果您还想去掉其他部分(比如推荐内容等),可以继续添加相关选择器 */
#main .recommend {
    display: none !important;
}

posted @ 2025-02-10 22:50  cjy_cnblogs  阅读(29)  评论(0)    收藏  举报