mirror of
https://github.com/arsenetar/arsenetar.github.io.git
synced 2024-11-15 02:19:02 +00:00
Andrew Senetar
44a02080a0
Assets have been converted as follows: - Change to gulp instead of grunt for build system - Remove bower and manage with npm instead - Change to postcss instead of sass - Change to Pure.css instead of foundation (lighter weight) - Update Icon Font - Initial rework of site styling (layout will be committed with updated style later) - Removed extra js which was not really needed - Built js and css will be in the assets/dist directory This really should have been probably 20 commits with a rebase or something...
37 lines
752 B
CSS
37 lines
752 B
CSS
.highlight{
|
|
font-size: 14px;
|
|
padding: 0;
|
|
font-family: 'Source Code Pro', 'Consolas', Monaco, monospace;
|
|
overflow: auto;
|
|
margin-bottom: 16px;
|
|
pre{
|
|
tab-size: 4;
|
|
white-space: pre;
|
|
font-family: inherit;
|
|
background-color: var(--secondaryColor);
|
|
border-radius: var(--globalRadius);
|
|
padding: 3px;
|
|
padding-left: 5px;
|
|
line-height: 23px;
|
|
overflow-x: auto;
|
|
word-break: inherit;
|
|
margin: 0;
|
|
|
|
code {
|
|
border: none;
|
|
background: none;
|
|
|
|
&.language-text {
|
|
color: color(var(--secondaryColor) contrast(75%));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
code {
|
|
background: var(--secondaryColor);
|
|
color: color(var(--secondaryColor) contrast(75%));
|
|
padding: 3px 7px;
|
|
border-radius: var(--globalRadius);
|
|
}
|