1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-22 11:33:34 +03:00

Add rounded corners and border to code blocks. (#233)

Screenshots: https://imgur.com/a/HlRvz8P
This commit is contained in:
Matt Renaud 2018-11-06 04:57:56 -06:00 committed by Vladislav Sabanov
parent eafe87bd0a
commit 229410ae8c

View File

@ -33,7 +33,11 @@ pre {
background: rgba(10, 10, 10, 0.04);
line-height: 150%;
padding: 0.5em 1em;
overflow-x: auto; }
overflow-x: auto;
border-radius: 3px;
border-width: 1px;
border-style: solid;
border-color: rgba(10, 10, 10, 0.05); }
pre.repl {
border-left: 5px solid gray; }