Skip to content

Instantly share code, notes, and snippets.

@BYJRK
Created December 1, 2023 06:37
Show Gist options
  • Save BYJRK/ac567f7b2c8c606aa77f6eb765082b1d to your computer and use it in GitHub Desktop.
Save BYJRK/ac567f7b2c8c606aa77f6eb765082b1d to your computer and use it in GitHub Desktop.
Typora 1.8 New feature "GitHub Style Alerts" Custom Style
.md-alert-text {
font-size: 1rem;
font-weight: 600;
}
.md-alert-text-container::after {
text-transform: uppercase;
position: relative;
bottom: 1px;
}
.md-alert {
box-shadow: 0 0 5px 0 #5555557f;
padding-top: 0.1em;
padding-bottom: 0.1em;
width: inherit;
}
@BYJRK
Copy link
Author

BYJRK commented Dec 1, 2023

Typora 1.8 新增了 GitHub 风格的警示块,形如:

> [!Note]
> 这是一条笔记

但是默认的样式存在一些小问题,比如:

  • 标题字体略小,且不够醒目
  • 整个框存在一些问题
    • 不够醒目
    • 宽度没有继承默认样式
    • 内部 padding 较窄

为了解决这些问题,我写了这个简单的样式复写。只需要将该文件下载后放在 Typora 的主题文件夹中即可。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment