首页 > 其他分享 >博客园设置

博客园设置

时间:2023-07-26 10:11:06浏览次数:48  
标签:keyword title color 博客园 meta hljs 设置 font

image-20230726100143164

image-20230726100250922

/*!
  Theme: Atelier Forest Light
  Author: Bram de Haan (http://atelierbramdehaan.nl)
  License: ~ MIT (or more permissive) [via base16-schemes-source]
  Maintainer: @highlightjs/core-team
  Version: 2021.09.0
*/pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 3px}.hljs{color:#2B2B2B;background:#F4F4F4}.hljs ::selection,.hljs::selection{background-color:#a8a19f;color:#68615e}.hljs-comment{color:#048404}.hljs-tag{color:#048404}.hljs-operator,.hljs-punctuation,.hljs-subst{color:#68615e}.hljs-operator{opacity:.7}.hljs-bullet,.hljs-deletion,.hljs-name,.hljs-selector-tag,.hljs-template-variable,.hljs-variable{color:#043D84}.hljs-attr,.hljs-link,.hljs-literal,.hljs-number,.hljs-symbol,.hljs-variable.constant_{color:#12DB3E}.hljs-class .hljs-title,.hljs-title,.hljs-title.class_{color:#2B2B2B}.hljs-strong{font-weight:300;color:#2B2B2B}.hljs-addition,.hljs-code,.hljs-string,.hljs-title.class_.inherited__{color:#048404}.hljs-built_in,.hljs-doctag,.hljs-keyword.hljs-atrule,.hljs-quote,.hljs-regexp{color:#043D84}.hljs-attribute,.hljs-function .hljs-title,.hljs-section,.hljs-title.function_,.ruby .hljs-property{color:#282828}.diff .hljs-meta,.hljs-keyword,.hljs-template-tag,.hljs-type{color:#1354FF}.hljs-emphasis{color:#6666ea;font-style:italic}.hljs-meta,.hljs-meta .hljs-keyword,.hljs-meta .hljs-string{color:#c33ff3}.hljs-meta .hljs-keyword,.hljs-meta-keyword{font-weight:500}

/*博客代码字体设置开始*/
.cnblogs-markdown pre,#cnblogs_post_body pre{
/*控制代码不换行*/
white-space: pre;
word-wrap: normal;
}

#cnblogs_post_body .hljs
{
/*设置字体*/
font-size:1px !important;
font-family:"Consolas", "Courier New", "monospace" !important;
}


.cnblogs_code span{
font-size:4px !important;
font-family:"Consolas", "Courier New", "monospace" !important;
}

标签:keyword,title,color,博客园,meta,hljs,设置,font
From: https://www.cnblogs.com/DQ-MINE/p/17581715.html

相关文章

  • vscode 设置
    配置文件{//保存按照eslint格式化"editor.codeActionsOnSave":{"source.fixAll.eslint":true},//保存按照设置的格式化工具格式化"editor.formatOnSave":true,"editor.inlayHints.fontSize":14,"scm.inputFontSize&quo......
  • 多环境命令启动参数设置
     打包后在jar文件夹内使用cmd可以修改启动环境为test,临时的 也可以修改端口号  ......
  • python如何对每一行设置行索引
    Python如何对每一行设置行索引在Python中,我们经常需要对数据进行处理和分析。而对于一些数据集来说,每行数据都需要有一个唯一的标识,这就是行索引。行索引通常是一个整数或字符串,用于区分不同的数据行。在本文中,我们将介绍如何使用Python对每一行设置行索引,并提供一个具体的问题场......
  • VSCode的一些设置
    设置字体大小编辑器字体变大......
  • R语言中ggplot绘图函数 设置绘图边框的间距
     001、dat<-data.frame(a=1:5,b=1:5)datlibrary(ggplot2)p<-ggplot(data=dat,aes(x=a,y=b))+geom_point()##默认边框,绘制散点图p 002、利用theme(plot.margin=unit(c(3,3,3,3),"cm"))设置边距p+theme(plot.margin=unit(c(3,3,3,......
  • VirtualBox:设置双网卡
    学习自:VirtualBox为虚拟机设置固定IP且可通过外网访问_小小_飞侠的博客Centos7安装网卡没有网卡对应配置文件_centos7网卡配置文件_水步天的博客-CSDN博客1)进入网络管理器中2)设置主机网卡(如果没有还需要创建)手动配置网卡地址和掩码、DHCP服务器3)设置虚拟机网卡一共有两......
  • 如何在pod级别进行安全的设置,设置容器的运行用户、用户组、挂载数据卷的权限?
    通过下面的yaml配置文件,在pod级别进行安全的设置: apiVersion:v1kind:Podmetadata:name:security-context-demospec:securityContext:runAsUser:1000runAsGroup:3000fsGroup:2000volumes:-name:sec-ctx-volemptyDir:{}contain......
  • ubuntu 设置 python环境变量
    Ubuntu设置Python环境变量在Ubuntu上设置Python环境变量是一项重要的任务,因为它允许您轻松地访问和使用Python解释器、模块和包。本文将向您介绍如何设置Python环境变量,并提供一些示例来帮助您更好地理解。什么是环境变量?环境变量是操作系统中一些特定值的名称,这些值......
  • uniapp,打开安卓系统设置的应用信息页面或者耗电详情页面(用于用户手动设置后台启动)
    openSettings(){ varmain=plus.android.runtimeMainActivity(); //varpkName=main.getPackageName();//获取包名 //varuid=main.getApplicationInfo().plusGetAttribute("uid"); varIntent=plus.android.importClass('android.conte......
  • Echarts中柱状图的基本设置
    Echarts-去掉图表横纵坐标轴刻度线效果图去掉前:去掉后:axisTick:{show:false}X轴Y轴文字颜色和大小的设置axisLabel:{textStyle:{color:"#f9f9f9",fontSize:12}}X轴Y轴刻度线的颜色和宽度的设置:axisLine:{show:true,//......