mirror of
https://github.com/G2-Games/website.git
synced 2025-04-19 01:42:54 -05:00
41 lines
649 B
CSS
41 lines
649 B
CSS
code {
|
|
background-color: #2d2d2d;
|
|
color: #ebebeb;
|
|
padding: 2px;
|
|
border-radius: 3px;
|
|
font-family: "Maple Mono", monospace;
|
|
font-style: normal;
|
|
font-size: 13pt;
|
|
}
|
|
|
|
div.code-toolbar {
|
|
width: 95%;
|
|
margin: auto;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
div.code-toolbar .toolbar {
|
|
gap: 5px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 5px;
|
|
|
|
.toolbar-item {
|
|
font-size: 16pt;
|
|
}
|
|
}
|
|
|
|
pre[class*="language-" ],
|
|
code[class*="language-"] {
|
|
overflow: auto;
|
|
font-family: "Maple Mono", monospace;
|
|
border-radius: 13px;
|
|
}
|
|
|
|
pre > code{
|
|
padding: 0px;
|
|
}
|
|
|
|
.token.comment {
|
|
font-style: italic;
|
|
}
|