因为平时记笔记内容杂多,所以需要给不同级别的标题加背景颜色,特别是在手机浏览的时候,自己利用千问生成了标题着色的 css 和 json 文件,然而在主题中没有被识别到。于是使用主题:标题自动编号和着色
后发现加了自动编号后,但是编号有时会有干扰主要信息,因此不需要编号,请问各位能否删除出自动编号,只剩着色。谢谢 利用千问生成的主题 customstyles.zip
因为平时记笔记内容杂多,所以需要给不同级别的标题加背景颜色,特别是在手机浏览的时候,自己利用千问生成了标题着色的 css 和 json 文件,然而在主题中没有被识别到。于是使用主题:标题自动编号和着色
后发现加了自动编号后,但是编号有时会有干扰主要信息,因此不需要编号,请问各位能否删除出自动编号,只剩着色。谢谢 利用千问生成的主题 customstyles.zip
需要的是背景颜色还是文字颜色?前者是 background-color,后者是 color,请自行按需更改。以下样式由 VSCode Lite Edit 主题相关样式改写而成,可能存在一些冗余部分。把 CSS 代码复制到外观-代码片段-CSS 代码片段中并启用。
/* 1级标题样式 */
.b3-typography .h1,
.b3-typography h1,
[data-node-id].h1,
.protyle-preview h1 {
color: #d1e7dd;
}
/* 1级大纲样式 */
.sy__outline ul.b3-list.b3-list--background [data-subtype=h1],
ul.b3-list.b3-list--background [data-subtype=h1] .b3-list-item__text {
color: #d1e7dd;
}
/* 2级标题样式 */
.b3-typography .h2,
.b3-typography h2,
[data-node-id].h2,
.protyle-preview h2 {
color: #f0f8ff;
}
/* 2级大纲样式 */
.sy__outline ul.b3-list.b3-list--background [data-subtype=h2],
ul.b3-list.b3-list--background [data-subtype=h2] .b3-list-item__text {
color: #f0f8ff;
}
/* 3级标题样式 */
.b3-typography .h3,
.b3-typography h3,
[data-node-id].h3,
.protyle-preview h3 {
color: #fff0f5;
}
/* 3级大纲样式 */
.sy__outline ul.b3-list.b3-list--background [data-subtype=h3],
ul.b3-list.b3-list--background [data-subtype=h3] .b3-list-item__text {
color: #fff0f5;
}
/* 4级标题样式 */
.b3-typography .h4,
.b3-typography h4,
[data-node-id].h4,
.protyle-preview h4 {
color: #f5f5dc;
}
/* 4级大纲样式 */
.sy__outline ul.b3-list.b3-list--background [data-subtype=h4],
ul.b3-list.b3-list--background [data-subtype=h4] .b3-list-item__text {
color: #f5f5dc;
}
/* 5级标题样式 */
.b3-typography .h5,
.b3-typography h5,
[data-node-id].h5,
.protyle-preview h5 {
color: #f9f9f9;
}
/* 5级大纲样式 */
.sy__outline ul.b3-list.b3-list--background [data-subtype=h5],
ul.b3-list.b3-list--background [data-subtype=h5] .b3-list-item__text {
color: #f9f9f9;
}
/* 6级标题样式 */
.b3-typography .h6,
.b3-typography h6,
[data-node-id].h6,
.protyle-preview h6 {
color: #f0f8ff;
}
/* 6级大纲样式 */
.sy__outline ul.b3-list.b3-list--background [data-subtype=h6],
ul.b3-list.b3-list--background [data-subtype=h6] .b3-list-item__text {
color: #f0f8ff;
}
需要的是背景颜色还是文字颜色?前者是 background-color,后者是 color,请自行按需更改。以下样式由 VSCode Lite Edit 主题相关样式改写而成,可能存在一些冗余部分。把 CSS 代码复制到外观-代码片段-CSS 代码片段中并启用。
/* 1级标题样式 */
.b3-typography .h1,
.b3-typography h1,
[data-node-id].h1,
.protyle-preview h1 {
color: #d1e7dd;
}
/* 1级大纲样式 */
.sy__outline ul.b3-list.b3-list--background [data-subtype=h1],
ul.b3-list.b3-list--background [data-subtype=h1] .b3-list-item__text {
color: #d1e7dd;
}
/* 2级标题样式 */
.b3-typography .h2,
.b3-typography h2,
[data-node-id].h2,
.protyle-preview h2 {
color: #f0f8ff;
}
/* 2级大纲样式 */
.sy__outline ul.b3-list.b3-list--background [data-subtype=h2],
ul.b3-list.b3-list--background [data-subtype=h2] .b3-list-item__text {
color: #f0f8ff;
}
/* 3级标题样式 */
.b3-typography .h3,
.b3-typography h3,
[data-node-id].h3,
.protyle-preview h3 {
color: #fff0f5;
}
/* 3级大纲样式 */
.sy__outline ul.b3-list.b3-list--background [data-subtype=h3],
ul.b3-list.b3-list--background [data-subtype=h3] .b3-list-item__text {
color: #fff0f5;
}
/* 4级标题样式 */
.b3-typography .h4,
.b3-typography h4,
[data-node-id].h4,
.protyle-preview h4 {
color: #f5f5dc;
}
/* 4级大纲样式 */
.sy__outline ul.b3-list.b3-list--background [data-subtype=h4],
ul.b3-list.b3-list--background [data-subtype=h4] .b3-list-item__text {
color: #f5f5dc;
}
/* 5级标题样式 */
.b3-typography .h5,
.b3-typography h5,
[data-node-id].h5,
.protyle-preview h5 {
color: #f9f9f9;
}
/* 5级大纲样式 */
.sy__outline ul.b3-list.b3-list--background [data-subtype=h5],
ul.b3-list.b3-list--background [data-subtype=h5] .b3-list-item__text {
color: #f9f9f9;
}
/* 6级标题样式 */
.b3-typography .h6,
.b3-typography h6,
[data-node-id].h6,
.protyle-preview h6 {
color: #f0f8ff;
}
/* 6级大纲样式 */
.sy__outline ul.b3-list.b3-list--background [data-subtype=h6],
ul.b3-list.b3-list--background [data-subtype=h6] .b3-list-item__text {
color: #f0f8ff;
}
C++ 是在 C 语言的基础上开发的一种通用编程语言,应用广泛。C++ 支持多种编程范式,面向对象编程、泛型编程和过程化编程。
HBase 是一个分布式的、面向列的开源数据库,该技术来源于 Fay Chang 所撰写的 Google 论文 “Bigtable:一个结构化数据的分布式存储系统”。就像 Bigtable 利用了 Google 文件系统所提供的分布式数据存储一样,HBase 在 Hadoop 之上提供了类似于 Bigtable 的能力。
我来 wolai:不仅仅是未来的云端笔记!
Telegram 是一个非盈利性、基于云端的即时消息服务。它提供了支持各大操作系统平台的开源的客户端,也提供了很多强大的 APIs 给开发者创建自己的客户端和机器人。
Spring 是一个开源框架,是于 2003 年兴起的一个轻量级的 Java 开发框架,由 Rod Johnson 在其著作《Expert One-On-One J2EE Development and Design》中阐述的部分理念和原型衍生而来。它是为了解决企业应用开发的复杂性而创建的。框架的主要优势之一就是其分层架构,分层架构允许使用者选择使用哪一个组件,同时为 JavaEE 应用程序开发提供集成的框架。
阿里云是阿里巴巴集团旗下公司,是全球领先的云计算及人工智能科技公司。提供云服务器、云数据库、云安全等云计算服务,以及大数据、人工智能服务、精准定制基于场景的行业解决方案。
这是一个不能说的秘密。
InfluxDB 是一个开源的没有外部依赖的时间序列数据库。适用于记录度量,事件及实时分析。
V2EX 是创意工作者们的社区。这里目前汇聚了超过 400,000 名主要来自互联网行业、游戏行业和媒体行业的创意工作者。V2EX 希望能够成为创意工作者们的生活和事业的一部分。
Java 是一种可以撰写跨平台应用软件的面向对象的程序设计语言,是由 Sun Microsystems 公司于 1995 年 5 月推出的。Java 技术具有卓越的通用性、高效性、平台移植性和安全性。
Vditor 是一款浏览器端的 Markdown 编辑器,支持所见即所得、即时渲染(类似 Typora)和分屏预览模式。它使用 TypeScript 实现,支持原生 JavaScript、Vue、React 和 Angular。
MongoDB(来自于英文单词“Humongous”,中文含义为“庞大”)是一个基于分布式文件存储的数据库,由 C++ 语言编写。旨在为应用提供可扩展的高性能数据存储解决方案。MongoDB 是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。它支持的数据结构非常松散,是类似 JSON 的 BSON 格式,因此可以存储比较复杂的数据类型。
单点登录(Single Sign On)是目前比较流行的企业业务整合的解决方案之一。SSO 的定义是在多个应用系统中,用户只需要登录一次就可以访问所有相互信任的应用系统。
Sublime Text 是一款可以用来写代码、写文章的文本编辑器。支持代码高亮、自动完成,还支持通过插件进行扩展。
禅道是一款国产的开源项目管理软件,她的核心管理思想基于敏捷方法 scrum,内置了产品管理和项目管理,同时又根据国内研发现状补充了测试管理、计划管理、发布管理、文档管理、事务管理等功能,在一个软件中就可以将软件研发中的需求、任务、bug、用例、计划、发布等要素有序的跟踪管理起来,完整地覆盖了项目管理的核心流程。
提供一个服务绝不仅仅是简单的把硬件和软件累加在一起,它包括了服务的可靠性、服务的标准化、以及对服务的监控、维护、技术支持等。
小说是以刻画人物形象为中心,通过完整的故事情节和环境描写来反映社会生活的文学体裁。
SSL(Secure Sockets Layer 安全套接层),及其继任者传输层安全(Transport Layer Security,TLS)是为网络通信提供安全及数据完整性的一种安全协议。TLS 与 SSL 在传输层对网络连接进行加密。
webpack 是一个用于前端开发的模块加载器和打包工具,它能把各种资源,例如 JS、CSS(less/sass)、图片等都作为模块来使用和处理。
Web Components 是 W3C 定义的标准,它给了前端开发者扩展浏览器标签的能力,可以方便地定制可复用组件,更好的进行模块化开发,解放了前端开发者的生产力。
各种网址链接、内容导航。
Pipe 是一款小而美的开源博客平台。Pipe 有着非常活跃的社区,可将文章作为帖子推送到社区,来自社区的回帖将作为博客评论进行联动(具体细节请浏览 B3log 构思 - 分布式社区网络)。
这是一种全新的网络社区体验,让热爱记录和分享的你不再感到孤单!
Jenkins 是一套开源的持续集成工具。它提供了非常丰富的插件,让构建、部署、自动化集成项目变得简单易用。
子曰:“工欲善其事,必先利其器。”
前端技术一般分为前端设计和前端开发,前端设计可以理解为网站的视觉设计,前端开发则是网站的前台代码实现,包括 HTML、CSS 以及 JavaScript 等。