feat: add cron cheatsheet.

This commit is contained in:
jaywcjlove
2022-09-26 22:14:52 +08:00
parent 697d00f277
commit 089b1eaf39
8 changed files with 226 additions and 72 deletions

View File

@ -288,6 +288,13 @@ pre {
overflow-x: auto;
}
.cols-2 {
grid-template-columns: repeat(2,minmax(0,1fr));
}
.col-span-2 {
grid-column: span 2/span 2;
}
[data-color-mode*='light'], [data-color-mode*='light'] body {
--color-prettylights-syntax-comment: #6e7781;
--color-prettylights-syntax-constant: #0550ae;
@ -447,4 +454,11 @@ pre {
.token.italic { font-style: italic; }
.token.entity { cursor: help; }
/* 代码高亮 End */
/* 代码高亮 End */
.footer-warp {
margin-top: 3.5rem;
color: rgb(100 116 139/1);
background-color: rgb(30 41 59/1);
}