Files
NotionNext/public/css/prism-mac-style.css
tangly1024.com a32f6ec56f code optimization
2023-02-10 12:19:19 +08:00

55 lines
911 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* @author https://github.com/txs
* 当配置文件 CODE_MAC_BAR 开启时此样式会被动态引入将开启代码组件左上角的mac图标
**/
.code-toolbar {
position: relative;
padding-top: 0 !important;
padding-bottom: 0 !important;
width: 100%;
border-radius: 0.5rem;
margin-bottom: 0.5rem;
}
.toolbar-item{
white-space: nowrap;
}
.toolbar-item > button {
margin-top: -0.1rem;
}
pre[class*='language-'] {
margin-top: 0rem !important;
margin-bottom: 0rem !important;
padding-top: 1.5rem !important;
}
.pre-mac {
position: absolute;
left: 0.9rem;
top: 0.5rem;
z-index: 10;
}
.pre-mac > span {
width: 10px;
height: 10px;
border-radius: 50%;
margin-right: 5px;
float: left;
}
.pre-mac > span:nth-child(1) {
background: red;
}
.pre-mac > span:nth-child(2) {
background: sandybrown;
}
.pre-mac > span:nth-child(3) {
background: limegreen;
}