1
0
mirror of https://github.com/arsenetar/arsenetar.github.io.git synced 2024-11-15 02:19:02 +00:00
arsenetar.github.io/assets/css/_pygments.css
Andrew Senetar 44a02080a0 Convert Assets
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...
2015-06-09 22:28:50 -05:00

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);
}