1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-22 22:59:42 +02:00

New tools added + code highlighting (#12)

This commit is contained in:
Peter Savchenko 2018-10-20 17:54:15 +03:00 committed by GitHub
parent f845a0d09f
commit 262c1614ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 1510 additions and 1508 deletions

View file

@ -42,6 +42,10 @@
}
}
/**
* Header
* ==================
*/
.block-header {
margin: 1.5em 0 0.5em;
@ -55,3 +59,28 @@
font-weight: 500;
}
}
/**
* Code
* ==================
*/
.block-code {
padding: 20px !important;
font-size: 13px;
border-radius: 3px;
border: 1px solid var(--color-line-gray);
font-family: Menlo,Monaco,Consolas,Courier New,monospace;
line-height: 1.7em;
}
/**
* List
* ==================
*/
.block-list {
li {
margin: 10px 0;
}
}