38 lines
484 B
CSS
38 lines
484 B
CSS
code {
|
|
color: #000;
|
|
}
|
|
|
|
.admonition {
|
|
background: rgb(128, 198, 223);
|
|
color: #fff;
|
|
}
|
|
|
|
.tip {
|
|
background: rgb(110, 110, 110);
|
|
color: #fff;
|
|
}
|
|
|
|
img[alt$=">"] {
|
|
float:right;
|
|
display: inline-block;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
img[alt$="<"] {
|
|
float:left;
|
|
display: inline-block;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
img[alt$="><"] {
|
|
display: block;
|
|
max-width: 100%;
|
|
height: auto;
|
|
margin: auto;
|
|
float: none!important;
|
|
}
|
|
|
|
.article pre code {
|
|
background: rgba(0, 0, 0, 0);
|
|
}
|