mirror of https://github.com/docker/docs.git
hugo: unset font-style and font-weight for code
Italicized and bold text didn't really add any value to code blocks Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
This commit is contained in:
parent
8bdf58acba
commit
2f779a076d
|
@ -90,37 +90,30 @@
|
||||||
/* Keyword */
|
/* Keyword */
|
||||||
.k {
|
.k {
|
||||||
color: #204a87;
|
color: #204a87;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* KeywordConstant */
|
/* KeywordConstant */
|
||||||
.kc {
|
.kc {
|
||||||
color: #204a87;
|
color: #204a87;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* KeywordDeclaration */
|
/* KeywordDeclaration */
|
||||||
.kd {
|
.kd {
|
||||||
color: #204a87;
|
color: #204a87;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* KeywordNamespace */
|
/* KeywordNamespace */
|
||||||
.kn {
|
.kn {
|
||||||
color: #204a87;
|
color: #204a87;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* KeywordPseudo */
|
/* KeywordPseudo */
|
||||||
.kp {
|
.kp {
|
||||||
color: #204a87;
|
color: #204a87;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* KeywordReserved */
|
/* KeywordReserved */
|
||||||
.kr {
|
.kr {
|
||||||
color: #204a87;
|
color: #204a87;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* KeywordType */
|
/* KeywordType */
|
||||||
.kt {
|
.kt {
|
||||||
color: #204a87;
|
color: #204a87;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* Name */
|
/* Name */
|
||||||
.n {
|
.n {
|
||||||
|
@ -149,7 +142,6 @@
|
||||||
/* NameDecorator */
|
/* NameDecorator */
|
||||||
.nd {
|
.nd {
|
||||||
color: #5c35cc;
|
color: #5c35cc;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* NameEntity */
|
/* NameEntity */
|
||||||
.ni {
|
.ni {
|
||||||
|
@ -158,7 +150,6 @@
|
||||||
/* NameException */
|
/* NameException */
|
||||||
.ne {
|
.ne {
|
||||||
color: #cc0000;
|
color: #cc0000;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* NameFunction */
|
/* NameFunction */
|
||||||
.nf {
|
.nf {
|
||||||
|
@ -187,7 +178,6 @@
|
||||||
/* NameTag */
|
/* NameTag */
|
||||||
.nt {
|
.nt {
|
||||||
color: #204a87;
|
color: #204a87;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* NameVariable */
|
/* NameVariable */
|
||||||
.nv {
|
.nv {
|
||||||
|
@ -240,7 +230,6 @@
|
||||||
/* LiteralStringDoc */
|
/* LiteralStringDoc */
|
||||||
.sd {
|
.sd {
|
||||||
color: #8f5902;
|
color: #8f5902;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* LiteralStringDouble */
|
/* LiteralStringDouble */
|
||||||
.s2 {
|
.s2 {
|
||||||
|
@ -277,87 +266,70 @@
|
||||||
/* LiteralNumber */
|
/* LiteralNumber */
|
||||||
.m {
|
.m {
|
||||||
color: #0000cf;
|
color: #0000cf;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* LiteralNumberBin */
|
/* LiteralNumberBin */
|
||||||
.mb {
|
.mb {
|
||||||
color: #0000cf;
|
color: #0000cf;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* LiteralNumberFloat */
|
/* LiteralNumberFloat */
|
||||||
.mf {
|
.mf {
|
||||||
color: #0000cf;
|
color: #0000cf;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* LiteralNumberHex */
|
/* LiteralNumberHex */
|
||||||
.mh {
|
.mh {
|
||||||
color: #0000cf;
|
color: #0000cf;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* LiteralNumberInteger */
|
/* LiteralNumberInteger */
|
||||||
.mi {
|
.mi {
|
||||||
color: #0000cf;
|
color: #0000cf;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* LiteralNumberIntegerLong */
|
/* LiteralNumberIntegerLong */
|
||||||
.il {
|
.il {
|
||||||
color: #0000cf;
|
color: #0000cf;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* LiteralNumberOct */
|
/* LiteralNumberOct */
|
||||||
.mo {
|
.mo {
|
||||||
color: #0000cf;
|
color: #0000cf;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* Operator */
|
/* Operator */
|
||||||
.o {
|
.o {
|
||||||
color: #ce5c00;
|
color: #ce5c00;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* OperatorWord */
|
/* OperatorWord */
|
||||||
.ow {
|
.ow {
|
||||||
color: #204a87;
|
color: #204a87;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* Punctuation */
|
/* Punctuation */
|
||||||
.p {
|
.p {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* Comment */
|
/* Comment */
|
||||||
.c {
|
.c {
|
||||||
color: #8f5902;
|
color: #8f5902;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* CommentHashbang */
|
/* CommentHashbang */
|
||||||
.ch {
|
.ch {
|
||||||
color: #8f5902;
|
color: #8f5902;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* CommentMultiline */
|
/* CommentMultiline */
|
||||||
.cm {
|
.cm {
|
||||||
color: #8f5902;
|
color: #8f5902;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* CommentSingle */
|
/* CommentSingle */
|
||||||
.c1 {
|
.c1 {
|
||||||
color: #8f5902;
|
color: #8f5902;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* CommentSpecial */
|
/* CommentSpecial */
|
||||||
.cs {
|
.cs {
|
||||||
color: #8f5902;
|
color: #8f5902;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* CommentPreproc */
|
/* CommentPreproc */
|
||||||
.cp {
|
.cp {
|
||||||
color: #8f5902;
|
color: #8f5902;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* CommentPreprocFile */
|
/* CommentPreprocFile */
|
||||||
.cpf {
|
.cpf {
|
||||||
color: #8f5902;
|
color: #8f5902;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* Generic */
|
/* Generic */
|
||||||
.g {
|
.g {
|
||||||
|
@ -370,7 +342,6 @@
|
||||||
/* GenericEmph */
|
/* GenericEmph */
|
||||||
.ge {
|
.ge {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* GenericError */
|
/* GenericError */
|
||||||
.gr {
|
.gr {
|
||||||
|
@ -379,7 +350,6 @@
|
||||||
/* GenericHeading */
|
/* GenericHeading */
|
||||||
.gh {
|
.gh {
|
||||||
color: #000080;
|
color: #000080;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* GenericInserted */
|
/* GenericInserted */
|
||||||
.gi {
|
.gi {
|
||||||
|
@ -397,17 +367,14 @@
|
||||||
/* GenericStrong */
|
/* GenericStrong */
|
||||||
.gs {
|
.gs {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* GenericSubheading */
|
/* GenericSubheading */
|
||||||
.gu {
|
.gu {
|
||||||
color: #800080;
|
color: #800080;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* GenericTraceback */
|
/* GenericTraceback */
|
||||||
.gt {
|
.gt {
|
||||||
color: #a40000;
|
color: #a40000;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* GenericUnderline */
|
/* GenericUnderline */
|
||||||
.gl {
|
.gl {
|
||||||
|
@ -510,7 +477,6 @@
|
||||||
/* NameConstant */
|
/* NameConstant */
|
||||||
.no {
|
.no {
|
||||||
color: #aa89ea;
|
color: #aa89ea;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* NameDecorator */
|
/* NameDecorator */
|
||||||
.nd {
|
.nd {
|
||||||
|
@ -523,7 +489,6 @@
|
||||||
/* NameException */
|
/* NameException */
|
||||||
.ne {
|
.ne {
|
||||||
color: #fd7474;
|
color: #fd7474;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* NameFunction */
|
/* NameFunction */
|
||||||
.nf {
|
.nf {
|
||||||
|
@ -564,7 +529,6 @@
|
||||||
/* NameVariableGlobal */
|
/* NameVariableGlobal */
|
||||||
.vg {
|
.vg {
|
||||||
color: #dcaeea;
|
color: #dcaeea;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* NameVariableInstance */
|
/* NameVariableInstance */
|
||||||
.vi {
|
.vi {
|
||||||
|
@ -673,7 +637,6 @@
|
||||||
/* OperatorWord */
|
/* OperatorWord */
|
||||||
.ow {
|
.ow {
|
||||||
color: #b756ff;
|
color: #b756ff;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* Punctuation */
|
/* Punctuation */
|
||||||
.p {
|
.p {
|
||||||
|
@ -682,38 +645,30 @@
|
||||||
/* Comment */
|
/* Comment */
|
||||||
.c {
|
.c {
|
||||||
color: #8a93a5;
|
color: #8a93a5;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* CommentHashbang */
|
/* CommentHashbang */
|
||||||
.ch {
|
.ch {
|
||||||
color: #8a93a5;
|
color: #8a93a5;
|
||||||
font-weight: bold;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* CommentMultiline */
|
/* CommentMultiline */
|
||||||
.cm {
|
.cm {
|
||||||
color: #8a93a5;
|
color: #8a93a5;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* CommentSingle */
|
/* CommentSingle */
|
||||||
.c1 {
|
.c1 {
|
||||||
color: #8a93a5;
|
color: #8a93a5;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* CommentSpecial */
|
/* CommentSpecial */
|
||||||
.cs {
|
.cs {
|
||||||
color: #8a93a5;
|
color: #8a93a5;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* CommentPreproc */
|
/* CommentPreproc */
|
||||||
.cp {
|
.cp {
|
||||||
color: #8a93a5;
|
color: #8a93a5;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* CommentPreprocFile */
|
/* CommentPreprocFile */
|
||||||
.cpf {
|
.cpf {
|
||||||
color: #8a93a5;
|
color: #8a93a5;
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* Generic */
|
/* Generic */
|
||||||
.g {
|
.g {
|
||||||
|
@ -724,7 +679,6 @@
|
||||||
}
|
}
|
||||||
/* GenericEmph */
|
/* GenericEmph */
|
||||||
.ge {
|
.ge {
|
||||||
font-style: italic;
|
|
||||||
}
|
}
|
||||||
/* GenericError */
|
/* GenericError */
|
||||||
.gr {
|
.gr {
|
||||||
|
@ -732,7 +686,6 @@
|
||||||
/* GenericHeading */
|
/* GenericHeading */
|
||||||
.gh {
|
.gh {
|
||||||
color: #a2cbff;
|
color: #a2cbff;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* GenericInserted */
|
/* GenericInserted */
|
||||||
.gi {
|
.gi {
|
||||||
|
@ -748,7 +701,6 @@
|
||||||
}
|
}
|
||||||
/* GenericStrong */
|
/* GenericStrong */
|
||||||
.gs {
|
.gs {
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
/* GenericSubheading */
|
/* GenericSubheading */
|
||||||
.gu {
|
.gu {
|
||||||
|
|
Loading…
Reference in New Issue