summaryrefslogtreecommitdiff
path: root/docs/docs.css
diff options
context:
space:
mode:
Diffstat (limited to 'docs/docs.css')
-rw-r--r--docs/docs.css29
1 files changed, 24 insertions, 5 deletions
diff --git a/docs/docs.css b/docs/docs.css
index 95a04efe..e06fa460 100644
--- a/docs/docs.css
+++ b/docs/docs.css
@@ -2,12 +2,31 @@ code {
color: #000;
}
-img {
- display: inline-block;
- float: right;
-}
-
.admonition {
background: rgb(128, 198, 223);
color: #333;
}
+
+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);
+}